by George Chrysovaladis Grammatikos | May 17, 2017 | Az-Powershell, Azure
You can enable IP Forwarding on an Azure VM (ASM), with the following command. $vmname = “MyVM” $servicename = “MyCloudService” $vm = Get-AzureVM -ServiceName $servicename -Name $vmname Set-AzureIPForwarding -ServiceName $ServiceName -VM $VM...
by George Chrysovaladis Grammatikos | Dec 2, 2015 | Az-Powershell, Azure
Firstly, to be able to run Remote PowerShell commands you will need to create rules on Azure and Windows Firewall that allow access to RM port. Secondly, you must download and install PowerShell And final, execute the following command, Enter-PSSession -ComputerName...