Nie można uruchomić polecenia Powershell

0

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?

Carltonp
źródło
ipmo D:\modules\setup-azure
PetSerAl
Nie rozumiem.
Carltonp
2
.psm nie jest skryptem do uruchomienia. Jest to moduł do importowania.
PetSerAl
ipmo to alias dla Import-Module. Aby uzyskać więcej informacji, uruchom Get-Help ipmo w PowerShell.
Ƭᴇcʜιᴇ007
1
tak, ale najpierw musisz zaimportować moduł, zanim będziesz mógł używać poleceń tego modułu. Import-Module D:\modules\setup-azure, następnie możesz użyć poleceń modułu konfiguracyjnego-azure
SimonS