i.e. instead of "New CRC" time is displayed, instead of "Item's description" - "New CRC", instead of GUID - the name of the entry in the list of the main application window, etc. "Item info" / "Content history" and "Ping history" tabs are empty.
Remember, as for all command lines, parameters (here: tags) that may contain spaces need to be quoted. If you hover over the two tag labels in the dialog you''ll see which tags may contain spaces.
So, instead of:
Vars.cmd %addr %chk (...)
...use:
Vars.cmd %addr "%chk" (...)
...and it will work correctly.
If you don't, the date (e.g. 2021-08-01 14:55:00) will be two command line parameters and thats why you see %2 and %3 as splitted %chk tag and miss some others (after %9).
👍
1
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Setup application configuration / Signalling / Default command on update:
Vars.cmd %addr %chk %crc %desc %guid %ip %ping %res %resp > Vars.txt
Vars.cmd
Vars.txt:
i.e. instead of "New CRC" time is displayed, instead of "Item's description" - "New CRC", instead of GUID - the name of the entry in the list of the main application window, etc. "Item info" / "Content history" and "Ping history" tabs are empty.
Remember, as for all command lines, parameters (here: tags) that may contain spaces need to be quoted. If you hover over the two tag labels in the dialog you''ll see which tags may contain spaces.
So, instead of:
Vars.cmd %addr %chk (...)
...use:
Vars.cmd %addr "%chk" (...)
...and it will work correctly.
If you don't, the date (e.g. 2021-08-01 14:55:00) will be two command line parameters and thats why you see %2 and %3 as splitted %chk tag and miss some others (after %9).