Page 1 of 1

Client Popup Disable

Posted: Thu Feb 01, 2018 9:05 am
by atasoyk
Hello,
Clients get this attached message. How can we disable this totally? Even when clicking Do not show.. after few weeks it pops up again

The version and Service Pack of Windows on the remote server is "Windows Server 2016".
The latest supported version and Service Pack of Windows by the VPN Server on the destination computer is as follows:
...
...
----- MSG201802 -----

Thanks

Re: Client Popup Disable

Posted: Thu Feb 15, 2018 5:55 am
by thisjun
Please try to edit the code around here.
https://github.com/SoftEtherVPN/SoftEth ... ol.c#L3142

Re: Client Popup Disable

Posted: Thu Feb 15, 2018 6:11 am
by atasoyk
Hello,
Thank you for reply but I can't change source code of an exe file

When I check my clients registry settings I can see they all have the same vaules

reg query "HKEY_CURRENT_USER\Software\SoftEther Project\SoftEther VPN\Common" | findstr "HideMessage"
HideMessage_1165822431 REG_DWORD 0x1
HideMessage_1574560207 REG_DWORD 0x1
HideMessage_2645312008 REG_DWORD 0x1

I will do a batch file for this and it may resolve for a while. It will check what keys are written and values will be changed to 1

Re: Client Popup Disable

Posted: Thu Feb 15, 2018 6:38 am
by atasoyk
@echo off
set hidemsg1=%%i
for /f "tokens=1,2,3,4,5 delims= " %%i in ('reg query "HKEY_CURRENT_USER\Software\SoftEther Project\SoftEther VPN\Common" ^| findstr "HideMessage"') do (
set hidemsg1=%%i
echo %hidemsg1%
reg add "HKEY_CURRENT_USER\Software\SoftEther Project\SoftEther VPN\Common" /v %hidemsg1% /t REG_DWORD /d 1 /f
)