-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfirmation.ps1
More file actions
22 lines (19 loc) · 837 Bytes
/
confirmation.ps1
File metadata and controls
22 lines (19 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Write-Host "This script will:"
Write-Host "1. Activate Windows (Using MAS)"
Write-Host "2. Install essential programs using winget (Type 'i' for info)"
Write-Host "3. Install a basic powershell profile with fastfetch"
Write-Host "4. Debloat Windows (using Chris Titus' debloat script)"
Write-Host "WARNING: This will delete all MS Store (UWP) apps, and MS Edge!" -F Red
Write-Host "WARNING: Make sure you've fully updated windows before running!" -F Red
$choice = Read-Host "Do you want to proceed? (y/n/i)"
if ($choice -eq 'i') {
irm https://raw.githubusercontent.com/ShadowElixir/PostInstall/refs/heads/main/files/list.md
$choice = Read-Host "Ready to run now? (y/n)"
}
if ($choice -eq 'y') {
Write-Host "Starting PostInstall..." -F Green
irm cutt.ly/postinstall | iex
}
else {
Write-Host "Cancelled." -F Red
}