Skip to content

Commit 71af3f1

Browse files
Added more scripts
1 parent c69304c commit 71af3f1

File tree

4 files changed

+18
-0
lines changed

4 files changed

+18
-0
lines changed

scripts/beep.ps1

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Invoke-WebRequest "https://raw.githubusercontent.com/fleschutz/PowerShell/refs/heads/main/scripts/play-beep-sound.ps1" | Invoke-Expression
2+
Write-Host "Beep :3"

scripts/install-scoop.ps1

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Write-Host "Installing Scoop..."
2+
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
3+
Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression

scripts/windows-10-debloater.ps1

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Write-Host "Starting Windows 10 debloater GUI..."
2+
Invoke-WebRequest "https://raw.githubusercontent.com/Sycnex/Windows10Debloater/refs/heads/master/Windows10DebloaterGUI.ps1" | Invoke-Expression

scripts/windows-11-debloater.ps1

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
Write-Host "Starting Debloater..."
2+
Set-ExecutionPolicy Unrestricted -Scope Process
3+
Invoke-WebRequest "https://raw.githubusercontent.com/Raphire/Win11Debloat/refs/heads/master/Win11Debloat.ps1" | Invoke-Expression -RemoveApps -DisableBing -Silent
4+
if ($?) {
5+
Write-Host "Debloated annoying Windows 11!!!"
6+
exit 1
7+
}
8+
else {
9+
Write-Host "Error debloating."
10+
exit 1
11+
}

0 commit comments

Comments
 (0)