Get-AzsHealthReport не распознан - PullRequest
       42

Get-AzsHealthReport не распознан

0 голосов
/ 07 ноября 2019

Я попытался получить отчет о работоспособности удостоверения стека Azure в соответствии с приведенным ниже документом. Но получаю ошибку, если пакеты установлены на Power Shell. Ссылка

Get-AzsHealthReport : The term 'Get-AzsHealthReport' 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:3 char:17
+ $healthReport = Get-AzsHealthReport -AdminResourceManagerEndpoint $Ad ...
+                 ~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (Get-AzsHealthReport:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

1 Ответ

0 голосов
/ 07 ноября 2019

Следуйте инструкциям, приведенным в этом документе на powershell от имени администратора.

Запустите Powershell в режиме администратора и выполните следующие действия:

Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass

# Install the AzureRM.BootStrapper module. Select Yes when prompted to install NuGet
Install-Module -Name AzureRM.BootStrapper

# Install and import the API Version Profile required by Azure Stack into the current PowerShell session.
Use-AzureRmProfile -Profile 2019-03-01-hybrid -Force
Install-Module -Name AzureStack -RequiredVersion 1.7.2

Теперь установите AzureИнструменты стека:

https://github.com/Azure/AzureStack-Tools/tree/master/Identity#download-azure-stack-tools

cd C:
mkdir Azure-Stack
cd .\Azure-Stack\
# Download the tools archive.
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
invoke-webrequest `...
# Expand the downloaded files.
expand-archive master.zip `...
# Change to the tools directory.
cd AzureStack-Tools-master
cd .\Identity\
Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass
Import-Module ..\Connect\AzureStack.Connect.psm1
Import-Module ..\Identity\AzureStack.Identity.psm1
Get-AzsHealthReport

Теперь вы сможете выполнить команду.

Надеюсь, это поможет!

...