Skip to content

Instantly share code, notes, and snippets.

@itoleck
Last active May 17, 2024 22:13
Show Gist options
  • Save itoleck/e2590ee9a31054db1395a03ba5a84f6d to your computer and use it in GitHub Desktop.
Save itoleck/e2590ee9a31054db1395a03ba5a84f6d to your computer and use it in GitHub Desktop.
Download Files to install
Invoke-WebRequest -Uri "https://github.com/ryanoasis/nerd-fonts/raw/master/patched-fonts/CascadiaCode/Regular/CaskaydiaCoveNerdFont-Regular.ttf" -OutFile "$env:USERPROFILE\Downloads\Caskaydia Cove Regular Nerd Font Complete.otf"
#Repo for CascadiaCode Font
#Invoke-WebRequest -Uri "https://github.com/microsoft/cascadia-code/releases/download/v2111.01/CascadiaCode-2111.01.zip" -OutFile "$env:USERPROFILE\Downloads\CascadiaCode-2111.01.zip"
# 'Install' Sysinternals tools in downloads
Invoke-WebRequest -Uri "https://download.sysinternals.com/files/SysinternalsSuite.zip" -OutFile "$env:USERPROFILE\Downloads\SysinternalsSuite.zip"
Expand-Archive -Path "$env:USERPROFILE\Downloads\SysinternalsSuite.zip" -DestinationPath "$env:USERPROFILE\Downloads\SysinternalsSuite" -Force
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/itoleck/VariousScripts/main/Windows/SysinternalsEulas.reg" -OutFile "$env:userprofile\downloads\SysinternalsEulas.reg"
REG.exe IMPORT "$env:userprofile\downloads\SysinternalsEulas.reg"
#SQL Studio
Invoke-WebRequest -Uri "https://aka.ms/ssmsfullsetup" -OutFile "$env:USERPROFILE\Downloads\SMSS-Setup.exe"
#Choco
iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
#Start11 Buttons
Invoke-WebRequest -Uri "https://www.wincustomize.com/explore/start_menu_buttons/573/download" -OutFile "$env:USERPROFILE\Downloads\Start11Buttons.zip
"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment