View Single Post
  #4  
Old 04-01-2004, 07:36 AM
kinook kinook is online now
Administrator
 
Join Date: 03-06-2001
Location: Colorado
Posts: 6,003
To selectively disable logging of the default action (or modify which property is logged) for an action type (for instance, for the Run Script action), remove or edit the registry entry HKEY_LOCAL_MACHINE\SOFTWARE\Kinook Software\Visual Build Professional\Actions\<action name>\DefaultProperty. You can use the Write Registry action to do it:

<step action='Write Registry' type='0'>
<DeleteValue type='11'>-1</DeleteValue>
<RootKey type='3'>-2147483646</RootKey>
<SubKey>SOFTWARE\Kinook Software\Visual Build Professional\Actions\Run Script</SubKey>
<ValueName>DefaultProperty</ValueName>
<ValueType type='3'>1</ValueType>
<indent type='3'>1</indent>
<name>disable logging of Script</name>
</step>
Reply With Quote