This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
setlocal ENABLEEXTENSIONS | |
@REM get local Path of script | |
for /F %%I in ("%0") do set localDir=%%~dpI | |
@REM Check for MSEC.dll in current directory, and in script directory | |
if not exist .\msec.dll ( | |
if not exist %localDir%\msec.dll ( | |
echo. | |
echo MSEC.dll not in current directory, please copy MSEC.dll locally and |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
setlocal ENABLEEXTENSIONS | |
@REM get local Path of script | |
for /F %%I in ("%0") do set localDir=%%~dpI | |
@REM Check for MSEC.dll in current directory, and in script directory | |
if not exist .\msec.dll ( | |
if not exist %localDir%\msec.dll ( | |
echo. | |
echo MSEC.dll not in current directory, please copy MSEC.dll locally and |