Last active
May 15, 2017 22:13
-
-
Save MHaggis/e479843a41a6390e3984558acab65e99 to your computer and use it in GitHub Desktop.
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
{ | |
"wmic": { | |
"process_name": ["wmic.exe"], | |
"cmdline": ["wmic shadowcopy delete"] | |
}, | |
"Vssadmin": { | |
"process_name": ["vssadmin.exe"], | |
"cmdline": ["vssadmin delete shadows /all /quiet"] | |
}, | |
"bcdedit": { | |
"process_name": ["bcdedit.exe"], | |
"cmdline": ["bcdedit /set {default} bootstatuspolicy ignoreallfailures", | |
"bcdedit /set {default} recoveryenabled no"] | |
}, | |
"wbadmin": { | |
"process_name": ["wbadmin.exe"], | |
"cmdline": ["wbadmin delete catalog -quiet"] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment