Stopping the Azure Application Gateway
I was undertaking some testing within my Azure subscription, I was looking for a way to be able to stop the Azure Application Gateway in order to reduce costs. I ran this within Azure PowerShell but local PowerShell with the AZ modules installed will work too.
#Locate Application Gateway
$ApplicationGateway = Get-AZApplicationGateway -Name "EnterAppGWName" -ResourceGroupName "EnterResourceGroupName"
#To Stop The Application Gateway
Stop-AZApplicationGateway -ApplicationGateway $ApplicationGateway
#To Start The application Gateway again
Start-AZApplicationGateway -ApplicationGateway $ApplicationGateway