Skip to content

Create shortcut in powershell

Example:

ps1
$WshShell = New-Object -comObject WScript.Shell
$Shortcut = $WshShell.CreateShortcut("C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\<.lnk>")
$Shortcut.TargetPath = "<.exe>"
$Shortcut.Save()`