Compare commits
No commits in common. "65c4cc75e7c868ed609df72f83938ca968f6dbaf" and "806b8d141d1def2ab71e33dcdd9f70e0044bc9e8" have entirely different histories.
65c4cc75e7
...
806b8d141d
11
README.md
11
README.md
@ -1,14 +1,3 @@
|
|||||||
# Win_Setup
|
# Win_Setup
|
||||||
|
|
||||||
Little PowerShell script that installs most of the windows programs I use
|
Little PowerShell script that installs most of the windows programs I use
|
||||||
|
|
||||||
based on:
|
|
||||||
* https://chrislayers.com/2021/08/01/scripting-winget/
|
|
||||||
* https://gist.github.com/Codebytes/29bf18015f6e93fca9421df73c6e512c
|
|
||||||
* https://gist.github.com/crutkas/6c2096eae387e544bd05cde246f23901
|
|
||||||
|
|
||||||
Run with:
|
|
||||||
|
|
||||||
```ps1
|
|
||||||
PowerShell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://git.theflyingfool.com/theflyingfool/Win_Setup/raw/branch/main/setup.ps1'))"
|
|
||||||
```
|
|
||||||
|
268
setup.ps1
268
setup.ps1
@ -1,58 +1,105 @@
|
|||||||
|
## First REAL Attempt, winget not found on fresh install checked store for updates
|
||||||
|
## Switched to Beta channel to start
|
||||||
|
## Still had to run winget search test as normal user
|
||||||
|
## Settings section missing closing bracket
|
||||||
|
## Ea launcher bad hash
|
||||||
|
## Office hash didnt match
|
||||||
|
## Unhide all taskbar
|
||||||
|
## In terminal select "PowerShell" instead of Windows PS
|
||||||
|
## Set Windows Terminal as default
|
||||||
|
|
||||||
|
|
||||||
|
#Found here: https://chrislayers.com/2021/08/01/scripting-winget/
|
||||||
|
#Based on this gist: https://gist.github.com/Codebytes/29bf18015f6e93fca9421df73c6e512c
|
||||||
|
#Which was based on, this gist: https://gist.github.com/crutkas/6c2096eae387e544bd05cde246f23901
|
||||||
|
|
||||||
|
# PowerShell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://gist.githubusercontent.com/Codebytes/29bf18015f6e93fca9421df73c6e512c/raw/'))"
|
||||||
|
# Runs original, to run this one...
|
||||||
|
# winget search test ## Original script maynot require this since it does some settings
|
||||||
|
# PowerShell -NoProfile -ExecutionPolicy Bypass C:\Users\Nick\Documents\test.ps1
|
||||||
|
|
||||||
#Install WinGet
|
#Install WinGet
|
||||||
## WinGet should be on any windows 11 install by default
|
## WinGet should be on any windows 11 install by default
|
||||||
$hasPackageManager = Get-AppPackage -name 'Microsoft.DesktopAppInstaller'
|
#$hasPackageManager = Get-AppPackage -name 'Microsoft.DesktopAppInstaller'
|
||||||
if (!$hasPackageManager -or [version]$hasPackageManager.Version -lt [version]"1.10.0.0") {
|
#if (!$hasPackageManager -or [version]$hasPackageManager.Version -lt [version]"1.10.0.0") {
|
||||||
"Installing winget Dependencies"
|
# "Installing winget Dependencies"
|
||||||
Add-AppxPackage -Path 'https://aka.ms/Microsoft.VCLibs.x64.14.00.Desktop.appx'
|
# Add-AppxPackage -Path 'https://aka.ms/Microsoft.VCLibs.x64.14.00.Desktop.appx'
|
||||||
$releases_url = 'https://api.github.com/repos/microsoft/winget-cli/releases/latest'
|
#
|
||||||
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
|
# $releases_url = 'https://api.github.com/repos/microsoft/winget-cli/releases/latest'
|
||||||
$releases = Invoke-RestMethod -uri $releases_url
|
#
|
||||||
$latestRelease = $releases.assets | Where-Object { $_.browser_download_url.EndsWith('msixbundle') } | Select-Object -First 1
|
# [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
|
||||||
"Installing winget from $($latestRelease.browser_download_url)"
|
# $releases = Invoke-RestMethod -uri $releases_url
|
||||||
Add-AppxPackage -Path $latestRelease.browser_download_url
|
# $latestRelease = $releases.assets | Where { $_.browser_download_url.EndsWith('msixbundle') } | Select -First 1
|
||||||
}
|
#
|
||||||
else {
|
# "Installing winget from $($latestRelease.browser_download_url)"
|
||||||
"winget already installed"
|
# Add-AppxPackage -Path $latestRelease.browser_download_url
|
||||||
}
|
#}
|
||||||
|
#else {
|
||||||
|
# "winget already installed"
|
||||||
|
#}
|
||||||
|
|
||||||
#Configure WinGet
|
#Configure WinGet
|
||||||
|
do {
|
||||||
|
do {
|
||||||
|
Clear-Host ## Clear screen?
|
||||||
Write-Output "Configuring winget"
|
Write-Output "Configuring winget"
|
||||||
|
|
||||||
#winget config path from: https://github.com/microsoft/winget-cli/blob/master/doc/Settings.md#file-location
|
#winget config path from: https://github.com/microsoft/winget-cli/blob/master/doc/Settings.md#file-location
|
||||||
$settingsPath = "$env:LOCALAPPDATA\Packages\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe\LocalState\settings.json";
|
$settingsPath = "$env:LOCALAPPDATA\Packages\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe\LocalState\settings.json";
|
||||||
$settingsJson = @{installBehavior = @{
|
$settingsJson =
|
||||||
preferences = @{
|
@"
|
||||||
scope = 'machine'
|
{
|
||||||
|
// For documentation on these settings, see: https://aka.ms/winget-settings
|
||||||
|
"installBehavior": {
|
||||||
|
"preferences": {
|
||||||
|
"scope": "machine"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$settingsJson | ConvertTo-Json | Out-File $settingsPath -Encoding utf8
|
"@;
|
||||||
|
$settingsJson | Out-File $settingsPath -Encoding utf8
|
||||||
|
|
||||||
do {
|
write-host "1 - Base Apps"
|
||||||
$answer = $null
|
write-host "2 - Game Launchers"
|
||||||
do {
|
write-host "3 - Desktop only"
|
||||||
|
write-host "4 - Lenovo Laptop only"
|
||||||
|
write-host "5 - Remove Crap"
|
||||||
|
|
||||||
if ( $answer) {
|
write-host "9 - Exit"
|
||||||
Write-Host 'Invalid selection'
|
|
||||||
|
write-host ""
|
||||||
|
$answer = read-host "Select number(s)"
|
||||||
|
|
||||||
|
$ok = $answer -match '[123459]+$'
|
||||||
|
if ( -not $ok) {write-host "Invalid selection"
|
||||||
Start-Sleep 2
|
Start-Sleep 2
|
||||||
Write-Host ''
|
write-host ""
|
||||||
}
|
}
|
||||||
Write-Host '1 - Base Apps'
|
} until ($ok)
|
||||||
Write-Host '2 - Game Launchers'
|
|
||||||
Write-Host '3 - Desktop only'
|
|
||||||
Write-Host '4 - Lenovo Laptop only'
|
|
||||||
Write-Host '5 - Remove Crap'
|
|
||||||
Write-Host '9 - Exit'
|
|
||||||
Write-Host ''
|
|
||||||
$answer = Read-Host 'Select number(s)'
|
|
||||||
|
|
||||||
} until ($answer -in @(1..5; 9))
|
switch -Regex ( $answer ) {
|
||||||
|
"1" { $apps = @( # BASE APPS
|
||||||
if ($answer -eq 9) { break }
|
@{name = "Microsoft.PowerShell" },
|
||||||
|
@{name = "Microsoft.VisualStudioCode" },
|
||||||
function InstallTheApps([array]$AppList) {
|
@{name = "Microsoft.PowerToys" },
|
||||||
Foreach ($app in $AppList) {
|
@{name = "Git.Git" },
|
||||||
|
@{name = "Google.Chrome" },
|
||||||
|
@{name = "Google.Drive"},
|
||||||
|
@{name = "Hugo.Hugo.Extended"},
|
||||||
|
@{name = "Bitwarden.Bitwarden"},
|
||||||
|
@{name = "Plex.Plex" },
|
||||||
|
@{name = "VivaldiTechnologies.Vivaldi" },
|
||||||
|
@{name = "VideoLAN.VLC"},
|
||||||
|
@{name = "PointPlanck.FileBot"},
|
||||||
|
@{name = "Oracle.VirtualBox"},
|
||||||
|
@{name = "NordVPN.NordVPN"},
|
||||||
|
@{name = "Facebook.Messenger"},
|
||||||
|
@{name = "Microsoft.Office"}
|
||||||
|
)
|
||||||
|
Foreach ($app in $apps) {
|
||||||
$listApp = winget list --exact -q $app.name
|
$listApp = winget list --exact -q $app.name
|
||||||
if (![String]::Join('', $listApp).Contains($app.name)) {
|
if (![String]::Join("", $listApp).Contains($app.name)) {
|
||||||
Write-Host 'Installing:' $app.name
|
Write-host "Installing:" $app.name
|
||||||
if ($null -ne $app.source) {
|
if ($null -ne $app.source) {
|
||||||
winget install --exact $app.name --source $app.source
|
winget install --exact $app.name --source $app.source
|
||||||
# winget install --exact --silent $app.name --source $app.source
|
# winget install --exact --silent $app.name --source $app.source
|
||||||
@ -63,65 +110,96 @@ do {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
Write-Host 'Skipping Install of ' $app.name
|
Write-host "Skipping Install of " $app.name
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
"2" {
|
||||||
switch ( $answer ) {
|
{ $apps = @( # Game Launchers
|
||||||
'1' {
|
@{name = "ElectronicArts.EADesktop" },
|
||||||
$apps = @( # BASE APPS
|
@{name = "Valve.Steam" },
|
||||||
@{name = 'Microsoft.PowerShell' },
|
@{name = "EpicGames.EpicGamesLauncher" }
|
||||||
@{name = 'Microsoft.VisualStudioCode' },
|
|
||||||
@{name = 'Microsoft.PowerToys' },
|
|
||||||
@{name = 'Git.Git' },
|
|
||||||
@{name = 'Google.Chrome' },
|
|
||||||
@{name = 'Google.Drive' },
|
|
||||||
@{name = 'Hugo.Hugo.Extended' },
|
|
||||||
@{name = 'Bitwarden.Bitwarden' },
|
|
||||||
@{name = 'Plex.Plex' },
|
|
||||||
@{name = 'VivaldiTechnologies.Vivaldi' },
|
|
||||||
@{name = 'VideoLAN.VLC' },
|
|
||||||
@{name = 'PointPlanck.FileBot' },
|
|
||||||
@{name = 'Oracle.VirtualBox' },
|
|
||||||
@{name = 'NordVPN.NordVPN' },
|
|
||||||
@{name = 'Facebook.Messenger' },
|
|
||||||
@{name = 'Microsoft.Office' }
|
|
||||||
)
|
)
|
||||||
InstallTheApps $Apps
|
|
||||||
}
|
|
||||||
'2' {
|
|
||||||
$apps = @( # Game Launchers
|
|
||||||
@{name = 'ElectronicArts.EADesktop' },
|
|
||||||
@{name = 'Valve.Steam' },
|
|
||||||
@{name = 'EpicGames.EpicGamesLauncher' }
|
|
||||||
)
|
|
||||||
InstallTheApps $Apps
|
|
||||||
}
|
|
||||||
'3' {
|
|
||||||
$apps = @( ## DESKTOP
|
|
||||||
@{name = 'SteelSeries.SteelSeriesEngine' },
|
|
||||||
@{name = 'Corsair.iCUE.4' }
|
|
||||||
)
|
|
||||||
InstallTheApps $Apps
|
|
||||||
}
|
|
||||||
'4' {
|
|
||||||
$apps = @( ## LAPTOP
|
|
||||||
@{name = 'Intel.IntelDriverAndSupportAssistant' },
|
|
||||||
@{name = '9WZDNCRFJ4MV'; source = 'msstore' } # Lenovo Vantage from MS Store
|
|
||||||
)
|
|
||||||
|
|
||||||
InstallTheApps $Apps
|
|
||||||
}
|
|
||||||
'5' {
|
|
||||||
## REMOVE CRAP
|
|
||||||
Write-Output 'Removing Apps'
|
|
||||||
$apps = '*3DPrint*', 'Microsoft.MixedReality.Portal', 'Disney.*' , 'Microsoft.BingNews*' , '*BingWeather*', '*.MicrosoftOfficeHub*' , '*MicrosoftSolitaireCollection*'
|
|
||||||
Foreach ($app in $apps) {
|
Foreach ($app in $apps) {
|
||||||
Write-Host 'Uninstalling:' $app
|
$listApp = winget list --exact -q $app.name
|
||||||
|
if (![String]::Join("", $listApp).Contains($app.name)) {
|
||||||
|
Write-host "Installing:" $app.name
|
||||||
|
if ($app.source -ne $null) {
|
||||||
|
winget install --exact $app.name --source $app.source
|
||||||
|
# winget install --exact --silent $app.name --source $app.source
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
winget install --exact $app.name
|
||||||
|
# winget install --exact --silent $app.name
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
Write-host "Skipping Install of " $app.name
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
"3" {## DESKTOP
|
||||||
|
{ $apps = @(
|
||||||
|
@{name = "SteelSeries.SteelSeriesEngine"}, ## Might want to link this to a second PS script?
|
||||||
|
@{name = "Corsair.iCUE.4"} ## Might want to link this to a second PS script?
|
||||||
|
)
|
||||||
|
Foreach ($app in $apps) {
|
||||||
|
$listApp = winget list --exact -q $app.name
|
||||||
|
if (![String]::Join("", $listApp).Contains($app.name)) {
|
||||||
|
Write-host "Installing:" $app.name
|
||||||
|
if ($app.source -ne $null) {
|
||||||
|
winget install --exact $app.name --source $app.source
|
||||||
|
# winget install --exact --silent $app.name --source $app.source
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
winget install --exact $app.name
|
||||||
|
# winget install --exact --silent $app.name
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
Write-host "Skipping Install of " $app.name
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
"4" {## LAPTOP
|
||||||
|
|
||||||
|
{ $apps = @(
|
||||||
|
@{name = "Intel.IntelDriverAndSupportAssistant"},
|
||||||
|
@{name = "9WZDNCRFJ4MV"; source = "msstore" } # Lenovo Vantage from MS Store
|
||||||
|
)
|
||||||
|
Foreach ($app in $apps) {
|
||||||
|
$listApp = winget list --exact -q $app.name
|
||||||
|
if (![String]::Join("", $listApp).Contains($app.name)) {
|
||||||
|
Write-host "Installing:" $app.name
|
||||||
|
if ($app.source -ne $null) {
|
||||||
|
winget install --exact $app.name --source $app.source
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
winget install --exact $app.name
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
Write-host "Skipping Install of " $app.name
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
"5" { ## REMOVE CRAP
|
||||||
|
Write-Output "Removing Apps"
|
||||||
|
$apps = "*3DPrint*", "Microsoft.MixedReality.Portal", "Disney.*" ,"Microsoft.BingNews*" ,"*BingWeather*","*.MicrosoftOfficeHub*" , "*MicrosoftSolitaireCollection*"
|
||||||
|
Foreach ($app in $apps)
|
||||||
|
{
|
||||||
|
Write-host "Uninstalling:" $app
|
||||||
Get-AppxPackage -allusers $app | Remove-AppxPackage
|
Get-AppxPackage -allusers $app | Remove-AppxPackage
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} until ( $answer -eq '9' )
|
} until ( $answer -match "9" )
|
||||||
|
Loading…
Reference in New Issue
Block a user