0

This question maybe dump, but how can I query the 'special' event log called 'Microsoft-Windows-GroupPolicy/Operational'?

Get-EventLog -Source "GroupPolicy" -LogName "Microsoft-Windows-GroupPolicy/Operational"

fails and below as well...

Get-EventLog -Source "GroupPolicy" -LogName "Microsoft-Windows-GroupPolicy"
Matthias Güntert
  • 4,013
  • 6
  • 41
  • 89

1 Answers1

4

Sorry for the noise. Figured it out myself, using Get-WinEvent instead did the trick...

Get-WinEvent -LogName "Microsoft-Windows-GroupPolicy/Operational"
Matthias Güntert
  • 4,013
  • 6
  • 41
  • 89