How To Add App To Desktop Windows 11 Link
User Configuration > Preferences > Windows Settings > Shortcuts
$shortcut.TargetPath = "shell:AppsFolder\Microsoft.WindowsCalculator_8wekyb3d8bbwe!App" $shortcut.Save()
$shell = New-Object -ComObject WScript.Shell $shortcut = $shell.CreateShortcut([Environment]::GetFolderPath("Desktop") + "\MyApp.lnk") $shortcut.TargetPath = "C:\Program Files\MyApp\app.exe" $shortcut.Arguments = "--silent" $shortcut.IconLocation = "C:\Program Files\MyApp\app.exe,0" $shortcut.Save() how to add app to desktop windows 11
Windows 11 respects for shortcut deployment.
// Simplified COM call chain CoCreateInstance(CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER, IID_IShellLink, &pShellLink); pShellLink->SetPath(L"C:\\Program Files\\App\\app.exe"); pShellLink->SetDescription(L"Launch App"); IPersistFile* pPersistFile; pShellLink->QueryInterface(IID_IPersistFile, &pPersistFile); pPersistFile->Save(L"C:\\Users\\User\\Desktop\\App.lnk", TRUE); For IT administration, scripting is preferred
Some Microsoft Store apps (UWP apps) cannot be easily dragged or found as traditional files. The hidden "Applications" folder provides a simple workaround.
For IT administration, scripting is preferred. Windows 11 introduces no breaking changes to these methods. The Apps folder contains a list of all
Windows 11 Defender Application Control (WDAC) and SmartScreen affect desktop shortcuts:
Scroll through the alphabetical list to find your desired application.
The Apps folder contains a list of all installed applications on your system. To create a desktop shortcut from the Apps folder:
From a user perspective, the most common method is drag-and-drop or right-click > Send to > Desktop. Under the hood: