Automatic Backups Using DriveImage XML Failing

(imported topic written by boostaz191)

Here is my action:

run “C:\helpdesk\dixml\dixml.exe /bc /s /c /v /t:” value “Value” of key “HKEY_LOCAL_MACHINE\SOFTWARE\BigFix\EnterpriseClient\settings\Client\Backup Location” of registry" “string value of select(“Name from Win32_ComputerSystem”) of wmi”

Here is the command line i expect it to run:

run “C:\helpdesk\dixml\dixml.exe /bc /s /c /v /t:” “\servername\sharename\computername”

All i get is a failed status.

has anyone tried this before?

(imported comment written by jessewk)

Hi Boostaz1,

If you want part of your action script to be interpreted as relevance, you need to signal that by enclosing any relevance in curly braces {}.

Try this:

run “C:\helpdesk\dixml\dixml.exe /bc /s /c /v /t:” “{value “Value” of key “HKEY_LOCAL_MACHINE\SOFTWARE\BigFix\EnterpriseClient\settings\Client\Backup Location” of registry}{computer name}”

Jesse