Update wcd-admxingestion.md

This commit is contained in:
gkomatsu
2022-05-04 14:04:54 -07:00
committed by GitHub
parent 8352e65e9b
commit 29bc0c3adb

View File

@ -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
```