This is an old revision of the document!
windows 11 create shortcut to Windows Terminal on Desktop
# download the ico $myurl="https://raw.githubusercontent.com/microsoft/terminal/master/res/terminal.ico" iwr -OutFile "$env:LOCALAPPDATA\\wt.ico" -uri $myurl # create shortcut $WshShell = New-Object -comObject WScript.Shell $Shortcut = $WshShell.CreateShortcut("$env:USERPROFILE\Desktop\Windows Terminal.lnk") $Shortcut.TargetPath = "$env:LOCALAPPDATA\Microsoft\WindowsApps\wt.exe" $ShortCut.IconLocation = "$env:LOCALAPPDATA\\wt.ico"; $Shortcut.Save()