All public logs

Combined display of all available logs of Piszczynski. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 14:56, 8 December 2023 Aleks talk contribs created page Azurepowershell (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