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
Client Popup Disable
-
- Posts: 10
- Joined: Wed Oct 19, 2016 8:09 am
Client Popup Disable
You do not have the required permissions to view the files attached to this post.
-
- Posts: 2458
- Joined: Mon Feb 24, 2014 11:03 am
Re: Client Popup Disable
Please try to edit the code around here.
https://github.com/SoftEtherVPN/SoftEth ... ol.c#L3142
https://github.com/SoftEtherVPN/SoftEth ... ol.c#L3142
-
- Posts: 10
- Joined: Wed Oct 19, 2016 8:09 am
Re: Client Popup Disable
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
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
-
- Posts: 10
- Joined: Wed Oct 19, 2016 8:09 am
Re: Client Popup Disable
@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
)
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
)