New Desktop Shortcut Windows 10 (ESSENTIAL — 2025)
mklink "%userprofile%\Desktop\MyShortcut.lnk" "C:\Target\Program.exe" Note: mklink is picky. For .lnk specifically, use PowerShell instead.
$WshShell = New-Object -comObject WScript.Shell $Shortcut = $WshShell.CreateShortcut("$Home\Desktop\MyApp.lnk") $Shortcut.TargetPath = "C:\Path\To\App.exe" $Shortcut.Save() Windows 10 allows shortcuts to specific Settings pages using ms-settings: URIs. new desktop shortcut windows 10
A desktop shortcut is a link ( .lnk file) that points to an app, file, folder, or even a website. It allows you to launch the target item without navigating through File Explorer or the Start Menu. mklink "%userprofile%\Desktop\MyShortcut
