Get-AzAppServicePlan| select name, status,georegion,kind, NumberOfSites, @{n="Size"; e={($_.sku).size}}, @{n="Nodes"; e={($_.sku).capacity}}, @{n="sku name"; e={($_.sku).tier}}, @{n="Apps"; e={$((Get-AzWebApp -AppServicePlan $_).name)}}
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Source: https://gallery.technet.microsoft.com/Log-Parser-to-Identify-8aac36bd | |
# Authors: Ryan DeVries, Drew Bonasera, Scott Smith | |
# Rochester Institute of Technology - Computer System Forensics | |
# Variables | |
# Reads the hostname, sets to the local hostname if left blank | |
$hostname = read-host "Enter the IP or hostname of the computer you wish to scan (Leave blank for local)" | |
if ($hostname.length -eq 0){$hostname = $env:computername} | |
# Reads the start date, sets to 1/1/2000 if left blank |