(imported topic written by SystemAdmin)
Below if my action statement. I get a fail on on "if {exist C:\Program Files\Windows SteadyState\XML\SoftwareUpdates.old} "
…
extract WindowsSteadyState.tmp
wait “{pathname of system folder & “\msiexec”}” /i “{(pathname of client folder of current site) & “__Download\steadystate.msi”}” /quiet
// Moves SCTSymantecEndpointUpdate.vbs to directory
copy “__Download\SCTSymantecEndpointUpdate.vbs” “{name of drive of windows folder}\Program Files\Windows SteadyState\Scripts\SCTSymantecEndpointUpdate.vbs”
if {exist C:\Program Files\Windows SteadyState\XML\SoftwareUpdates.old}
delete “C:\Program Files\Windows SteadyState\XML\SoftwareUpdates.old”
else
// Renames SoftwareUpdates.XML to SoftwareUpdates.old then copies new SoftwareUpdates.XML to directory
move “{name of drive of windows folder}\Program Files\Windows SteadyState\XML\SoftwareUpdates.XML” “{name of drive of windows folder}\Program Files\Windows SteadyState\XML\SoftwareUpdates.old”
copy “__Download\SoftwareUpdates.XML” “{name of drive of windows folder}\Program Files\Windows SteadyState\XML\SoftwareUpdates.XML”
endif