remove pause from uninstall script

This commit is contained in:
Mario Fetka 2014-02-17 18:58:51 +01:00
parent 11a561ec6d
commit b17b3f8ff5

View File

@ -48,7 +48,6 @@ echo !str! >> "%temp%\list1.txt"
for /f "skip=1 delims=" %%a in ('type "%temp%\list1.txt"') do (wmic product where "name like '%%a%'" call uninstall /nointeractive) for /f "skip=1 delims=" %%a in ('type "%temp%\list1.txt"') do (wmic product where "name like '%%a%'" call uninstall /nointeractive)
for /f "skip=1 delims=" %%a in ('type "%temp%\list1.txt"') do (echo "%%a") for /f "skip=1 delims=" %%a in ('type "%temp%\list1.txt"') do (echo "%%a")
pause
del "%temp%\list.txt" del "%temp%\list.txt"
del "%temp%\list1.txt" del "%temp%\list1.txt"