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
silent uninstallation
-
- Posts: 1486
- Joined: Sun Feb 14, 2021 10:31 am
Re: silent uninstallation
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
-
- Posts: 2
- Joined: Fri Mar 17, 2023 11:41 pm
Re: silent uninstallation
Thanks! This answer helped a lotsolo wrote: ↑Sat Mar 18, 2023 12:50 amRun 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