forked from itlvd/auto-install-software
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun.bat
81 lines (62 loc) · 2.46 KB
/
run.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
@echo off
:: BatchGotAdmin
:-------------------------------------
REM --> Check for permissions
IF "%PROCESSOR_ARCHITECTURE%" EQU "amd64" (
>nul 2>&1 "%SYSTEMROOT%\SysWOW64\cacls.exe" "%SYSTEMROOT%\SysWOW64\config\system"
) ELSE (
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
)
REM --> If error flag set, we do not have admin.
if '%errorlevel%' NEQ '0' (
echo Requesting administrative privileges...
goto UACPrompt
) else ( goto gotAdmin )
:UACPrompt
echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
set params= %*
echo UAC.ShellExecute "cmd.exe", "/c ""%~s0"" %params:"=""%", "", "runas", 1 >> "%temp%\getadmin.vbs"
"%temp%\getadmin.vbs"
del "%temp%\getadmin.vbs"
exit /B
:gotAdmin
pushd "%CD%"
CD /D "%~dp0"
:--------------------------------------
cecho {CF}Downloading the software from the server.txt file{#}{\n}
wget.exe -N -P Downloaded --content-disposition -i server.txt -q --show-progress
cecho {CF}Silent mode{#}{\n}
for %%a in (Downloaded\*.msi) do (
echo Installing %%a
msiexec /i %~dp0%%a /qn /l*v msi.log
if "%errorlevel%" == "0" (cecho {0A} Done{#}{\n}) else (goto err)
)
cecho {CF}Manual mode{#}{\n}
for %%a in (Downloaded\*.exe) do (
echo Installing %%a
start /wait %~dp0%%a
if "%errorlevel%" == "0" (cecho {0A} Done{#}{\n}) else (goto err)
)
cecho {2A}Completed and requested software successfully installed!{#}{\n}
echo .
echo #########################################################################
echo # Do you want to make different improvements to your computer (Y/[N]) ? #
echo # #
echo # Includes: #
echo # - Disabling mouse acceleration #
echo # - Restore Windows 10 context menu #
echo # #
echo # This step is optional, but it is highly recommended to do it. #
echo #########################################################################
SET /P AREYOUSURE=Type "Y" to make different improvements to your computer, or "N" to stop the script:
IF /I "%AREYOUSURE%" NEQ "Y" GOTO END
start "" "optimization.bat"
cecho {9F}Successful, you can close this page and continue in the new !{#}{\n}
goto END
:END
endlocal
goto END
:err
echo "Error : %errorlevel%"
:END
pause