サポートと今すぐチャット
サポートとのチャット

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

Withdraw approval on an object

Even at the point just before deployment of the object, you can stop the process by withdrawing the previous approval for an object.

Select-WithdrawApproval [-VCData] <VersionControlledData> [[-Comment] <String>] [-PipelineVariable <String>] [-WhatIf] [-Confirm]

$GPO = Get-Item "IE Settings"

Select-WithdrawApproval $GPO

The Get-Item command identifies the object for which to withdraw approval. In this case, IE Settings is the GPO you want to withdraw the approval for because the changes are not correct. The object reverts to the Pending Approval state.

Deploy an object

Once changes have been approved, the next step in the process is to deploy the object to the live environment for use.

Select-Deploy [-VCData] <VersionControlledData> [[-Comment] <String>] [-PipelineVariable <String>] [-WhatIf] [-Confirm]

$GPO = Get-Item "IE Settings"

Select-Deploy $GPO

The Get-Item command identifies the object to deploy. In this case, IE Settings is the GPO to deploy to the live environment.

Deploy an object at a future time and date

Deploying an object to the live environment can also be done at a future time and date.

Select-ScheduledDeploy [-DeploymentTime] <DateTime> [-TimeZoneId] <String> [-VCData] <VersionControlledData> [[-Comment] <String>] [-PipelineVariable <String>] [-WhatIf] [-Confirm]

$item = Get-Item "IE Settings"

Select-ScheduledDeploy -VCData $item -DeploymentTime "11/30/2016 12:00AM" -TimeZoneId "GMT Standard Time" -Comment "Scheduled for Nov 30th, 2016 GMT"

The Get-Item command identifies the object to deploy. In this case, IE Settings is the GPO you want to the live environment at a future time and date.

Check for pending deployments

If you are unsure whether you have any pending deployments, you can use this command to return all pending deployments or just return any deployments related to specific object such as GPOs or WMI Filters.

Get-PendingDeployment [-GPOs] [-ProtectedSettings] [-WMIFilters] [-SOMs] [-OUs] [-Domains] [-Sites] [-Scripts] [-SortBy <SortField>] [-Descending] [-Count] [-PipelineVariable <String>]

Get-PendingDeployment

Returns a list of all of the pending deployments awaiting execution.

Get-PendingDeployment -GPOs

Returns a list of all of the pending GPO deployments awaiting execution.

関連ドキュメント

The document was helpful.

評価を選択

I easily found the information I needed.

評価を選択