RegistryPreference.WriteDWordValue Method (RegistryHive, String, String, UInt32, PreferenceAction, Int32, Boolean)

 

Writes a Registry preference item that configures a DWord registry value by using the specified 32-bit unsigned integer.

This API is not CLS-compliant.

Namespace:   Microsoft.GroupPolicy
Assembly:  Microsoft.GroupPolicy.Management (in Microsoft.GroupPolicy.Management.dll)

Syntax

[CLSCompliantAttribute(false)]
public void WriteDWordValue(
    RegistryHive hive,
    string keyPath,
    string valueName,
    uint value,
    PreferenceAction action,
    int order,
    bool disable
)
public:
[CLSCompliantAttribute(false)]
void WriteDWordValue(
    RegistryHive hive,
    String^ keyPath,
    String^ valueName,
    unsigned int value,
    PreferenceAction action,
    int order,
    bool disable
)
[<CLSCompliantAttribute(false)>]
member WriteDWordValue : 
        hive:RegistryHive *
        keyPath:string *
        valueName:string *
        value:uint32 *
        action:PreferenceAction *
        order:int *
        disable:bool -> unit
<CLSCompliantAttribute(False)>
Public Sub WriteDWordValue (
    hive As RegistryHive,
    keyPath As String,
    valueName As String,
    value As UInteger,
    action As PreferenceAction,
    order As Integer,
    disable As Boolean
)

Parameters

  • valueName
    Type: System.String

    The name of the registry value. You can specify an empty string (“”) for the default value.

  • value
    Type: System.UInt32

    A 32-bit unsigned integer that contains the value data.

  • order
    Type: System.Int32

    The order for the Registry preference item.

  • disable
    Type: System.Boolean

    true to disable the Registry preference item; otherwise, false.

See Also

WriteDWordValue Overload
RegistryPreference Class
Microsoft.GroupPolicy Namespace

Return to top