Skip to content

Commit ce9e366

Browse files
authored
Fix typo and improve wording of example (#11792)
1 parent 0b2e6f8 commit ce9e366

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

reference/docs-conceptual/samples/Performing-Networking-Tasks.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: 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
44
title: 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
8585
command performs the ping, but returns lengthy output:
8686

8787
```powershell
8888
Get-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`
9393
resizes the table columns so that they display properly in PowerShell.
9494

9595
```powershell

0 commit comments

Comments
 (0)