Files
management-scripts/Get-WindowsAppXPackages.ps1
T

6 lines
206 B
PowerShell
Raw Normal View History

2019-11-11 19:22:39 -05:00
## 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" }