13 lines
138 B
Batchfile
13 lines
138 B
Batchfile
@echo off
|
|
|
|
IF %1.==. GOTO USAGE
|
|
|
|
powershell -command .\Download-AppxFromStore.ps1 %1
|
|
GOTO END
|
|
|
|
:USAGE
|
|
echo "usage: %0 <Store URL>"
|
|
|
|
:END
|
|
|