Powershell: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 6: | Line 6: | ||
Example output: | Example output: | ||
<pre style="color: white; background: #012456; width: 800px"> | <pre style="color: white; background: #012456; width: 800px"> | ||
ComputerName : 10.10.10.10 | ComputerName : 10.10.10.10 | ||
RemoteAddress : 10.10.10.10 | RemoteAddress : 10.10.10.10 | ||
Line 17: | Line 14: | ||
PingReplyDetails (RTT) : 29 ms | PingReplyDetails (RTT) : 29 ms | ||
TcpTestSucceeded : True | TcpTestSucceeded : True | ||
</pre> | |||
===Check who rebooted the server=== | |||
<pre>Get-EventLog –Log System –Newest 100 | Where-Object {$_.EventID –eq ‘1074’} | FT MachineName, UserName, TimeGenerated -AutoSize</pre> | |||
Example output: | |||
<pre style="color: white; background: #012456; width: 800px"> | |||
MachineName UserName TimeGenerated | |||
----------- -------- ------------- | |||
server01.lab.local LABLOCAL\user01 28/8/2018 4:28:20 PM | |||
</pre> | </pre> |
Revision as of 10:00, 29 August 2019
Powershell
Useful Commands
Test if port open from one server to another
Test-NetConnection 10.10.10.10 -port 445
Example output:
ComputerName : 10.10.10.10 RemoteAddress : 10.10.10.10 RemotePort : 445 InterfaceAlias : Ethernet SourceAddress : 10.10.10.20 PingSucceeded : True PingReplyDetails (RTT) : 29 ms TcpTestSucceeded : True
Check who rebooted the server
Get-EventLog –Log System –Newest 100 | Where-Object {$_.EventID –eq ‘1074’} | FT MachineName, UserName, TimeGenerated -AutoSize
Example output:
MachineName UserName TimeGenerated ----------- -------- ------------- server01.lab.local LABLOCAL\user01 28/8/2018 4:28:20 PM