2021-03-06 14:00:47 +01:00
|
|
|
# REMOVE the Store ...
|
2022-11-13 22:12:39 +01:00
|
|
|
check-for-admin.cmd
|
2021-03-06 14:00:47 +01:00
|
|
|
|
|
|
|
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'
|
|
|
|
|
|
|
|
$ErrorActionPreference = 'SilentlyContinue'
|
|
|
|
|
|
|
|
Get-AppxPackage -AllUsers |
|
|
|
|
where-object {$_.name -like "*store*"} |
|
|
|
|
Remove-AppxPackage
|
|
|
|
|
|
|
|
Get-AppxProvisionedPackage -online |
|
|
|
|
where-object {$_.displayname -like "*store*"} |
|
|
|
|
Remove-AppxProvisionedPackage -online
|
|
|
|
|
|
|
|
write-host '#######',(split-path $PSCommandPath -Leaf),'#######'
|
|
|
|
|