Difference between revisions of "Watch Desktop Logs"

From truxwiki.com
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 Powershell, then:
+
If you want to see what the desktop is logging as it runs, start [https://docs.microsoft.com/en-us/powershell/ PowerShell], then:
<syntaxhighlight lang="powershell">
+
<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
</syntaxhighlight>
+
</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