
If i unckeck that bridge thing, the next button will disable - so the "Remote Access VPN Server" is not installed by default and also not installable (disabled)
Why? And how to solve that?
Thank you very very much for your feedback(s).
Code: Select all
Show-GUI-Wizard.bat
-------------------
@echo off
net stop "SoftEther VPN Server"
del /f /q "C:\Program Files\SoftEther VPN Server\vpn_server.config"
rd /s /q "C:\Program Files\SoftEther VPN Server\backup.vpn_server.config"
reg delete "HKCU\Software\SoftEther Corporation\PacketiX VPN\Server Manager\Settings" /v Setting1 /f
net start "SoftEther VPN Server"
pause
Code: Select all
Show-GUI-Wizard-BEFORE-it-is-installed.bat
------------------------------------------
@echo off
rem net stop "SoftEther VPN Server"
del /f /q "C:\Program Files\SoftEther VPN Server\vpn_server.config"
rd /s /q "C:\Program Files\SoftEther VPN Server\backup.vpn_server.config"
reg delete "HKCU\Software\SoftEther Corporation\PacketiX VPN\Server Manager\Settings" /v Setting1 /f
rem net start "SoftEther VPN Server"
pause