Skip to content

Commit

Permalink
Update Get-WinEvent.md (#1876)
Browse files Browse the repository at this point in the history
Removed future tense in a couple of places to improve readability. Minor edit.
  • Loading branch information
doctordns authored and Sean Wheeler committed Nov 20, 2017
1 parent 061245d commit 496832f
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ Classic logs are usually retrieved first, followed by the new Windows Eventing l
Because there are typically more than a hundred event logs, this parameter requires a log name or name pattern.
To get all the logs, use *.

### Example 2: Get the classic system log from a local computer
### Example 2: Get the classic Setup log from a local computer
```
PS C:\> Get-WinEvent -ListLog Setup | Format-List -Property *
Expand Down Expand Up @@ -115,7 +115,7 @@ ProviderLatency : 1000
ProviderControlGuid :
```

This command gets an object that represents the classic System log on the local computer.
This command gets an object that represents the classic Setup log on the local computer.
The object includes useful information about the log, including its size, event log provider, file path, and whether it is enabled.

### Example 3: Get event logs from a server
Expand Down Expand Up @@ -338,8 +338,8 @@ The default value is the current user.
Type a user name, such as User01 or Domain01\User01.
Or, enter a **PSCredential** object, such as one generated by the Get-Credential cmdlet.
If you type a user name, you will be prompted for a password.
If you type only the parameter name, you will be prompted for both a user name and a password.
If you type a user name, you are prompted for a password.
If you type only the parameter name, you are prompted for both a user name and a password.
```yaml
Type: PSCredential
Expand Down

0 comments on commit 496832f

Please sign in to comment.