This is an old revision of the document!
windows 11 create short to Windows Terminal on Desktop
$WshShell = New-Object -comObject WScript.Shell $Shortcut = $WshShell.CreateShortcut("$env:USERPROFILE\Desktop\Windows Terminal.lnk") $Shortcut.TargetPath = "$env:APPDATA\Local\Microsoft\WindowsApps\wt.exe" $Shortcut.Save()