powershell Azure:检查VM代理运行状况

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell Azure:检查VM代理运行状况相关的知识,希望对你有一定的参考价值。

param (
		# Define Parameters
    	[parameter(Mandatory=$true)]
        [string]$sub,

        [parameter(Mandatory=$true)]
        [string]$vm,

        [parameter(Mandatory=$true)]
        [string]$service
        )

Select-AzureSubscription -SubscriptionName $sub

#Check the communication status of the Agent
(Get-AzureVM -ServiceName $service -Name $vm).GuestAgentStatus | Format-List GuestAgentVersion,Status

#Update Agent config to allow connections
Get-AzureVM -ServiceName $service -Name $sub | Set-AzureVMAccessExtension | Update-AzureVM

以上是关于powershell Azure:检查VM代理运行状况的主要内容,如果未能解决你的问题,请参考以下文章

从 Azure DevOps 管道启动适用于 VS 2019 的开发人员 PowerShell

powershell 我的Azure VM powershell模块用于管理VM

powershell 使用powershell创建用于测试SQL的Azure VM

在现有且正在运行的 Azure DevOps 代理池中更改目标 VM ScaleSet?

如何使用 Azure 中的所需状态配置 (DSC) 进行 Windows VM 的代理设置?

powershell 调整Azure VM磁盘的大小。