-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3d1e04e
commit 3bef692
Showing
4 changed files
with
185 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
@echo off | ||
:menu | ||
cls | ||
echo Choose EduBleach_11 script which you need to run: | ||
echo 1. All UWP apps | ||
echo 2. Except Store | ||
echo 3. Except Store and Xbox services | ||
echo 4. Exit | ||
|
||
set /p choice=Enter your choice: | ||
|
||
if /i "%choice%"=="1" ( | ||
powershell.exe -ExecutionPolicy Bypass -File "EduBleach_11_(all_uwp_apps).ps1" | ||
) else if /i "%choice%"=="2" ( | ||
powershell.exe -ExecutionPolicy Bypass -File "EduBleach_11_(except_store).ps1" | ||
) else if /i "%choice%"=="3" ( | ||
powershell.exe -ExecutionPolicy Bypass -File "EduBleach_11_(except_store_and_xbox_services).ps1" | ||
) else if /i "%choice%"=="4" ( | ||
goto :end | ||
) else ( | ||
echo Invalid choice. Please try again. | ||
timeout /nobreak /t 2 >nul | ||
goto :menu | ||
) | ||
|
||
:end |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# EduBleach_11_(all_uwp_apps) | ||
|
||
# List of apps to uninstall | ||
$appsToUninstall = @( | ||
"Clipchamp.Clipchamp" | ||
"Microsoft.BingNews" | ||
"Microsoft.BingWeather" | ||
"Microsoft.GamingApp" | ||
"Microsoft.GetHelp" | ||
"Microsoft.MicrosoftOfficeHub" | ||
"Microsoft.MicrosoftSolitaireCollection" | ||
"Microsoft.MicrosoftStickyNotes" | ||
"Microsoft.People" | ||
"Microsoft.PowerAutomateDesktop" | ||
"Microsoft.StorePurchaseApp" | ||
"Microsoft.Todos" | ||
"Microsoft.Windows.Photos" | ||
"Microsoft.WindowsAlarms" | ||
"Microsoft.WindowsCalculator" | ||
"Microsoft.WindowsCamera" | ||
"microsoft.windowscommunicationsapps" | ||
"Microsoft.WindowsFeedbackHub" | ||
"Microsoft.WindowsMaps" | ||
"Microsoft.WindowsSoundRecorder" | ||
"Microsoft.Xbox.TCUI" | ||
"Microsoft.XboxGameOverlay" | ||
"Microsoft.XboxGamingOverlay" | ||
"Microsoft.XboxSpeechToTextOverlay" | ||
"Microsoft.XboxIdentityProvider" | ||
"Microsoft.YourPhone" | ||
"Microsoft.ZuneVideo" | ||
"MicrosoftCorporationII.QuickAssist" | ||
"Microsoft.549981C3F5F10" | ||
"Microsoft.Getstarted" | ||
"Microsoft.WindowsStore" | ||
"Microsoft.Paint" | ||
"Microsoft.ZuneMusic" | ||
"Microsoft.WindowsNotepad" | ||
"Microsoft.ScreenSketch" | ||
"Microsoft.WindowsTerminal" | ||
"Microsoft.OutlookForWindows" | ||
) | ||
|
||
# View of apps to uninstall | ||
foreach ($app in $appsToUninstall) { | ||
try { | ||
# Uninstalling apps using Remove-AppxPackage cmdlet | ||
Get-AppxPackage -Name $app | Remove-AppxPackage -ErrorAction Stop | ||
Write-Host "Successfully uninstalled $app" | ||
} catch { | ||
Write-Host "Failed to uninstall $app. Error: $_" | ||
} | ||
} | ||
|
||
# Pause script execution | ||
Read-Host "Press Enter to exit" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# EduBleach_11_(except_store) | ||
|
||
# List of apps to uninstall | ||
$appsToUninstall = @( | ||
"Clipchamp.Clipchamp" | ||
"Microsoft.BingNews" | ||
"Microsoft.BingWeather" | ||
"Microsoft.GamingApp" | ||
"Microsoft.GetHelp" | ||
"Microsoft.MicrosoftOfficeHub" | ||
"Microsoft.MicrosoftSolitaireCollection" | ||
"Microsoft.MicrosoftStickyNotes" | ||
"Microsoft.People" | ||
"Microsoft.PowerAutomateDesktop" | ||
"Microsoft.Todos" | ||
"Microsoft.Windows.Photos" | ||
"Microsoft.WindowsAlarms" | ||
"Microsoft.WindowsCalculator" | ||
"Microsoft.WindowsCamera" | ||
"microsoft.windowscommunicationsapps" | ||
"Microsoft.WindowsFeedbackHub" | ||
"Microsoft.WindowsMaps" | ||
"Microsoft.WindowsSoundRecorder" | ||
"Microsoft.Xbox.TCUI" | ||
"Microsoft.XboxGameOverlay" | ||
"Microsoft.XboxGamingOverlay" | ||
"Microsoft.XboxSpeechToTextOverlay" | ||
"Microsoft.XboxIdentityProvider" | ||
"Microsoft.YourPhone" | ||
"Microsoft.ZuneVideo" | ||
"MicrosoftCorporationII.QuickAssist" | ||
"Microsoft.549981C3F5F10" | ||
"Microsoft.Getstarted" | ||
"Microsoft.Paint" | ||
"Microsoft.ZuneMusic" | ||
"Microsoft.WindowsNotepad" | ||
"Microsoft.ScreenSketch" | ||
"Microsoft.WindowsTerminal" | ||
"Microsoft.OutlookForWindows" | ||
) | ||
|
||
# View of apps to uninstall | ||
foreach ($app in $appsToUninstall) { | ||
try { | ||
# Uninstalling apps using Remove-AppxPackage cmdlet | ||
Get-AppxPackage -Name $app | Remove-AppxPackage -ErrorAction Stop | ||
Write-Host "Successfully uninstalled $app" | ||
} catch { | ||
Write-Host "Failed to uninstall $app. Error: $_" | ||
} | ||
} | ||
|
||
# Pause script execution | ||
Read-Host "Press Enter to exit" |
49 changes: 49 additions & 0 deletions
49
EduBleach/EduBleach_11/EduBleach_11_(except_store_and_xbox_services).ps1
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# EduBleach_11_(except_store_and_xbox_services) | ||
|
||
# List of apps to uninstall | ||
$appsToUninstall = @( | ||
"Clipchamp.Clipchamp" | ||
"Microsoft.BingNews" | ||
"Microsoft.BingWeather" | ||
"Microsoft.GamingApp" | ||
"Microsoft.GetHelp" | ||
"Microsoft.MicrosoftOfficeHub" | ||
"Microsoft.MicrosoftSolitaireCollection" | ||
"Microsoft.MicrosoftStickyNotes" | ||
"Microsoft.People" | ||
"Microsoft.PowerAutomateDesktop" | ||
"Microsoft.Todos" | ||
"Microsoft.Windows.Photos" | ||
"Microsoft.WindowsAlarms" | ||
"Microsoft.WindowsCalculator" | ||
"Microsoft.WindowsCamera" | ||
"microsoft.windowscommunicationsapps" | ||
"Microsoft.WindowsFeedbackHub" | ||
"Microsoft.WindowsMaps" | ||
"Microsoft.WindowsSoundRecorder" | ||
"Microsoft.YourPhone" | ||
"Microsoft.ZuneVideo" | ||
"MicrosoftCorporationII.QuickAssist" | ||
"Microsoft.549981C3F5F10" | ||
"Microsoft.Getstarted" | ||
"Microsoft.Paint" | ||
"Microsoft.ZuneMusic" | ||
"Microsoft.WindowsNotepad" | ||
"Microsoft.ScreenSketch" | ||
"Microsoft.WindowsTerminal" | ||
"Microsoft.OutlookForWindows" | ||
) | ||
|
||
# View of apps to uninstall | ||
foreach ($app in $appsToUninstall) { | ||
try { | ||
# Uninstalling apps using Remove-AppxPackage cmdlet | ||
Get-AppxPackage -Name $app | Remove-AppxPackage -ErrorAction Stop | ||
Write-Host "Successfully uninstalled $app" | ||
} catch { | ||
Write-Host "Failed to uninstall $app. Error: $_" | ||
} | ||
} | ||
|
||
# Pause script execution | ||
Read-Host "Press Enter to exit" |