This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
userspace:winst32_preproc.exe [2019/10/28 14:09] pandel |
userspace:winst32_preproc.exe [2021/08/23 08:37] (current) |
||
---|---|---|---|
Line 216: | Line 216: | ||
<code text> | <code text> | ||
- | if (" | + | if (" |
log currently installed products on client | log currently installed products on client | ||
log current action requests | log current action requests | ||
Line 317: | Line 317: | ||
Local $msg = ' | Local $msg = ' | ||
$msg &= $header & ' v' & $version & ' Command Line' & @CRLF & @CRLF ; Message. | $msg &= $header & ' v' & $version & ' Command Line' & @CRLF & @CRLF ; Message. | ||
- | ConsoleWrite($msg) | ||
; Load ini data | ; Load ini data | ||
Line 325: | Line 324: | ||
; let's have a look at the CmdLine | ; let's have a look at the CmdLine | ||
If $CmdLine[0] = 0 Then | If $CmdLine[0] = 0 Then | ||
- | $msg = "No arguments passed. See -h for help or use -d for a test run. Exiting." | + | $msg &= "No arguments passed. See -h for help or use -d for a test run. Exiting." |
ConsoleWrite($msg) | ConsoleWrite($msg) | ||
Exit 0 | Exit 0 | ||
+ | Else | ||
+ | _debug($msg) | ||
EndIf | EndIf | ||