Created
May 23, 2018 13:26
-
-
Save galabadi/33f1901fbdc96bb74eeb1ceedcf90e20 to your computer and use it in GitHub Desktop.
CryptoWorm remover script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-WmiObject CommandLineEventConsumer -namespace root\subscription | Where-Object {$_.Name -match ('SCM Event Consumer')} | Select-Object -first 1 | Remove-WmiObject | |
Get-WmiObject __EventFilter -namespace root\subscription | Where-Object {$_.Name -match ('SCM Event Filter')} | Select-Object -first 1 | Remove-WmiObject | |
netsh.exe ipsec static delete policy name=netbc | |
netsh.exe ipsec static delete filteraction name=block | |
netsh.exe ipsec static delete filterlist name=block |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment