Azure commands
Get-NetFirewallProfile | Format-Table Name, Enabled
This is a PowerShell command that retrieves information about the firewall profiles on a Windows operating system and formats the output as a table with two columns: "Name" and "Enabled." The "Name" column displays the names of the firewall profiles (e.g. Domain, Public, Private) and the "Enabled" column displays the status of the firewall for each profile (either "True" or "False"). The command "Get-NetFirewallProfile" retrieves the information and "Format-Table" formats the output into a table.
Comments
Post a Comment