הדרכה
אישור
Microsoft Certified: Azure Administrator Associate - Certifications
להדגים מיומנויות עיקריות להגדרה, לניהול, לאבטח ולנהל פונקציות מקצועיות מרכזיות ב- Microsoft Azure.
הדפדפן הזה אינו נתמך עוד.
שדרג ל- Microsoft Edge כדי לנצל את התכונות, עדכוני האבטחה והתמיכה הטכנית העדכניים ביותר.
These samples cover various ways to reset an existing Azure Cloud Service (extended support) deployment.
$roleInstances = @("ContosoFrontEnd_IN_0", "ContosoBackEnd_IN_1")
Invoke-AzCloudServiceReimage -ResourceGroupName "ContosOrg" -CloudServiceName "ContosoCS" -RoleInstance $roleInstances
This command reimages two role instances ContosoFrontEnd_IN_0 and ContosoBackEnd_IN_1 of cloud service named ContosoCS that belongs to the resource group named ContosOrg.
Invoke-AzCloudServiceReimage -ResourceGroupName "ContosOrg" -CloudServiceName "ContosoCS" -RoleInstance "*"
This command reimages all role instances of cloud service named ContosoCS that belongs to the resource group named ContosOrg.
Invoke-AzCloudServiceRoleInstanceReimage -ResourceGroupName "ContosOrg" -CloudServiceName "ContosoCS" -RoleInstanceName "ContosoFrontEnd_IN_0"
This command reimages role instance named ContosoFrontEnd_IN_0 of cloud service named ContosoCS that belongs to the resource group named ContosOrg.
$roleInstances = @("ContosoFrontEnd_IN_0", "ContosoBackEnd_IN_1")
Invoke-AzCloudServiceRebuild -ResourceGroupName "ContosOrg" -CloudServiceName "ContosoCS" -RoleInstance $roleInstances
This command rebuilds two role instances ContosoFrontEnd_IN_0 and ContosoBackEnd_IN_1 of cloud service named ContosoCS that belongs to the resource group named ContosOrg.
Invoke-AzCloudServiceRebuild -ResourceGroupName "ContosOrg" -CloudServiceName "ContosoCS" -RoleInstance "*"
This command rebuilds all role instances of cloud service named ContosoCS that belongs to the resource group named ContosOrg.
$roleInstances = @("ContosoFrontEnd_IN_0", "ContosoBackEnd_IN_1")
Restart-AzCloudService -ResourceGroupName "ContosOrg" -CloudServiceName "ContosoCS" -RoleInstance $roleInstances
This command restarts two role instances ContosoFrontEnd_IN_0 and ContosoBackEnd_IN_1 of cloud service named ContosoCS that belongs to the resource group named ContosOrg.
Restart-AzCloudService -ResourceGroupName "ContosOrg" -CloudServiceName "ContosoCS" -RoleInstance "*"
This command restarts all role instances of cloud service named ContosoCS that belongs to the resource group named ContosOrg.
הדרכה
אישור
Microsoft Certified: Azure Administrator Associate - Certifications
להדגים מיומנויות עיקריות להגדרה, לניהול, לאבטח ולנהל פונקציות מקצועיות מרכזיות ב- Microsoft Azure.
תיעוד
Retrieve Azure Cloud Service (extended support) detail via PowerShell - Cloud Services
Describes how to get the Azure Cloud Service (extended support) configuration data via PowerShell and REST API.
Generate ARM Template for Cloud Services (extended support) using the Azure portal
Generate and download ARM Template and parameter file for Cloud Services (extended support) using the Azure portal