Erik Whitesides
Erik Whitesides
I'm able to check domain members/domain groups by specifying the runas credential. to create the credential.dat file use: $credentials = get-credential $credentials | export-clixml powershelluser.dat then your DSC config will...
it most likely has to do with the way the group resource module was coded. it probably detects the computer is a member of a domain, and switches to requiring...
output from a similar setting I had set on 'PNRP' feature: Message System.InvalidOperationException: The requested feature PNRP could not be found on the target machine. HResult -2146233087 StackTrack at System.Management.Automation.Runspaces.PipelineBase.Invoke(IEnumerable...
I had to do the following to overcome the issue: #Disabled Features (STIG Requirements) $DisabledFeatures = @( 'Simple-TCPIP' 'Telnet-Client' 'PNRP' 'Web-Ftp-Server' 'Web-Ftp-Service' 'Web-Ftp-Ext' 'TFTP-Client' 'Fax' 'RSAT-Fax' ) Script Remove_Disabled_Features {...
It would be nice if this module could abstract away these categories altogether. These categories are confusing to begin with. As the system admin you're wondering if you are missing...
I added the Optional in with Security,Important in conjunction with MicrosoftUpdate and it installed a lot of the updates I was missing. When comparing against the PSWindowsUpdate module and the...