지금 지원 담당자와 채팅
지원 담당자와 채팅

GPOADmin 5.19 - 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 the change window for specific actions 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

Set the approval workflow

Sets the approval workflow for the specified container.

Set-ApprovalWorkflow [-Path] <String> [-Action] <ActionType[]> [[-ApprovalWorkflow] <String>] [-PipelineVariable <String>] [-WhatIf] [-Confirm]

Set-ApprovalWorkflow VCRoot:\IE_Settings Create "AMER\CreateReviewers,1|AMER\CreateApprover,0"

Sets the create approval workflow for the IE_Settings container. The group AMER\CreateReviewers requires one approver and the group AMER\CreateApprover requires no approvers.

 

Set-ApprovalWorkflow -Path "VCRoot:\IE_Settings" -Action "Create", "Delete", "Edit" -ApprovalWorkflow "AMER\CreateReviewers,1|AMER\CreateApprover,0"

Sets the create, delete, and edit approval workflow for the IE_Settings container. The group AMER\CreateReviewers requires one approver and the group AMER\CreateApprover requires no approvers.

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".

관련 문서

The document was helpful.

평가 결과 선택

I easily found the information I needed.

평가 결과 선택