To mój pierwszy wypad w Powershell. Po uruchomieniu skryptu Powershell pojawia się następujący komunikat o błędzie:
PS D:\modules\setup-azure> Setup-Azure
Setup-Azure : The term 'Setup-Azure' 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
+ Setup-Azure
+ ~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (Setup-Azure:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
PS D:\modules\setup-azure> Setup-Azure.psm
Setup-Azure.psm : The term 'Setup-Azure.psm' 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
+ Setup-Azure.psm
+ ~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (Setup-Azure.psm:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
PS D:\modules\setup-azure>
Czy ktoś może rzucić trochę światła na komunikat o błędzie?
.psm
nie jest skryptem do uruchomienia. Jest to moduł do importowania.
ipmo
to alias dla Import-Module
. Aby uzyskać więcej informacji, uruchom Get-Help ipmo
w PowerShell.
Import-Module D:\modules\setup-azure
, następnie możesz użyć poleceń modułu konfiguracyjnego-azure
ipmo D:\modules\setup-azure