Registry Script File Format |
Previous Top Next |
Notes about strings: Spaces: Strings that contain spaces must be surrounded by "". Strings that contain the character " or %, must escape the character. Escape codes: Character escape codes are represented as #XX where XX is a 2 digit hex number represented the character. Some character that must always be escaped because they have other meanings when not escaped. These charaters include: #0a - newline character (\n) #0d - carriage return (\a) #25 - Percent character (%) #23 - Hash character (#) Macro expansion: Strings containing '%' will be macro-expanded at load-time. For example %InstallPath% expands to the directory where the current running EXE is located. Example strings: this_has_no_spaces "this has spaces" this_#25_has_a_hex_character_expansion %InstallPath%\this_has_a_macro_expansion |