-
Hello, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Linux/Macuse
to extracts the script from the stored dmp file e. g. writes the script into a text file WindowsBecause I'm currently have no idea to extract a json key from a command line program (not Powershell) simply use the JSON output of
and extract the text manually from the key "script". |
Beta Was this translation helpful? Give feedback.
Linux/Mac
use
./decode-config.py -s using_script.dmp -g Rules | jq ".script"
to extracts the script from the stored dmp file
using_script.dmp
e. g.
./decode-config.py -s using_script.dmp -g Rules | jq ".script" >myscript.txt
writes the script into a text file
myscript.txt
Windows
Because I'm currently have no idea to extract a json key from a command line program (not Powershell) simply use the JSON output of
decode-config.py -s using_script.dmp -g Rules
and extract the text manually from the key "script".