Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
ncheymol authored Jul 5, 2021
1 parent 4bd6538 commit b3952cc
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Intune/IntuneWinAppUtil/IntuneWinAppUtil_v2.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
:begin
set /p App="AppName: "
set /p Setup="Setup: "
IF NOT EXIST "%~Dp0_Packages" (mkdir "%~Dp0_Packages")
IF NOT EXIST "%~Dp0_Icons" (mkdir "%~Dp0_Icons")

%~Dp0IntuneWinAppUtil.exe -c %~Dp0%App% -s %Setup% -o %~Dp0Packages
:setretry
set /p retry="Try again (Y / N) ? "


IF /I %retry% == Y GOTO:begin
IF /I %retry% == N (exit) ELSE (GOTO:setretry)

0 comments on commit b3952cc

Please sign in to comment.