w10install/optional/install-snapcontrol.cmd

28 lines
541 B
Batchfile
Raw Normal View History

2022-11-13 22:12:39 +01:00
@echo off
call check-for-admin
if %ERRORLEVEL% neq 0 exit /b
2022-11-13 22:12:39 +01:00
2023-03-11 23:38:45 +01:00
set TOOLS=%SystemDrive%\tools
2024-02-21 13:25:46 +01:00
set INIFILE=..\scripts\config\snapcontrol.ini
2022-11-13 22:12:39 +01:00
echo ####### %0 #######
2023-03-12 11:28:34 +01:00
echo moving snapcontrol binary to [ %windir% ] ...
move /Y %TOOLS%\snapcontrol.exe %windir% 2>nul
2024-02-21 13:25:46 +01:00
if EXIST %INIFILE% (
if NOT EXIST %windir%\snapcontrol.ini (
2024-02-21 13:25:46 +01:00
echo putting STANDARD inifile in place ...
copy /Y %INI_STANDARD% %windir%
%windir%\snapcontrol /I
2024-02-21 13:25:46 +01:00
2023-03-11 23:38:45 +01:00
) else (
echo inifile already copied. nothing to do!
)
2022-11-13 22:12:39 +01:00
echo ####### %0 #######
pause