Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
@setlocal @if "%_echo%"=="" echo off
echo Verifying that the Testroot Certificate is installed... set __certinstalled= for /f %%i in ('tfindcer -a"Microsoft Test Root Authority" -s root -S ^| findstr /c:"2BD63D28 D7BCD0E2 51195AEB 519243C1 3142EBC3"') do ( set __certinstalled=1 )
if defined __certinstalled goto :eof echo TestRoot does NOT appear to be installed yet. Installing now...
@rem Install testroot certificate. certmgr -add %RazzleToolPath%\testroot.cer -r localMachine -s root
echo Check again to see if Testroot is installed... set __certinstalled= for /f %%i in ('tfindcer -a"Microsoft Test Root Authority" -s root -S ^| findstr /c:"2BD63D28 D7BCD0E2 51195AEB 519243C1 3142EBC3"') do ( set __certinstalled=1 )
if defined __certinstalled echo TestRoot installed successfully&&goto :eof echo TestRoot still not installed. You may have to do this manually. Simply echo log on as a local administrator and issue the following command: echo echo certmgr -r localMachine -add %RazzleToolPath%\testroot.cer -s root
endlocal
|