This commit is contained in:
hugo meiland 2019-09-17 13:15:48 +02:00
Родитель a83c93f9f1
Коммит a82b78cbea
1 изменённых файлов: 14 добавлений и 0 удалений

Просмотреть файл

@ -103,6 +103,20 @@ fi
status "logging in to $target (via $fqdn)"
vm_os=$(az vm show \
--resource-group $resource_group \
--name $resource_name \
--query storageProfile.osDisk.osType \
--output tsv)
if [ "$vm_os" == "Windows" ]; then
winfqdn=$(az network public-ip show \
--resource-group $resource_group \
--name ${resource_name}pip --query dnsSettings.fqdn \
--output tsv)
exec mstsc.exe /v:$winfqdn
fi
command=
if [ "$#" -gt "0" ]; then