Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
handy_windows_commands [2022/07/07 20:30] – created mgupton | handy_windows_commands [2022/08/10 21:31] (current) – mgupton | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Handy Windows Commands ====== | ====== Handy Windows Commands ====== | ||
- | ====== | + | ====== |
<code powershell> | <code powershell> | ||
Line 7: | Line 7: | ||
$Download = join-path $env: | $Download = join-path $env: | ||
Invoke-WebRequest ' | Invoke-WebRequest ' | ||
- | Start-Process " | + | Start-Process " |
+ | # alt: | ||
+ | # Start-Process " | ||
+ | </ | ||
+ | |||
+ | ====== Install VS Code ====== | ||
+ | |||
+ | <code powershell> | ||
+ | Save-Script install-vscode -path $env:TEMP | ||
+ | $env: | ||
+ | </ | ||
+ | |||
+ | === Alt === | ||
+ | <code powershell> | ||
+ | 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 " | ||
</ | </ | ||