リモートサーバーの特定のフォルダーにあるファイルを削除したい。Powershellで次を実行します。
Invoke-Command -Computer 'compname1' -ScriptBlock {Remove-Item -$args -force } -ArgumentList 'c:\BizTalkDeployment'
次のエラーが発生します。
Cannot find drive. A drive with the name '-c' does not exist.
c:\ BizTalkDeploymentは、サーバーcompname1の正しいパスです。
誰かが私が間違ったことを説明できますか?