1. ホーム
  2. powershell

[解決済み] Install-Module : 'Install-Module' という用語は、コマンドレット名として認識されません。

2022-03-10 12:25:40

質問

を使用してAzureをインストールしようとしていました。 Install-Module Azure をPowerShellで実行します。以下のようなエラーが発生しました。

PS C:\Windows\system32> Install-Module Azure
Install-Module : The term 'Install-Module' 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 corre
ct and try again.
At line:1 char:1
+ Install-Module Azure
+ ~~~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (Install-Module:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

なぜPSは基本的なインストールモジュールを認識しないのでしょうか?これがないと、Azureのインストールもできません。どうしたらいいでしょうか?

解決方法を教えてください。

PSの下位バージョンを使用しているため。

この場合、まず、モジュールをローカルフォルダにダウンロードします。

そして、その後に .psm1 というファイルを作成し、その下にこのモジュール用の

あなたはただ

import-Module "ファイルのパス.psm1"

Azure Moduleをダウンロードするためのリンクです。 Azure Powershell

これで作業は完了です。