FAKE - F# Make


RegistryHelper

Contains functions which allow to read and write information from/to the registry.

Nested types and modules

TypeDescription
RegistryBaseKey

Registry base keys.

Functions and values

Function or valueDescription
createRegistrySubKey baseKey subKey
Signature: baseKey:RegistryBaseKey -> subKey:string -> unit

create a registry subKey

deleteRegistryValue (...)
Signature: baseKey:RegistryBaseKey -> subKey:string -> keyName:string -> unit

Deletes the registry value from its key

getRegistryKey (...)
Signature: baseKey:RegistryBaseKey -> subKey:string -> writePermission:bool -> RegistryKey

Gets a registy key and falls back to 32 bit if the 64bit key is not there

getRegistryKey64 (...)
Signature: baseKey:RegistryBaseKey -> subKey:string -> writePermission:bool -> RegistryKey

Gets a 64-bit registy key

getRegistryValue baseKey subKey value
Signature: baseKey:RegistryBaseKey -> subKey:string -> value:string -> string

Gets a registy value as string

getRegistryValue64 baseKey subKey value
Signature: baseKey:RegistryBaseKey -> subKey:string -> value:string -> string

Gets a registy value as string

setRegistryValue (...)
Signature: baseKey:RegistryBaseKey -> subKey:string -> keyName:string -> value:'T -> unit
Type parameters: 'T

Sets a registry value

Fork me on GitHub