adjusted for removal of Remove-File cmdlet

This commit is contained in:
2023-10-06 14:16:19 -04:00
parent 7f98291e12
commit 8fa1f1ef61
6 changed files with 9 additions and 14 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ If ( -not (Test-Path $SHORTCUT_PATH) ) {
If ( $BROWSER_PATH ) {
Write-Output "Installing Deltek Vision for ${APP_NAME}"
Create-Shortcut -Path "${Env:Public}\Desktop\Deltek Vision.lnk" -TargetPath $BROWSER_PATH -Arguments $VisionURL -Description "Launch Deltek Vision"
New-Shortcut -Path "${Env:Public}\Desktop\Deltek Vision.lnk" -TargetPath $BROWSER_PATH -Arguments $VisionURL -Description "Launch Deltek Vision"
}
Else { Write-Output "A compatible browser could not be found: ${BROWSER_PATH}" }
}