Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/canhanhan/grouppolicy.parser
- Owner: canhanhan
- Created: 2013-08-27T11:41:13.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-04-13T14:58:44.000Z (over 10 years ago)
- Last Synced: 2023-10-21T11:19:05.469Z (about 1 year ago)
- Language: C#
- Homepage:
- Size: 137 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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