Skip to content

Jump start your windows setup or: Install Chrome without using the Internet Explorer

License

Notifications You must be signed in to change notification settings

torbenmoeller/setup-scripts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

How to use this project

Execute this script to automatically install software with winget.

You can find more information on my blog post

$Url = "https://github.com/torbenmoeller/setup-scripts/archive/refs/heads/main.zip"
$DownloadZipFile = "setup-scripts/main.zip"
$ExtractPath = "setup-scripts/unpacked/"
$Location = $ExtractPath + "setup-scripts-main/"
$InstallAllScript = "./install-all.ps1"

# Create new folder, if not existing
New-Item -ItemType Directory -Force -Path $ExtractPath
# Download zip file from main branch 
Invoke-WebRequest -Uri $Url -OutFile $DownloadZipFile
# Unzip archive
Expand-Archive $DownloadZipFile -DestinationPath $ExtractPath
# Switch inside the unzipped folders
Push-Location $Location
#Run install-all-script
& $InstallAllScript

Contact

Get in touch: contact@pluvial.dev

About

Jump start your windows setup or: Install Chrome without using the Internet Explorer

Topics

Resources

License

Stars

Watchers

Forks