0
我們有一個PowerShell腳本,它在Microsoft Exchange和Active Directory中創建一個用戶。獲取UTF8的PowerShell腳本?
我們通過獲取用戶的數據preformated TXT其作爲排序CSV與:
$data = import-csv signup.txt
但問題是,因爲我們是從西班牙,有時出現這不是性格ñ
由腳本拾取並生成錯誤的用戶名和錯誤的數據。所以,我們把它放在N中,然後進入Exchange,然後我們再從那裏改變它。
我該如何解決這個問題?
實驗用'$ csvdata =獲取內容-encoding窗口-1250 signup.txt'等。 – grawity
Get-Content:無法綁定參數'Encoding'。無法將值「windows-1 250」轉換爲鍵入「Microsoft.PowerShell.Commands.FileSystemCmdletProviderEncoding」d ue以導致無效的枚舉值。這不起作用 –
Get-Content允許這些編碼「未知,字符串,Unicode,字節,BigEndianUnicode,UTF8,UTF7,Ascii」 – Tom