Important Notice: On February 29th, this community was put into read-only mode. All existing posts will remain but customers are unable to add new posts or comment on existing. Please feel to join our Community Discord for any questions and discussions.

Deploy a Package and Shortcut it to Desktop

Good Morning , we have PDQ DEPLOY 17 , is working very well.

we want to deploy on 300 pc 7zip package. is working but... we want shortcut 7zip on users desktop.

Any Way To Do It......

Thanks

0

Comments

2 comments
Date Votes
  • Hi, its kinda PDQ basics > PDQ Deploy and PowerShell go together like eggs and bacon So I would use last step in deploy:

    #Create a 7-Zip Shortcut to Public Desktop with Powershell
    $TargetFile = "${Env:ProgramFiles(x86)}\7-Zip\7zFM.exe"
    $ShortcutFile = "$env:Public\Desktop\7-Zip File Manager.lnk"
    $WScriptShell = New-Object -ComObject WScript.Shell
    $Shortcut = $WScriptShell.CreateShortcut($ShortcutFile)
    $Shortcut.TargetPath = $TargetFile
    $Shortcut.Save()
    
    0
  • thank you very much Maki

    0