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

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.

Cancel pending deployment

If there is an issue with a pending deployment, you can easily cancel it. .

You need to know the object that is to be deployed

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

$GPO = Get-Item "IE Settings"

Select-CancelDeployment $GPO

The Get-Item command identifies the object for which you want to cancel the deployment. In this case, IE Settings is the GPO you want to cancel the deployment of to the live environment.

Related Documents

The document was helpful.

Select Rating

I easily found the information I needed.

Select Rating