B
ButWait
Guest
Anyone know how/if I can integrate a (Fernando's win-RAID) certificate to be installed prior to (his) unsigned drivers? I think he actually suggests installing these drivers post-clean install (importing the cert first via Run as Admin or PowerRun), but maybe it's possible to get his .cmd file to run prior to integrated drivers? [Talking win10pro x64 and currently NTLiting 1607]
Either way, for now i'll just try my install without.
It's attached to this post, but here's how the script starts out (which may determine feasibiility for integration/NTLiting?):
Either way, for now i'll just try my install without.
It's attached to this post, but here's how the script starts out (which may determine feasibiility for integration/NTLiting?):
Code:
echo off &TITLE Win-RAID CA.cer install script
:WELCOME
cls
echo.
echo This will install the "Win-RAID CA.cer" as Trusted Root and Trusted Publisher Certificate.
echo.
set /P "START=Continue? (y/n): "
if '%START%' equ 'y' goto WORK
if '%START%' equ 'n' exit /B
goto WELCOME
:WORK
if not exist "%SYSTEMROOT%\System32\certutil.exe" goto CERTUTIL_NOT_FOUND
set "CA=%tmp%\Win-RAID CA.cer"
Last edited by a moderator: