10 lines
601 B
PowerShell
10 lines
601 B
PowerShell
$tenantId = '2dea0464-da51-4a88-bae2-b3db94bc0c54'
|
|
$AppId = '60244573-7130-4026-9c6d-47de73f8ca29'
|
|
$SecureStringPwd = "sQV8Q~sNLcrDl2RgB32gsSEsDVgdFhNMcBdPoaEX"
|
|
#$zm = Get-Credential -username $AppId, ($SecureStringPwd | ConvertTo-SecureString -AsPlainText -Force)
|
|
|
|
$PSCredential = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $AppId, ($SecureStringPwd | ConvertTo-SecureString -AsPlainText -Force)
|
|
Connect-AzAccount -ServicePrincipal -Credential $PSCredential -Tenant $tenantId
|
|
|
|
# laptop
|
|
Connect-AzAccount -ServicePrincipal -Credential $IaasAutoAzApp -Tenant $tenantId |