Client Popup Disable

Post your questions about SoftEther VPN software here. Please answer questions if you can afford.
Post Reply
atasoyk
Posts: 10
Joined: Wed Oct 19, 2016 8:09 am
Location: Ankara, Turkey
Contact:

Client Popup Disable

Post by atasoyk » Thu Feb 01, 2018 9:05 am

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
You do not have the required permissions to view the files attached to this post.

thisjun
Posts: 2458
Joined: Mon Feb 24, 2014 11:03 am

Re: Client Popup Disable

Post by thisjun » Thu Feb 15, 2018 5:55 am

Please try to edit the code around here.
https://github.com/SoftEtherVPN/SoftEth ... ol.c#L3142

atasoyk
Posts: 10
Joined: Wed Oct 19, 2016 8:09 am
Location: Ankara, Turkey
Contact:

Re: Client Popup Disable

Post by atasoyk » Thu Feb 15, 2018 6:11 am

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

atasoyk
Posts: 10
Joined: Wed Oct 19, 2016 8:09 am
Location: Ankara, Turkey
Contact:

Re: Client Popup Disable

Post by atasoyk » Thu Feb 15, 2018 6:38 am

@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
)

Post Reply