online kscripts and dword = sz?
Hi,
Trying to add the following dword via kscript:
[HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Outlook\Options\Calendar]
"EnableDirectBooking"=dword:00000001
(Source - http://support.microsoft.com/kb/982774)
Kscript:
Verify
1. Verify that “HKCU\Software\Microsoft\Office\14.0†exists
On Success
1 . Set “HKCU\Software\Microsoft\Office\14.0\Outlook\Options\Calendar!EnableDirectBooking†to “0x00000001â€Â.
But for some reason the dword outputs as REG_SZ?
Tried to mix n match, different reg type, remove the hex and just use "1" but still comes up as SZ but still comes out as SZ.
Couldn't find much information regarding dword and kscript unless i was looking up the wrong keywords.
Might be something simple I have missed but any help would be appricated.
Cheers
Trying to add the following dword via kscript:
[HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Outlook\Options\Calendar]
"EnableDirectBooking"=dword:00000001
(Source - http://support.microsoft.com/kb/982774)
Kscript:
Verify
1. Verify that “HKCU\Software\Microsoft\Office\14.0†exists
On Success
1 . Set “HKCU\Software\Microsoft\Office\14.0\Outlook\Options\Calendar!EnableDirectBooking†to “0x00000001â€Â.
But for some reason the dword outputs as REG_SZ?
Tried to mix n match, different reg type, remove the hex and just use "1" but still comes up as SZ but still comes out as SZ.
Couldn't find much information regarding dword and kscript unless i was looking up the wrong keywords.
Might be something simple I have missed but any help would be appricated.
Cheers
0 Comments
[ + ] Show comments
Answers (1)
Please log in to answer
Posted by:
WWE
12 years ago
Same problem over here,
Aktuelle Version: 5.3.47927
<?xml version="1.0" encoding="utf-8" ?>
<kbots xmlns="http://kace.com/Kbots.xsd">
<kbot>
<config name="IPv6 Deaktivieren Windows 7" type="" id="104" version="1330434103" description="Skript zur Deaktivierung von IPv6 bei Windows 7">
<execute disconnected="true" logged_off="true">
</execute>
</config>
<compliance>
<verify on_failure="break" attempts="2">
<registry_value_is key="HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\TCPIP6\Parameters" name="DisabledComponents" expectedValue="ff" />
<on_verify_success>
</on_verify_success>
<on_verify_failure>
<set_registry_value key="HKLM\SYSTEM\CurrentControlSet\services\TCPIP6\Parameters" name="DisabledComponents" type="REG_DWORD" newValue="ff" />
<on_remediation_success>
</on_remediation_success>
<on_remediation_failure>
</on_remediation_failure>
</on_verify_failure>
</verify>
</compliance>
</kbot>
</kbots>
Regards Raphaël
Aktuelle Version: 5.3.47927
<?xml version="1.0" encoding="utf-8" ?>
<kbots xmlns="http://kace.com/Kbots.xsd">
<kbot>
<config name="IPv6 Deaktivieren Windows 7" type="" id="104" version="1330434103" description="Skript zur Deaktivierung von IPv6 bei Windows 7">
<execute disconnected="true" logged_off="true">
</execute>
</config>
<compliance>
<verify on_failure="break" attempts="2">
<registry_value_is key="HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\TCPIP6\Parameters" name="DisabledComponents" expectedValue="ff" />
<on_verify_success>
</on_verify_success>
<on_verify_failure>
<set_registry_value key="HKLM\SYSTEM\CurrentControlSet\services\TCPIP6\Parameters" name="DisabledComponents" type="REG_DWORD" newValue="ff" />
<on_remediation_success>
</on_remediation_success>
<on_remediation_failure>
</on_remediation_failure>
</on_verify_failure>
</verify>
</compliance>
</kbot>
</kbots>
Regards Raphaël
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.