-
-
Save jljouannic/0d63011b8ca641f542347b0bfc7f8f4d to your computer and use it in GitHub Desktop.
Boxstarter Commands for a new Windows box.
This file contains hidden or 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
# Description: Boxstarter Script | |
# Author: Jean-Louis Jouannic <[email protected]> | |
# Last Updated: 2022-09-26 | |
# Tested on: Windows 10 Professional 64 bits v21H2 | |
# | |
# Install Boxstarter from an _elevated_ PowerShell session: | |
# > Set-ExecutionPolicy RemoteSigned -Scope Process -Force; . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force | |
# | |
# Run this Boxstarter script by calling the following from the Boxstarter shell: | |
# | |
# > Install-BoxstarterPackage -PackageName <FILE-PATH-OR-URL> -DisableReboots | |
# | |
# Learn more: http://boxstarter.org/Learn/WebLauncher | |
# ⚠ Temporary disable UAC | |
Disable-UAC | |
############ | |
# Cleaning # | |
############ | |
# Remove every uninstallable app except Windows Store | |
# Adapted from https://matteu31.wordpress.com/2017/04/03/windows-suppression-des-application-du-store/ | |
$AppsToDelete = Get-AppxPackage -AllUsers | Where-Object {$_.NonRemovable -ne $true -and $_.Name -notlike "*store*"} | |
foreach ($App in $AppsToDelete) { | |
$PackageName = $App.PackageFullName | |
if ($PackageName) { | |
Remove-AppxPackage -Package $PackageName | |
} | |
$ProvisionedPackageName = (Get-AppxProvisionedPackage -Online | Where-Object {$_.DisplayName -eq $App.Name}).PackageName | |
if ($ProvisionedPackageName) { | |
Remove-AppxProvisionedPackage -Online -Package $ProvisionedPackageName | |
} | |
} | |
# Remove OneDrive | |
& "$env:systemroot\SysWOW64\OneDriveSetup.exe" /uninstall | |
########### | |
# Privacy # | |
########### | |
# Stop and disable DiagTrack service | |
Get-Service DiagTrack | Stop-Service -PassThru | Set-Service -StartupType Disabled | |
# Disable Bing search results in Start menu | |
Disable-BingSearch | |
# Prevent apps to use my advertising ID | |
If (-Not (Test-Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\AdvertisingInfo")) { | |
New-Item -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\AdvertisingInfo | Out-Null | |
} | |
Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\AdvertisingInfo -Name Enabled -Type DWord -Value 0 | |
# Disable WiFi Sense hotspot sharing | |
If (-Not (Test-Path "HKLM:\Software\Microsoft\PolicyManager\default\WiFi\AllowWiFiHotSpotReporting")) { | |
New-Item -Path HKLM:\Software\Microsoft\PolicyManager\default\WiFi\AllowWiFiHotSpotReporting | Out-Null | |
} | |
Set-ItemProperty -Path HKLM:\Software\Microsoft\PolicyManager\default\WiFi\AllowWiFiHotSpotReporting -Name value -Type DWord -Value 0 | |
# Disable auto-connect to WiFi Sense shared hotspot | |
Set-ItemProperty -Path HKLM:\Software\Microsoft\PolicyManager\default\WiFi\AllowAutoConnectToWiFiSenseHotspots -Name value -Type DWord -Value 0 | |
##################### | |
# Customize desktop # | |
##################### | |
# Better file explorer and taskbar | |
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -DisableOpenFileExplorerToQuickAccess -EnableShowFileExtensions | |
# ⚠ Re-enable UAC | |
Enable-UAC | |
########### | |
# Updates # | |
########### | |
Enable-MicrosoftUpdate | |
# Install not-optional software updates | |
Install-WindowsUpdate -AcceptEula -Criteria "IsHidden=0 and IsInstalled=0 and BrowseOnly=0 and Type='Software'" | |
# Install not-optional driver updates | |
Install-WindowsUpdate -AcceptEula -Criteria "IsHidden=0 and IsInstalled=0 and BrowseOnly=0 and Type='Driver'" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment