Group Policy Report on last group Policy refresh on imapcted machines

Bharath Reddy T.A 1 Reputation point
2020-09-18T09:01:26.083+00:00

We have around 100+ VDI+work stations (Laptops and Desktops).

Some Group Policy impacted on all Workstations and users not able to login after logoff\reboot. A blank/black screen appearing when trying to login. So i need a powershell script which will provide a report, which Group Policy is last refreshed on impacted workstations.

I'm happy if i run this script based on a SCCM collection.

Regards

Reddy6

Active Directory
Active Directory
A set of directory-based technologies included in Windows Server.
6,244 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Ian Xue (Shanghai Wicresoft Co., Ltd.) 34,271 Reputation points Microsoft Vendor
    2020-09-21T06:20:14.387+00:00

    Hi,
    You can only get the time the GPO is modified. Please see if this works for you

    Get-GPO -Domain "YouDomainName" -All | Select-Object -Property DisplayName, ModificationTime | Sort-Object -Property ModificationTime -Descending   
    

    Best Regards,
    Ian

    ============================================

    If the Answer is helpful, please click "Accept Answer" and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments