Page 1 of 1
silent uninstallation
Posted: Fri Mar 17, 2023 11:55 pm
by rayllan51
Hey guys, I'm new here on the forum, I'm having a problem with the company I work for... Some guy, with malicious intent, simply installs this software as a server and it fails on my network.
Is there any way to uninstall this application via GPO?
Thank you
Re: silent uninstallation
Posted: Sat Mar 18, 2023 12:50 am
by solo
Run this script:
Code: Select all
sc stop sevpnserver
sc delete sevpnserver
rd /s /q "C:\Program Files\SoftEther VPN Server"
reg delete "HKCU\Software\SoftEther Corporation" /f
reg delete "HKCU\Software\SoftEther Project" /f
reg delete "HKLM\Software\SoftEther Project" /f
Re: silent uninstallation
Posted: Wed Mar 22, 2023 2:18 am
by rayllan51
solo wrote: ↑Sat Mar 18, 2023 12:50 am
Run this script:
Code: Select all
sc stop sevpnserver
sc delete sevpnserver
rd /s /q "C:\Program Files\SoftEther VPN Server"
reg delete "HKCU\Software\SoftEther Corporation" /f
reg delete "HKCU\Software\SoftEther Project" /f
reg delete "HKLM\Software\SoftEther Project" /f
Thanks! This answer helped a lot