3

我有一个脚本,可将 OMS 扩展安装到订阅中的所有 ARM VM。问题是我有仅包含 ARM VM 的订阅、仅包含经典 VM 的订阅以及同时具有这两种类型的 VM 的订阅。如何修改脚本以在所有条件下工作?脚本是:

#This script installs OMS Monitoring Agent to all VMs in the selected Subscription.
#Before running this script, the user must login to Azure account and select target subscription.
#Example:
#Login-AzureRmAccount
#Select-AzureRmSubscription 'SubscriptionName'

$WorkspaceID = 'Provide Workspace ID here'
$WorkspaceKey = 'Provide Workspace key here'
$VMs = Get-AzureRmVM

$VMs.where({$_.osprofile.windowsconfiguration}) | ForEach-Object {
    "Installing Microsoft.EnterpriseCloud.Monitoring.MicrosoftMonitoringAgent Extension: {0}" -f $_.id
    Set-AzureRmVMExtension -ResourceGroupName $_.ResourceGroupName -VMName $_.Name -Name omsAgent -Publisher 'Microsoft.EnterpriseCloud.Monitoring' `
    -ExtensionType 'MicrosoftMonitoringAgent' -AsJob -TypeHandlerVersion '1.0' -Location $_.Location -ForceRerun 'yesh' `
    -SettingString ( "{'workspaceId': '$WorkspaceID'}") `
    -ProtectedSettingString "{'workspaceKey': '$WorkspaceKey'}" | 
    Add-Member -Name VM -Value $_.Id -MemberType NoteProperty
}
4

1 回答 1

1

由于您同时拥有经典虚拟机和 ARM 虚拟机,因此您拥有两种不同的部署模型,因此您使用的是两种不同的 PowerShell 模块。

换句话说,您需要为每个单独登录并拥有单独的脚本来使用它们。

在经典模型中,您需要运行以下 cmdlet 来登录和访问您的 VM:

Add-AzureAccount
Get-AzureVM | Set-AzureVMExtension `` 
    -Publisher 'Microsoft.EnterpriseCloud.Monitoring' `` 
    -ExtensionName 'MicrosoftMonitoringAgent' `` 
    -Version '1.*' `` 
    -PublicConfiguration "<workspace id>" `` 
    -PrivateConfiguration "<workspace key>" `` 

在搜索信息时,我发现了这个脚本。它是一个脚本,用于使用两种部署模型从单个或多个订阅中载入 VM。

于 2018-03-25T09:20:18.147 回答