From e156ef9a24ec0ec5a39e8652aa99eace459d02b0 Mon Sep 17 00:00:00 2001 From: Przemyslaw Klys Date: Sat, 6 Jul 2024 08:40:11 +0200 Subject: [PATCH] Small improvements to docs --- Public/New-GPOZaurrWMi.ps1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Public/New-GPOZaurrWMi.ps1 b/Public/New-GPOZaurrWMi.ps1 index 8baa307..70fddfa 100644 --- a/Public/New-GPOZaurrWMi.ps1 +++ b/Public/New-GPOZaurrWMi.ps1 @@ -37,12 +37,12 @@ Additional information about the forest for GPO customization. .EXAMPLE - New-GPOZaurrWMI -Name "TestGPO" -Query "SELECT * FROM Win32_OperatingSystem" -Force - Creates a new GPO named "TestGPO" with a WMI filter query targeting all Windows operating systems. + New-GPOZaurrWMI -Name "TestWMIFilter1" -Query "SELECT * FROM Win32_OperatingSystem" -Force + Creates a new WMI filter named "TestWMIFilter1" targeting all Windows operating systems. .EXAMPLE - New-GPOZaurrWMI -Name "FinanceGPO" -Query "SELECT * FROM Win32_Processor" -Forest "Contoso" -IncludeDomains "FinanceDomain" - Creates a new GPO named "FinanceGPO" with a WMI filter query targeting all processors in the "FinanceDomain" within the "Contoso" forest. + New-GPOZaurrWMI -Name "TestWMIFilter2" -Query "SELECT * FROM Win32_Processor" -Forest "Contoso" -IncludeDomains "FinanceDomain" + Creates a new WMI filter named "TestWMIFilter2" targeting all processors in the "FinanceDomain" within the "Contoso" forest. #> [cmdletBinding(SupportsShouldProcess)]