Skip to content

TechDirectArchive

Hands-on IT, Cloud, Security & DevOps Insights

  • Home
  • About
  • Advertise With US
  • Reviews
  • Contact
  • Toggle search form
Home » Windows Server » Analyze group policies applied to a user and computer account
  • Windows Storage Sense Enable
    Storage Sense: Manage Storage Drives on Windows Storage
  • Screenshot
    How to configure Synology Active Insights Network | Monitoring
  • Webp.net resizeimage 3 1
    How To Configure VM Update Management on Azure Stack Hub AWS/Azure/OpenShift
  • Downgrade
    Downgrade VMware Workstation: Fix the Processor does not support xsave on VMware Workstation Virtualization
  • veeamONE integration with VBR
    Install Veeam ONE and Add VBR: Fix failed to connect to VBR Backup
  • fdsdsd
    Configuring DHCP Scope: Post-deployment of Dynamic Host Configuration Protocol Windows Server
  • How does key rotation work in MBAM
    How does Key Rotation work in MBAM? Oracle/MSSQL/MySQL
  • Troubleshooting Synology NAS Domain Join 2
    Synology NAS Domain Join: The Importance of DNS Configuration Reviews

Analyze group policies applied to a user and computer account

Posted on 09/02/202016/06/2025 Christian By Christian 2 Comments on Analyze group policies applied to a user and computer account
Group Policy

Group Policy (GP) is a Windows management feature that allows you to control multiple users’ and computers’ configurations within an Active Directory environment. In this article, we shall discuss how to analyze group policies applied to a user and computer account. With GP, all Organizational Units, sites, or domains can be configured from a single and central place. Please see Remote Server Administration Tools: To install RSAT on Windows Server, and what is Group Policy Object and how can it be launched in Windows.

Since group policies are used to preset Windows settings, and determine what user can and can’t do, and if you ever wanted to know what group policies are enabled on your computer, here are a few ways of finding them out.

You may want to see the following articles as well. Why use RSAT? How to Install RSAT on Windows 10, how to resolve this “Thunderbolt” application is not in use anymore and can be safely uninstalled.

Via the Resultant Set of Policy Management Console

This is the easiest way to determine the group policies applied to you. There it is a very powerful built-in command prompt used for auditing group policy settings.

Policy Analysis

Alternatively, search for “run” and type rsop.msc into the run box and then hit enter or – Win + R keyboard combination to bring up a run box, type rsop.msc into the run box and then hit enter. View Post

User Account Policies

When this is run, this will analyze and process the policies applied to you.

Group Policy

After its analysis, it will display the resultant set of Policies applied to you.

Policy Analysis

Now click on each folder. Moreover, Empty folders imply no policies are applied to you. These are currently the only policies applied to my device via the computer configuration.

Computer Account Policies

Please see How to determine GPO from GUID or Name, Handy Shutdown commands available in Windows, and how to ​​​​​Install HTML Web Client for Microsoft RDS.

Via the Command line

Furthermore, It should be noted that you have to specify the scope of the results. However, To find all the policies that are applied to your user account, you would use the following command:

gpresult /Scope User /v
User Account Policies

This will process and display the results as shown below.

Then if you scroll down, you will see the the Resultant Set Of Policies for User section.

If you are looking for all policies applied to your Computer, all you need to do is change the scope:

gpresult /Scope Computer /v

More output

Group Policy

More output – Administrative template

Alternatively, there is a shortcut command that can be applied to get the desired result.

Please see how to Create a web page to visualize the output of BitLocker Script, and How to work with Windows Performance Toolkit.

User Side Policies

To apply all the policies to your user account, simply run the command below from the command prompt.

gpresult /r

Additionally, This will give only the user-side of group policies applied.

Computer Side Policies

Therefore, To get this policy, simply run the command prompt with administrative privilege, this will output policies relating to the computer.

gpresult /r

Note: The command prompt has to be run with administrators rights

GPRrport Command (Output HTML)

Similarly, reading the group policies objects summary data from the command prompt is usually not feasible every time in detail. Nevertheless, Thus, to get it in an easily readable form, we can export the data into the HTML format. Open a Command Prompt and type the following:

cd Desktop 
GPRESULT /H GPReport.html

Specify the GPresult Path

The /H command with the location and filename specifies where the file will be saved. To do this, please run the command below.

gpresult /H <path>
gpresult /H c:\gpresults.html

Group Policy For Specific User

Moreover, This command is used to display the group policies for the specific user or system that lies in the network domain. Nonetheless, To display the specific user policy summary you must be aware of the user’s credentials. The command is as follows:

gpresult /R /USER targetusername /P password

Note: The specified user must have logged on at least once the computer before you can gather the RSoP data.

Get GPResult of Remote Computer

To get the policy result of a user you don’t need access to the computer. Because we can also get the applied policies from a remote computer with the /S parameter. For example, to get the applied policies from the computer TDA01 for user Christian, we can employ the command below.

gpresult /S TDA01 /user christian /R

To run this command in another user context, you will need to specify the /u switch.

gpresult /S TDA01 /u christian /R

To view the computer settings of the user you can also specify the scope. The scope can either be USER or COMPUTER:

gpresult /USER christian /SCOPE Computer /R
gpresult /USER christian /SCOPE USER /R

You can also generate a Group Policy Object (GPO) report for a remote PC, you can use the Get-GPOReport PowerShell cmdlet.

Get-GPOReport -Name "Default Domain Policy" -Server "TDA02" -ReportType Html -Path "C:\GPOReport.html"

All you have to do is replace the "Default Domain Policy" with the name of the GPO you want to report on, and the "RemotePCName "TDA02" with the name of the remote PC, and the -Path with the desired location and name for your report file.

You could also use the comand below. The file that this command produces (gpresult-<computer name>.html) uses the same information format as the local computer version (gpresult.html) uses.

gpresult /S <computer name> /H c:\gpresult-<computer name>.html

Please see “how to Disable Developer Tools in Microsoft Edge using Registry or Group Policy in Windows“, and how to Restrict the number of tabs a user can open in Chrome and Edge.

Export GPResult to HTML

So to make the gpresult data more readable we can export the result to an HTML file. The HTML file is formatted the same as the Settings tab in the Group Policy Management Console.

When you export to HTML you don’t need to specify /R or one of the verbose parameters /Z or /V. It will generate a detailed HTML for you with all the verbose information you need. You do need to specify the path and file name:

gpresult /USER christian /H c:\gpresult.html

Note: If the filename already exists you might get an error. To overwrite the file you can use the /f parameter to force overwriting of the existing file.

Furthermore, I hope you found this blog post on how to analyze group policies applied to a user and computer account helpful. However, If you have any questions, please let me know in the comment session.

5/5 - (1 vote)

Thank you for reading this post. Kindly share it with others.

  • Click to share on X (Opens in new window) X
  • Click to share on Reddit (Opens in new window) Reddit
  • Click to share on LinkedIn (Opens in new window) LinkedIn
  • Click to share on Facebook (Opens in new window) Facebook
  • Click to share on Pinterest (Opens in new window) Pinterest
  • Click to share on Tumblr (Opens in new window) Tumblr
  • Click to share on Telegram (Opens in new window) Telegram
  • Click to share on WhatsApp (Opens in new window) WhatsApp
  • Click to share on Pocket (Opens in new window) Pocket
  • Click to share on Mastodon (Opens in new window) Mastodon
  • Click to share on Bluesky (Opens in new window) Bluesky
  • Click to share on Threads (Opens in new window) Threads
  • Click to share on Nextdoor (Opens in new window) Nextdoor
Windows Server Tags:GPO, GPOs, Group Policy Management Console, Grouppolicy, Windows 10

Post navigation

Previous Post: How to uninstall a program via command prompt in Windows
Next Post: How to use SysInternals Live Tools

Related Posts

  • logon failure and requested session denied
    Logon Failure: User has not been granted the requested logon type Windows
  • IIS8
    How to add an account to the local IIS_IUSRS group Windows Server
  • Extend C drive with additional Software
    Fix unable to Extend Volume on Windows protected by BitLocker Windows
  • File Share in Windows
    Create Folders and Enable File sharing on Windows Windows Server
  • Specifiy the right credential for adding a domain
    Specify user account name when adding a DC to an existing Forest Windows Server
  • article 1280x720.166f8634
    Configure Windows client to obtain IP Address via a DHCP Server Windows Server

More Related Articles

logon failure and requested session denied Logon Failure: User has not been granted the requested logon type Windows
IIS8 How to add an account to the local IIS_IUSRS group Windows Server
Extend C drive with additional Software Fix unable to Extend Volume on Windows protected by BitLocker Windows
File Share in Windows Create Folders and Enable File sharing on Windows Windows Server
Specifiy the right credential for adding a domain Specify user account name when adding a DC to an existing Forest Windows Server
article 1280x720.166f8634 Configure Windows client to obtain IP Address via a DHCP Server Windows Server

Comments (2) on “Analyze group policies applied to a user and computer account”

  1. Avatar photo Ben Lee says:
    08/07/2021 at 5:53 PM

    Great info. One thing I don’t understand that the new server GPO has been applied to the local PC and can be seen from running “rsop.msc” but not from local GOP “gpedit”? just wonder why? Thanks

    Log in to Reply
    1. chris Christian says:
      08/07/2021 at 5:56 PM

      Thank you for the comment! Is your device domain joined?

      Log in to Reply

Leave a Reply Cancel reply

You must be logged in to post a comment.

Microsoft MVP

VEEAMLEGEND

vexpert-badge-stars-5

Virtual Background

GoogleNews

Categories

veeaam100

sysadmin top30a

  • Windows Storage Sense Enable
    Storage Sense: Manage Storage Drives on Windows Storage
  • Screenshot
    How to configure Synology Active Insights Network | Monitoring
  • Webp.net resizeimage 3 1
    How To Configure VM Update Management on Azure Stack Hub AWS/Azure/OpenShift
  • Downgrade
    Downgrade VMware Workstation: Fix the Processor does not support xsave on VMware Workstation Virtualization
  • veeamONE integration with VBR
    Install Veeam ONE and Add VBR: Fix failed to connect to VBR Backup
  • fdsdsd
    Configuring DHCP Scope: Post-deployment of Dynamic Host Configuration Protocol Windows Server
  • How does key rotation work in MBAM
    How does Key Rotation work in MBAM? Oracle/MSSQL/MySQL
  • Troubleshooting Synology NAS Domain Join 2
    Synology NAS Domain Join: The Importance of DNS Configuration Reviews

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 1,836 other subscribers
  • RSS - Posts
  • RSS - Comments
  • About
  • Authors
  • Write for us
  • Advertise with us
  • General Terms and Conditions
  • Privacy policy
  • Feedly
  • Telegram
  • Youtube
  • Facebook
  • Instagram
  • LinkedIn
  • Tumblr
  • Pinterest
  • Twitter
  • mastodon

Tags

Active Directory AWS Azure Bitlocker Microsoft Windows PowerShell WDS Windows 10 Windows 11 Windows Server 2016

Copyright © 2025 TechDirectArchive

 

Loading Comments...
 

You must be logged in to post a comment.