File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
reference/docs-conceptual/samples Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 11---
22description : This article shows how to use WMI classes in PowerShell to manage network configuration setting in Windows.
3- ms.date : 12/08/2022
3+ ms.date : 02/ 12/2025
44title : Performing networking tasks
55---
66# Performing networking tasks
@@ -81,15 +81,15 @@ properties.
8181
8282## Pinging computers
8383
84- You can perform a simple ping against a computer using by ** Win32_PingStatus** . The following
84+ You can perform a simple ping against a computer by using ** Win32_PingStatus** . The following
8585command performs the ping, but returns lengthy output:
8686
8787``` powershell
8888Get-CimInstance -Class Win32_PingStatus -Filter "Address='127.0.0.1'"
8989```
9090
91- A more useful form for summary information a display of the Address, ResponseTime, and StatusCode
92- properties, as generated by the following command . The ** Autosize** parameter of ` Format-Table `
91+ The response from ** Win32_PingStatus ** contains 29 properties. You can use ` Format-Table ` to select
92+ the properties that are most interesting to you . The ** Autosize** parameter of ` Format-Table `
9393resizes the table columns so that they display properly in PowerShell.
9494
9595``` powershell
You can’t perform that action at this time.
0 commit comments