Skip to content

CliCompiler how to decrypt folder

Viktor Chernev edited this page Nov 11, 2024 · 4 revisions

decrypt-folder

DescribeCompilerCLI decrypt-folder "C:\parse\path\encrypted\" "C:\result\path\plain\"
password="qwerty123" auto

decrypt-folder ENCRYPTED_PATH PLAIN_PATH password=PASSWORD [ auto ][ theme=<verb> ]

The decrypt-folder command is used to decrypt a folder full of encrypted Describe source files '.denc' to a folder of plaintext describe source files - '.ds'. First we specify the command, followed by the folder to be decrypted and the output folder path. Any arguments after these are optional. (Input and Output paths cannot be the same)

  • password
    The password that will be used to decrypt the files.

  • auto
    The auto flag specifies that the tool is being invoked from a script or a tool. Essentially it removes stuff like changing console colors and prompts like Press any key to exit., as those can break or complicate automated scripts and tools.

  • theme
    The CLI Transpiler now supports different color themes, via this argument. Expected values are: DBLUE, LBLUE, GREEN, PASTEL, EARTH, CONTRAST, DEFAULT, VIOLET and CYAN. You can see those themes demonstrated here.

Links

Back

Clone this wiki locally