Files
management-scripts/Get-WindowsAppXPackages.ps1
2022-10-04 16:11:41 -04:00

6 lines
206 B
PowerShell

## Make sure the computer is running Windows 10
If ( ([System.Environment]::OSVersion.Version).Major -ge 10 )
{
(Get-AppXPackage).Name
} else { write-host "This computer is not running Windows 10" }