From 29bc0c3adb980764c3e78e9a1dc62e980785dcb7 Mon Sep 17 00:00:00 2001 From: gkomatsu Date: Wed, 4 May 2022 14:04:54 -0700 Subject: [PATCH] Update wcd-admxingestion.md --- windows/configuration/wcd/wcd-admxingestion.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/configuration/wcd/wcd-admxingestion.md b/windows/configuration/wcd/wcd-admxingestion.md index 6d9dea362e..6c58c424b0 100644 --- a/windows/configuration/wcd/wcd-admxingestion.md +++ b/windows/configuration/wcd/wcd-admxingestion.md @@ -148,7 +148,7 @@ Use the following PowerShell cmdlet to remove carriage returns and line feeds fr ```PS $outputFile = "output.admx" -$inputFile = "input.admx +$inputFile = "input.admx" (Get-Content $inputFile -Raw).Replace("`r`n","") | Set-Content $outputFile -Force ```