Ok, let's try this approach. Open Submit-CertificateRequest.ps1 file and find the following lines:
foreach ($attrib in $Attribute) {
[Void]$SB.Append($attrib + "\n")
}
and replace "\n" with "`n", so the resulted expression will be:foreach ($attrib in $Attribute) {
[Void]$SB.Append($attrib + "`n")
}
and let me know if it works. I smell a bug here.