by George Grammatikos | May 17, 2017 | Az-Powershell, Azure
One important thing you must do for an SMTP Server is to add reverse DNS record on your Cloud Service. To do this, first of all, you must install Azure Powershell, WindowsAzurePowershell. Now, you must execute the following commands in PowerShell: Azure Service... by George Grammatikos | May 17, 2017 | Az-Powershell, Azure
Bellow a script which helps you to create || delete massive endpoints on Azure. {Applies on ASM} #Enter Azure Account Add-AzureAccount #Choose Subscription Select-AzureSubscription -SubscriptionName “MySubscripiton” #Massive EndPoint creation from Port... by George 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 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...