Skip to content

Commit a68229f

Browse files
authored
Format code block and fix line breaks
1 parent 9870c5c commit a68229f

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

reference/5.1/Microsoft.PowerShell.Management/Reset-ComputerMachinePassword.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,16 @@ password in the domain.
5151

5252
```powershell
5353
$cred = Get-Credential
54-
Invoke-Command -ComputerName "Server01" -ScriptBlock {Reset-ComputerMachinePassword -Credential $Using:cred}
54+
Invoke-Command -ComputerName "Server01" -ScriptBlock {
55+
Reset-ComputerMachinePassword -Credential $Using:cred
56+
}
5557
```
5658

5759
This command uses the Invoke-Command cmdlet to run a `Reset-ComputerMachinePassword` command on the
5860
Server01 remote computer.
5961

60-
For more information about remote commands in Windows PowerShell, see [about_Remote](../Microsoft.PowerShell.Core/About/about_Remote.md)
61-
and `Invoke-Command`.
62+
For more information about remote commands in Windows PowerShell, see
63+
[about_Remote](../Microsoft.PowerShell.Core/About/about_Remote.md) and `Invoke-Command`.
6264

6365
## PARAMETERS
6466

@@ -141,7 +143,8 @@ Accept wildcard characters: False
141143
142144
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
143145
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
144-
-WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
146+
-WarningAction, and -WarningVariable. For more information, see
147+
[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
145148
146149
## INPUTS
147150

0 commit comments

Comments
 (0)