- Building Hybrid Clouds with Azure Stack
- Markus Klein Susan Roesner
- 154字
- 2021-07-02 19:36:04
PowerShell commandlets
The second way to communicate with Azure Stack is PowerShell. With the wide range of PowerShell commandlets (cmdlets), everything is possible. From the administration point of view, it is always the better choice to use PowerShell, because it is reusable and redoable, and each script is a documentation itself.
The steps to enable PowerShell are as follows:
- Enter the following command to check for installed PowerShell modules:
Get-PSRepository

- Install the AzureRM module:
Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201
-Force

- Verify the installation status:
Get-Command -Module AzureRM.AzureStackAdmin
- Now you can start over with AzureRM PowerShell commands. Connecting to Azure Stack using PowerShell should look like this:
$AADUserName='YourAADAccount@Yourdomain' $AADPassword='YourAADPassword'|ConvertTo-SecureString -Force
-AsPlainText $AADCredential=New-Object PSCredential($AADUserName,$AADPassword) $AADTenantID = "YourAADDomain" Add-AzureRmEnvironment -Name "Azure Stack" ` -ActiveDirectoryEndpoint
("https://login.windows.net/$AADTenantID/") ` -ActiveDirectoryServiceEndpointResourceId
"https://azurestack.local-api/" ` -ResourceManagerEndpoint ("https://api.azurestack.local/") ` -GalleryEndpoint ("https://gallery.azurestack.local:30016/") ` -GraphEndpoint "https://graph.windows.net/" $env = Get-AzureRmEnvironment 'Azure Stack' Add-AzureRmAccount -Environment $env -Credential $AADCredential
- Verbose Get-AzureRmSubscription -SubscriptionName "youroffer" |
Select-AzureRmSubscription Get-AzureRmResource
Simple, isn't it?
推薦閱讀
- Reporting with Visual Studio and Crystal Reports
- Android項目開發(fā)入門教程
- 深入淺出Electron:原理、工程與實踐
- 跟老齊學Python:輕松入門
- Spring Cloud、Nginx高并發(fā)核心編程
- 薛定宇教授大講堂(卷Ⅳ):MATLAB最優(yōu)化計算
- Building Mobile Applications Using Kendo UI Mobile and ASP.NET Web API
- 自制編程語言
- 編程數(shù)學
- 零基礎輕松學SQL Server 2016
- Unity 2018 Shaders and Effects Cookbook
- Android應用開發(fā)深入學習實錄
- 從Excel到Python數(shù)據(jù)分析:Pandas、xlwings、openpyxl、Matplotlib的交互與應用
- 嵌入式Linux C語言程序設計基礎教程
- Building Business Websites with Squarespace 7(Second Edition)