Migrate installer to Apollo
This commit is contained in:
BIN
src_assets/windows/drivers/sudovda/SudoVDA.inf
Normal file
BIN
src_assets/windows/drivers/sudovda/SudoVDA.inf
Normal file
Binary file not shown.
BIN
src_assets/windows/drivers/sudovda/code_signing.crt
Normal file
BIN
src_assets/windows/drivers/sudovda/code_signing.crt
Normal file
Binary file not shown.
25
src_assets/windows/drivers/sudovda/install.bat
Normal file
25
src_assets/windows/drivers/sudovda/install.bat
Normal file
@@ -0,0 +1,25 @@
|
||||
@echo off
|
||||
|
||||
pushd %~dp0
|
||||
|
||||
echo ================
|
||||
echo Installing cert for the SudoVDA driver...
|
||||
|
||||
certutil -addstore -f root "code_signing.crt"
|
||||
certutil -addstore -f TrustedPublisher "code_signing.crt"
|
||||
|
||||
echo ================
|
||||
echo Removing the old driver... It's OK to show an error if you're installing the driver for the first time.
|
||||
|
||||
nefconc.exe --remove-device-node --hardware-id root\sudomaker\sudovda --class-guid "4D36E968-E325-11CE-BFC1-08002BE10318"
|
||||
|
||||
echo ================
|
||||
echo Installing the new driver...
|
||||
|
||||
nefconc.exe --create-device-node --class-name Display --class-guid "4D36E968-E325-11CE-BFC1-08002BE10318" --hardware-id root\sudomaker\sudovda
|
||||
nefconc.exe --install-driver --inf-path "SudoVDA.inf"
|
||||
|
||||
echo ================
|
||||
echo Done!
|
||||
|
||||
popd
|
||||
BIN
src_assets/windows/drivers/sudovda/sudovda.cat
Normal file
BIN
src_assets/windows/drivers/sudovda/sudovda.cat
Normal file
Binary file not shown.
9
src_assets/windows/drivers/sudovda/uninstall.bat
Normal file
9
src_assets/windows/drivers/sudovda/uninstall.bat
Normal file
@@ -0,0 +1,9 @@
|
||||
@echo off
|
||||
|
||||
pushd %~dp0
|
||||
|
||||
nefconc.exe --remove-device-node --hardware-id root\sudomaker\sudovda --class-guid "4D36E968-E325-11CE-BFC1-08002BE10318"
|
||||
|
||||
popd
|
||||
|
||||
pause
|
||||
Reference in New Issue
Block a user