我是等效的域管理员,我尝试在提升的控制台中运行(右键单击>以管理员身份运行),并且在执行时始终出现错误
get-winevent -logname application | where {$_.message -match "Faulting application"} | `
select TimeCreated,message
我将得到三行结果,然后
Get-WinEvent : Attempted to perform an unauthorized operation.
At line:1 char:13 Get-WinEvent : Attempted to perform an unauthorized operation.
+ CategoryInfo : NotSpecified: (:) [Get-WinEvent], UnauthorizedAccessException
+ FullyQualifiedErrorId : Attempted to perform an unauthorized operation.,Microsoft.PowerShell.Commands.GetWinEventCommand
这似乎是一个新的发展,以前从未犯过这些错误。
这是一致的-如果我从另一台服务器使用-computername运行它,该模式仍然会出现3行,然后是X错误,然后是5行,等等。
Windows Server 2008 R2 + SP1,Powershell 2.0
—
user209162 2014年
这是从提升的Powershell提示运行的吗?
—
MDMoore313 2014年
从
—
布莱斯
get-help get-winevent
Note: [...] And, it requires the Microsoft .NET Framework 3.5 or a later version.
你满足这个需求量的?
是的,这是从高架外壳上获得的。
—
user209162 2014年
(gwmi Win32_OperatingSystem).Version
和Get-Host