Difference between revisions of "Watch Desktop Logs"
Jump to navigation
Jump to search
(Created page with "If you want to see what the desktop is logging as it runs, start Powershell, then: <syntaxhighlight lang="powershell"> Get-Content "$env:LOCALAPPDATA\probity\truxton\TruxtonCl...") |
|||
| Line 1: | Line 1: | ||
| − | If you want to see what the desktop is logging as it runs, start | + | If you want to see what the desktop is logging as it runs, start [https://docs.microsoft.com/en-us/powershell/ PowerShell], then: |
| − | < | + | <source lang="powershell"> |
Get-Content "$env:LOCALAPPDATA\probity\truxton\TruxtonClient.log" -Tail 10 -wait | Get-Content "$env:LOCALAPPDATA\probity\truxton\TruxtonClient.log" -Tail 10 -wait | ||
| − | </ | + | </source> |
Revision as of 06:39, 16 February 2021
If you want to see what the desktop is logging as it runs, start PowerShell, then:
Get-Content "$env:LOCALAPPDATA\probity\truxton\TruxtonClient.log" -Tail 10 -wait