Azurepowershell: Revision history

From Piszczynski

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

8 December 2023

  • curprev 16:4516:45, 8 December 2023Aleks talk contribs 890 bytes +396 No edit summary Tag: Visual edit
  • curprev 14:5614:56, 8 December 2023Aleks talk contribs 494 bytes +494 Created page with "== Get Info on Function Apps == Commands to find info on vnet usage of function apps: Get the function apps:<syntaxhighlight lang="powershell"> $functionApps = Get-AzFunctionApp -ResourceGroupName $resourceGroupName -Name $functionAppName </syntaxhighlight>go through each app to display the vnet and subnet it is attached to using the siteconfig info:<syntaxhighlight lang="powershell"> foreach($app in $functionApps){write-host "$($app.siteconfig.vnetname) $($app.name)"}..." Tag: Visual edit