Skip to content

Commit 1827b05

Browse files
sdwheelerCopilotmichaeltlombardi
authored
Apply suggestions from code review
Co-authored-by: Copilot <[email protected]> Co-authored-by: Mikey Lombardi (He/Him) <[email protected]>
1 parent 112f020 commit 1827b05

6 files changed

Lines changed: 10 additions & 9 deletions

File tree

reference/7.4/Microsoft.PowerShell.Management/Get-Service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ This cmdlet is only available on Windows platforms.
340340

341341
PowerShell 6.0 introduced the following changes:
342342

343-
- The **ServiceController** objects now includes the following properties:
343+
- The **ServiceController** objects now include the following properties:
344344
- **UserName**
345345
- **Description**
346346
- **DelayedAutoStart**

reference/7.5/Microsoft.PowerShell.Management/Get-Service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ This cmdlet is only available on Windows platforms.
340340

341341
PowerShell 6.0 introduced the following changes:
342342

343-
- The **ServiceController** objects now includes the following properties:
343+
- The **ServiceController** objects now include the following properties:
344344
- **UserName**
345345
- **Description**
346346
- **DelayedAutoStart**

reference/7.6/Microsoft.PowerShell.Management/Get-Service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ This cmdlet is only available on Windows platforms.
340340

341341
PowerShell 6.0 introduced the following changes:
342342

343-
- The **ServiceController** objects now includes the following properties:
343+
- The **ServiceController** objects now include the following properties:
344344
- **UserName**
345345
- **Description**
346346
- **DelayedAutoStart**

reference/7.6/Microsoft.PowerShell.Management/Start-Service.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -305,8 +305,8 @@ This cmdlet is only available on Windows platforms.
305305
work to do. When PowerShell starts a service that stops itself almost immediately, it displays the
306306
following message: `Service \<display-name\> start failed.`
307307

308-
Beginning in PowerShell 6.0, the command no longer includes the **ComputerName** parameter. To use
309-
this command on a remote computer, use the `Invoke-Command` to target a remote system.
308+
Beginning in PowerShell 6.0, the command no longer includes the **ComputerName** parameter. To run
309+
`Start-Service` on a remote computer, use `Invoke-Command`.
310310

311311
## RELATED LINKS
312312

reference/7.6/Microsoft.PowerShell.Management/Suspend-Service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ This command uses the `Get-Service` cmdlet to get an object that represents the
7979

8080
```powershell
8181
Get-Service |
82-
Where-Object {$_.CanPauseAndContinue -eq "True"} |
82+
Where-Object { $_.CanPauseAndContinue } |
8383
Suspend-Service -Confirm
8484
```
8585

reference/docs-conceptual/whats-new/differences-from-windows-powershell.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ and a redesigned syntax.
249249

250250
### `New-WebServiceProxy` cmdlet removed
251251

252-
.NET Core doesn't support the Windows Communication Framework, which provide services for using the
252+
.NET Core doesn't support the Windows Communication Framework, which provides services for using the
253253
SOAP protocol. This cmdlet was removed because it requires SOAP.
254254

255255
### `*-Transaction` cmdlets removed
@@ -572,7 +572,8 @@ $a = $null
572572
${a}?[0]
573573
```
574574

575-
> [!NOTE] The variable name syntax of `${<name>}` shouldn't be confused with the `$()` subexpression
575+
> [!NOTE]
576+
> The variable name syntax of `${<name>}` shouldn't be confused with the `$()` subexpression
576577
> operator. For more information, see Variable name section of [about_Variables][08].
577578
578579
### Added `&` operator for job control
@@ -1123,7 +1124,7 @@ After this change, the returned object is the underlying object.
11231124
## Remoting Support
11241125

11251126
PowerShell Remoting (PSRP) using WinRM isn't supported for non-Windows platforms. You can use
1126-
PowerShell Remoting (PSRP) over WinRM from Windows to connect to other Windows machines. PowerShel
1127+
PowerShell Remoting (PSRP) over WinRM from Windows to connect to other Windows machines. PowerShell
11271128
also supports remoting over SSH on all platforms (Windows, macOS, and Linux). For more information,
11281129
see [SSH remoting in PowerShell][25].
11291130

0 commit comments

Comments
 (0)