Chat now with support
Chat with Support

GPOADmin 5.17 - User Guide

Introducing Quest GPOADmin Configuring GPOADmin Using GPOADmin
Connecting to the Version Control system Navigating the GPOADmin console Search folders Accessing the GPMC extension Configuring user preferences Working with the live environment Working with controlled objects (version control root)
Creating a custom container hierarchy Selecting security, levels of approval, and notification options Viewing the differences between objects Copying/pasting objects Proposing the creation of controlled objects Merging GPOs Restoring an object to a previous version Restoring links to a previous version Managing your links with search and replace Linking GPOs to multiple Scopes of Management Managing compliance issues automatically with remediation rules Validating GPOs Managing GPO revisions with lineage Setting when users can modify objects Working with registered objects Working with available objects Working with checked out objects Working with objects pending approval and deployment
Checking compliance Editing objects Synchronizing GPOs Exporting and importing
Creating Reports Appendix: Windows PowerShell Commands Appendix: GPOADmin Event Log Appendix: GPOADmin Backup and Recovery Procedures Appendix: Customizing your workflow Appendix: GPOADmin Silent Installation Commands Appendix: Configuring Gmail for Notifications Appendix: Registering GPOADmin for Office 365 Exchange Online Appendix: GPOADmin with SQL Replication About Us

Identify user accounts

Gets the list of available s for the logged on user.

Get-s [-PipelineVariable <String>]

Get-s

Gets the list of available s.

Identify user roles

Gets a list of the currently defined roles within GPOADmin. There are three default roles which cannot be changed.

Get-Roles [-PipelineVariable <String>]

Get-Roles

Gets a list of all the currently defined roles within GPOADmin.

Modify a role

Modifies the properties of the specified user-defined role. The three default roles, System Administrator, Moderator and User cannot be changed.

Set-Role [-Role] <RoleData> [[-DisplayName] <String>] [[-Description] <String>] [[-s] <[]>] [-PipelineVariable <String>] [-WhatIf] [-Confirm]

$roles = Get-Roles

Set-Role -Role $roles[3] -DisplayName Linkers

The Get-Roles stores the roles into an array. The Set-Role command updates the display name of the role in role[3] to Linkers. The array counts from zero and not from one. The first role is zero, the second is one.

 

$roles = Get-Roles

Set-Role -Role $roles[3] -Description "Users of this role can link Group Policy Objects to Scopes of Management"

Updates the description of the role "Linkers".

 

$roles = Get-Roles

Set-Role -Role $roles[3] -s "Read, Link"

Updates the s of the role "Linkers".

Add a role

Adds a role to GPOADmin with the specified name, description, and s. Only a GPOADmin administrator can run this command.

Add-Role [-Name] <String> [[-Description] <String>] [-s] <String[]> [-PipelineVariable <String>] [-WhatIf] [-Confirm]

$s = "BlockInheritance", "Link"

Add-Role "Linker" "Can link GPOs to SOMs" $s

This first creates an array of s. You can use the Get-s command to retrieve a list of available s. Next the Linker role is defined, created, and the s are applied.

 

Add-Role -Name "Register Role" -Description "Can register objects" -s "Register", "Unregister"

List of s can be added in-line instead of using a variable.

Related Documents

The document was helpful.

Select Rating

I easily found the information I needed.

Select Rating