Passat1983ICTech Posted November 10, 2025 Posted November 10, 2025 Hello just wanted to ask I want create shortcuts on to intune devices is there away of doing this as I want to set this up for a primary school witch we look after
RobFuller Posted November 10, 2025 Posted November 10, 2025 I normally script such things and push out as "apps" to the devices / users.
RLR Posted November 10, 2025 Posted November 10, 2025 I've done this by packaging it as a win32 app and running a simple powershell script. $shortcut = "shortcut.url" $shortcutLocation = "C:\Users\Public\Desktop" xcopy $shortcut $shortcutLocation 1
Ratcliffepg Posted November 10, 2025 Posted November 10, 2025 Powershell as below $SourceFilePath = "C:\Program Files\Google\Chrome\Application\chrome.exe" $ShortcutPath = "C:\users\public\Desktop\Google Chrome.lnk" $WScriptObj = New-Object -ComObject ("WScript.Shell") $shortcut = $WscriptObj.CreateShortcut($ShortcutPath) $shortcut.TargetPath = $SourceFilePath $shortcut.Save()
denzal2k4 Posted November 17, 2025 Posted November 17, 2025 Simple batch file: md C:\staffStart\programs copy /Y .\programs\* C:\staffStart\programs\ Within the intunewin file is a folder called programs containing a load of shortcuts. To add or remove shortcut just plop them in the shortcuts folder and create the package again.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now