GPRegistryPolicy icon indicating copy to clipboard operation
GPRegistryPolicy copied to clipboard

Results 10 GPRegistryPolicy issues
Sort by recently updated
recently updated
newest added

The below keys appear to have some sort of encoding issue when returned from parse-polfile. ![image](https://user-images.githubusercontent.com/28571284/89833180-3e60e880-db26-11ea-8b7d-02267c411535.png) HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate:PauseFeatureUpdatesStartTime HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate:PauseQualityUpdatesStartTime According to [this](https://docs.microsoft.com/en-us/windows/deployment/update/waas-configure-wufb) these keys are a 1/0 value so it's odd...

* Update LICENSE so that Github recognizes it as MIT. * Remove the term All Rights Reserved as Microsoft no longer recommend it. See also: https://github.com/PowerShell/PowerShell/pull/12729

Export New-GPRegistryPolicy in order to create GPRegistryPolicy instances for other cmdlets

Refactor this module to be in line with community standards, such as approved verbs, style guidelines, etc. Work to separate the DSC functionality, currently in this module, into a separate...

enhancement

#### Change the following exported functions to use approved verbs | Old Function Name | New Function Name | |-----------------------|-----------------------| | Create-RegistrySettingsEntry | New-RegistrySettingsEntry | | Create-GPRegistryPolicyFile | New-GPRegistryPolicyFile |...

The heading "Registry Policy DSC Resource" should be "RegistryPolicy DSC Resource" as that is the name.

As of Powershell version 6, reading the contents of a file using `Get-Content -Raw -Encoding Byte` no longer works. `Get-Content -AsByteStream` should be used instead. See https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/get-content?view=powershell-6#parameters

I'm porting a container-hardening script from Nanoserver 1607 to Nanoserver 1803, and discovered that this doesn't install because it depends on Win32Helpers - which when you try to install it...

Hi, This module is also listed as a DSC resource, but it does not provide enough documentation (examples) on how to use it and it does not follow the typical...

From a security point of view, how do I know the file that is being imported is not modified. A filehash check would be a nice addition to this great...