Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

Powershell script dilidir amma cross platform deyil. Windows Powershell ile Powershell eyni deyil.

Windows Powershell kohne versiyadir ve Azure SDK'ni desteklemir.

Powershell ile Azure modulu install etmek: Install-Module -Name Az -Scope CurrentUser -Repository XXX
-Force

Powershell ile Azure versiyalarina baxmaq: Get-Module -Name Az -ListAvailable

Powershell ile Azure accounta qosulmaq: Connect-AzAccount

Bezen Microsoft Azure'da olan update ve duselislere gore virtual masini ayda 1 defe reboot ede biler. Bu
zaman aciq qalan isler ve ya applicationlar fail ola biler. Bunun ucun Available optionsda 3 secim var.

Powershell ile Azure group yaratmaq ucun command: New-AzResourceGroup -Name pwrsgroup -
Location 'EastUs'

Powershell ile Azure virtual machine yaratmaq: New-AzVm -ResourceGroupName 'pwrsgroup' -Location
'EastUS' -Name 'pwrsdemo' -PublicIpAddressName 'myPublicIp' -OpenPort 80,443,3389

Powershell ile github-dan html sayti web app ile qaldirmaq: az webapp up --location eastus --name
xalidoswebappdemo --html

You might also like