mirror of
https://github.com/builtbybel/BloatyNosy.git
synced 2025-02-18 02:31:02 +01:00
Add files via upload
This commit is contained in:
parent
b9ee395ecd
commit
a4f197f401
@ -1 +1,23 @@
|
|||||||
Get-AppxPackage -allusers | foreach {Add-AppxPackage -register "$($_.InstallLocation)\appxmanifest.xml" -DisableDevelopmentMode}
|
# Get all installed Windows apps for all users
|
||||||
|
$allApps = Get-AppxPackage -AllUsers
|
||||||
|
|
||||||
|
# Counter for tracking progress
|
||||||
|
$totalApps = $allApps.Count
|
||||||
|
$currentAppIndex = 1
|
||||||
|
|
||||||
|
# Loop through each app and reinstall
|
||||||
|
foreach ($app in $allApps) {
|
||||||
|
# Display current status
|
||||||
|
Write-Host "[$currentAppIndex / $totalApps] Reinstalling $($app.Name)..." -ForegroundColor Yellow
|
||||||
|
|
||||||
|
# Try to reinstall the app
|
||||||
|
try {
|
||||||
|
Add-AppxPackage -Register "$($app.InstallLocation)\appxmanifest.xml" -DisableDevelopmentMode -ErrorAction Stop
|
||||||
|
Write-Host "[$currentAppIndex / $totalApps] $($app.Name) reinstalled successfully." -ForegroundColor Green
|
||||||
|
} catch {
|
||||||
|
Write-Host "[$currentAppIndex / $totalApps] Error occurred while reinstalling $($app.Name): $_" -ForegroundColor Red
|
||||||
|
}
|
||||||
|
|
||||||
|
# Increment the counter
|
||||||
|
$currentAppIndex++
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user