Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/canhanhan/grouppolicy.parser

Group Policy Registry.pol Parser
https://github.com/canhanhan/grouppolicy.parser

Last synced: about 1 month ago
JSON representation

Group Policy Registry.pol Parser

Awesome Lists containing this project

README

        

# GroupPolicy.Parser

## Example
```C#
using GroupPolicy.Parser;

var file = new RegistryFile();
file.Open("C:\\backup\\registry.pol");

foreach(var setting in file.Settings)
{
setting.Data = "Test";
}

file.Save();
```

## Reference
### RegistryFile
#### Methods
* Open(string path)
* Item(int index)
* Save()

#### Properties
* int Count
* string Path
* RegistrySetting[] Settings

### RegistrySetting
#### Properties
* string KeyPath
* string Value
* uint Type (RegistryValueType)
* uint Size
* byte[] BinaryData
* object Data