Skip to main content
  • Place orders quickly and easily
  • View orders and track your shipping status
  • Create and access a list of your products
  • Manage your Dell EMC sites, products, and product-level contacts using Company Administration.

PowerShellを使用したWindows Active Directory GPO管理。

Summary: 次の手順では、特定のWindows Active DirectoryドメインにあるGPOのリストを収集するために使用できるPowerShellコマンドの例を示します。 TSDOMAIN。ローカルは以下のコマンドの例であり、GPO情報を収集するドメイン名に置き換える必要があります。

This article may have been automatically translated. If you have any feedback regarding its quality, please let us know using the form at the bottom of this page.

Article Content


Instructions

次の手順では、Windows PowerShellを使用してActive Directory Windowsグループ ポリシー オブジェクトを管理します。
  1. 次のコマンドの例では、指定したドメインで見つかったすべてのGPOを返します。
Get-GPO -All -Domain “TSDOMAIN.local”

 


次のコマンドの例では、検出されたすべてのGPOが返されます。
 
  1. Get-GPOを使用して、特定のGPOの一般的な情報を返すことができます。  次の例では、「Team_WP」GPOの一般的な情報を返します。
Get-GPO -Name Team_WP

 

Get-GPOを使用して、特定のGPOの一般的な情報を返すことができます。
 
  1. GPO情報は、GPOのGUID IDをクエリーすることで返すことができます。次のコマンドの例を示します。
Get-GPO -Guid cb6fe78f-8b4f-4a77-9320-6a087a9d2bcc -Domain “TSDOMAIN.local”


GPO情報は、GPOのGUID IDをクエリーして返すことができます。
  1. 以下のGet-GPOReportコマンドは、見つかったすべてのドメインGPOの包括的なレポートを返し、確認のためにHTML形式で情報をコンパイルします。
Get-GPOReport -All -Domain “TSDOMAIN.Local” -ReportType HTML -Path “C:\GPOReports\GPOReportsAll.html”

 

以下のGet-GPOReportコマンドは、検出されたすべてのドメインGPOの包括的なレポートを返します。
 
  1. Get-GPOReportを実行すると、上記のコマンドで指定したファイル パスにHTMLファイルが作成されます。
HTMLファイルがファイル パスに作成される
 
  1. ファイルを開くと、検出されたすべてのドメインGPOに関する詳細を含むブラウザー ページが表示されます。

開いたときにファイルがブラウザー ページとして表示され、検出されたすべてのドメインGPOに関する詳細が表示されます。
 
 

Additional Information

次のビデオを参照してください。


Article Properties


Affected Product
Software, Dell Quickstart Data Warehouse Appliance, Microsoft Windows Server 2016, Microsoft Windows Server 2019, Microsoft Windows Server 2022, Microsoft Windows Small Business Server 2008, Microsoft Windows Small Business Server 2008 , Microsoft Windows 2008 Server R2, Microsoft Windows 2008 Server Service Pack 2, Microsoft Windows 2012 Server, Microsoft Windows 2012 Server R2, Prosupport for Microsoft Software ...
Product

Microsoft Windows Small Business Server 2011 Essentials

Last Published Date

27 Oct 2023

Version

6

Article Type

How To