From 9644829b9e5bc7bb33927b50f3660d15fd95f059 Mon Sep 17 00:00:00 2001 From: David Yoder Date: Fri, 28 Jul 2023 09:28:37 -0400 Subject: [PATCH] eliminate alias --- Fix-ReinstallAllAppXPackages.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Fix-ReinstallAllAppXPackages.ps1 b/Fix-ReinstallAllAppXPackages.ps1 index c277bdd..903bd61 100644 --- a/Fix-ReinstallAllAppXPackages.ps1 +++ b/Fix-ReinstallAllAppXPackages.ps1 @@ -1 +1 @@ -Get-AppxPackage -AllUsers | Foreach { Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml” } \ No newline at end of file +Get-AppxPackage -AllUsers | ForEach-Object { Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml” } \ No newline at end of file