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/07 20:31] – 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 10: | Line 10: | ||
# alt: | # alt: | ||
# Start-Process " | # 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 " | ||
</ | </ | ||