Hello,
Is there a way to view Windows event viewer from the diagnostics page like you can view the registry?
Thanks
Hello,
Is there a way to view Windows event viewer from the diagnostics page like you can view the registry?
Thanks
No, but that would be useful. Submit a support ticket as a feature request. The Community forum is not actively monitored by support.
For now you can create a toolbox with a powershell script to pull the logs.
Something like this:
ServerUtilsAskTech(Customer Input Form,How Many Days to check)
ServerUtilsAskTech(Accept,submit)$time = (Get-Date) - (New-TimeSpan -Day ServerUtilsAskTech(Days,int,3,required))
Write "System Logs: "
Get-WinEvent -FilterHashtable @{logname='system'; level=2,1; starttime=$time}| Format-List
Write "Application Logs: "
Get-WinEvent -FilterHashtable @{logname='application'; level=1; starttime=$time}| Format-List
Sorry for the delay. Thank you for that! I will use that as part of a toolbox for now and put a feature request in.
Thanks!