我想創建一個應用程序,使用TEE對象將變量放入一個文件(minedown.conf),但每次它添加一些東西到它覆蓋它的文件。我正在使用Powershell TEE對象沒有覆蓋文件
$account = Read-Host "Enter your Account SID number"
"account = $account" | Tee-Object -FilePath c:\minedown\minedown.conf
$token = Read-Host "Enter your Authority Token"
"token = $token" | Tee-Object -FilePath c:\minedown\minedown.conf
$from = Read-Host "Enter your Twilio number"
"from - $from" | Tee-Object -FilePath c:\minedown\minedown.conf
我試圖讓每一個單獨的行。
附加內容:參數無法找到匹配的參數名稱「文件路徑」。 在C:\ Users \ Zoey \ Desktop \ Minedown \ test.ps1:25 char:45 +「account = $ account」|附加內容-FilePath <<<<路徑C:\ minedown \ minedown.conf + CategoryInfo:InvalidArgument:(:) [添加-含量],ParameterBindingException + FullyQualifiedErrorId:NamedParameterNotFound,Microsoft.PowerShell.Commands.AddContentCommand –
@zoeycluff正確的參數是'-path'。通過一點努力,你可以使用'get-help add-content -full'來發現它。 –
謝謝@ C.B,我只是複製過去改變CmdLet的名字。 – JPBlanc