Last active
May 17, 2024 22:13
-
-
Save itoleck/e2590ee9a31054db1395a03ba5a84f6d to your computer and use it in GitHub Desktop.
Download Files to install
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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