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의 GUID ID를 쿼리하여 GPO 정보를 반환할 수 있습니다.
  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