Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
handy_windows_commands [2022/07/12 14:29] – mgupton | handy_windows_commands [2022/08/10 21:31] (current) – mgupton | ||
---|---|---|---|
Line 13: | Line 13: | ||
====== Install VS Code ====== | ====== Install VS Code ====== | ||
+ | |||
+ | <code powershell> | ||
+ | Save-Script install-vscode -path $env:TEMP | ||
+ | $env: | ||
+ | </ | ||
+ | |||
+ | === Alt === | ||
<code powershell> | <code powershell> | ||
Install-Script -Name Install-VSCode | Install-Script -Name Install-VSCode | ||
</ | </ | ||
+ | ====== Install Notepad++ ====== | ||
+ | <code powershell> | ||
+ | $LocalTempDir = $env:TEMP | ||
+ | $href = ((Invoke-WebRequest -Uri ' | ||
+ | $downloadUrl = ((Invoke-WebRequest " | ||
+ | Invoke-RestMethod $downloadUrl -OutFile " | ||
+ | start-process -FilePath " | ||
+ | </ | ||