A raimondi Posted May 11, 2017 Report post Posted May 11, 2017 is it possible to deploy a URL shortcut to a bunch of users desktops? I am looking to deploy a URL to logme123.com on 20 machines desktops Quote Share this post Link to post Share on other sites More sharing options...
keilamym Posted May 11, 2017 Report post Posted May 11, 2017 Absolutely. I usually create the shortcut first, then deploy the shortcut as a package. Quote Share this post Link to post Share on other sites More sharing options...
A raimondi Posted May 11, 2017 Report post Posted May 11, 2017 Create a shortcut the just copy it using a package,? Quote Share this post Link to post Share on other sites More sharing options...
keilamym Posted May 11, 2017 Report post Posted May 11, 2017 you can do it a few ways. There is no "create shortcut" option in SCCM so you need to script it somehow. 1. Create the shortcut, create a package and for the program, you can use powershell Copy-Item 2. Create the shortcut, create a package and for the program, you can use something like XCopy filename location /y 3. You can create the shortcut on the fly with powershell - http://powershellblogger.com/2016/01/create-shortcuts-lnk-or-url-files-with-powershell/ 4. You can use something simple like AutoIt if you've used it before Quote Share this post Link to post Share on other sites More sharing options...
A raimondi Posted May 11, 2017 Report post Posted May 11, 2017 Thank you ! Quote Share this post Link to post Share on other sites More sharing options...