-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.bat
More file actions
47 lines (36 loc) · 855 Bytes
/
setup.bat
File metadata and controls
47 lines (36 loc) · 855 Bytes
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
@echo off
goto check_admin
:check_admin
fsutil dirty query %systemdrive% > nul
if %errorlevel% neq 0 (
goto show_admin_control
) else (
goto main
)
exit /B
:show_admin_control
echo set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
echo UAC.ShellExecute "cmd.exe", "/c %~s0 %*", "", "runas", 1 >> "%temp%\getadmin.vbs"
"%temp%\getadmin.vbs"
del "%temp%\getadmin.vbs"
exit /B
:main
set argc=0
cd %~dp0
for %%x in (%*) do set /A argc+=1
if %argc% equ 0 (
goto install
)
if "%1" == "-r" (
goto uninstall
)
exit /B
:install
Powershell.exe -Executionpolicy bypass -File save-input-methods.ps1
build\setup.exe
Powershell.exe -Executionpolicy bypass -File change-key-layout.ps1
exit /B
:uninstall
Powershell.exe -Executionpolicy bypass -File set-default.ps1
build\setup.exe
exit /B