Windows 7 システムでWinSCP PowerShell モジュールを使用しようとしています。これは私がやったことです:
- Windows PowerShell バージョン 5.0 をインストールしました。
- インストール済みの Windows Management Framework v5.0
- 管理者として PowerShell を開始
- 実行したコマンド
Set-ExecutionPolicy Unrestricted
- 実行されたコマンド
Install-Module -Name WinSCP
(出力なし)。 Yes
ダウンロードとインストールを求められたときに選択NuGet-anycpu.exe
最後に、 command を実行して健全性チェックを行ったOpen-WinSCPSession
ところ、次のエラーが発生しました。
The term 'Open-WinSCPSession' is not recognized as the name of a cmdlet,
function, script file, or operable program. Check the spelling of the
name, or if a path was included, verify that the path is correct and try
again.
At line:1 char:1
+ Open-WinSCPSession
+ ~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (Open-WinSCPSession:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
これは、モジュールが正しくインストールされなかったことを示しています。私が間違ったことについて何か提案はありますか?