w10install/optional/install-snapcontrol.cmd
2024-02-21 13:25:46 +01:00

28 lines
541 B
Batchfile

@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
set TOOLS=%SystemDrive%\tools
set INIFILE=..\scripts\config\snapcontrol.ini
echo ####### %0 #######
echo moving snapcontrol binary to [ %windir% ] ...
move /Y %TOOLS%\snapcontrol.exe %windir% 2>nul
if EXIST %INIFILE% (
if NOT EXIST %windir%\snapcontrol.ini (
echo putting STANDARD inifile in place ...
copy /Y %INI_STANDARD% %windir%
%windir%\snapcontrol /I
) else (
echo inifile already copied. nothing to do!
)
echo ####### %0 #######
pause