13 lines
162 B
Batchfile
13 lines
162 B
Batchfile
@echo off
|
|
|
|
IF %1.==. GOTO USAGE
|
|
|
|
powershell -command "Get-AppxPackage -AllUsers *%1* | Remove-AppxPackage"
|
|
GOTO END
|
|
|
|
:USAGE
|
|
echo "usage: %0 <Packagename>"
|
|
|
|
:END
|
|
|