Get-Command: термин «Get-AzStorageBlobContent» не распознается как имя командлета, функции, файла сценария или работоспособной программы. - PullRequest
0 голосов
/ 15 февраля 2019

От мой вопрос об установке Azure Powershell Мне удалось установить Azure Powershell 5.1

Однако, когда я пытаюсь запустить

Get-Command Get-AzStorageBlobContent

, я получаю

Get-Command : The term 'Get-AzStorageBlobContent' 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
+ Get-Command Get-AzStorageBlobContent
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (Get-AzStorageBlobContent:String) [Get-Command], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException,Microsoft.PowerShell.Commands.GetCommandCommand

Я могу видеть команды, перечисленные в правой панели ISE, и я получаю помощь по интеллекту error message

Ссылка 135170 приводит меня сюда

Get-ExecutionPolicy

возврат Ограничен

1 Ответ

0 голосов
/ 15 февраля 2019

Вы можете запустить set-executionpolicy remotesigned как администратор, чтобы исправить проблему.

См .: https://www.faqforge.com/windows/windows-powershell-running-scripts-is-disabled-on-this-system/

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...