腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
圈层
工具
MCP广场
文章/答案/技术大牛
搜索
搜索
关闭
发布
搜索
关闭
文章
问答
(363)
视频
开发者手册
清单
用户
专栏
沙龙
全部问答
原创问答
Stack Exchange问答
更多筛选
回答情况:
全部
有回答
回答已采纳
提问时间:
不限
一周内
一月内
三月内
一年内
问题标签:
未找到与 相关的标签
筛选
重置
3
回答
捕获
Get-EventLog
错误
我正在编写一个简单的脚本来解析一些事件日志,但是当没有结果的时候,或者如果instanceid无效的时候,我需要沉默一些错误:At line:1 char:13 + CategoryInfo : ObjectNotFo
浏览 8
提问于2014-10-17
得票数 2
回答已采纳
1
回答
Get-EventLog
-After查询
Get-EventLog
Application -After "$StartDate" -Source "MsiInstaller" 遗漏了什么?
浏览 2
修改于2015-04-01
得票数 0
2
回答
Get-EventLog
with Append
$endtime = Get-Date$domain = "ComputerName" $event =
get-eventlog
浏览 2
提问于2016-11-21
得票数 0
2
回答
Powershell
Get-Eventlog
对象输出问题
当我运行这个: + $listoflogs | % {
Get-EventLog
<&l
浏览 2
修改于2016-10-30
得票数 1
回答已采纳
2
回答
Powershell
Get-EventLog
(简介)
$event =
Get-EventLog
-LogName Application -Source "My Script-1" | where {$_.eventID -eq 1} if ($event.EntryType
浏览 3
修改于2017-12-19
得票数 0
回答已采纳
1
回答
排除
get-eventlog
(powershell)
我有一个由powershell中的脚本生成的报告,它向我报告多个服务器的事件日志。剧本不是我写的,是我以前的同事写的。我是powershell的新手,刚刚开始了解它。get-eventlog-log application-computername $server -EntryType error-after $d |select eventid,machinename,entrytype, message, source, timegenerated | ConvertTo
浏览 0
修改于2017-11-23
得票数 0
2
回答
Get-EventLog
消息获取一行
我想知道是否有一种方法可以从
Get-EventLog
中获取消息中的信息。到目前为止,我使用下面这行代码来获取消息:这将从实例ID为4625
浏览 0
修改于2017-03-08
得票数 0
2
回答
PowerShell:
get-eventlog
完成时间太长
(Application, System)"
get-eventlog
$LogName -ComputerName
浏览 3
修改于2013-09-26
得票数 2
3
回答
Powershell安全日志
Get-EventLog
$eventList = @() | Where -FilterScript {$_.EventID -eq 4624Date = [DateTime]::Now.AddDays(-14)$eventList = @()
Get-EventLog
浏览 0
修改于2011-02-18
得票数 1
回答已采纳
2
回答
Try/Catch块实际上不执行
get-eventlog
。
出于某种原因,当我尝试使用安全选项时,它实际上并不执行
get-eventlog
,而是将它写入屏幕,就像引用了它一样。localhost" ) try { { {
Get-EventLog
浏览 5
提问于2014-12-13
得票数 0
回答已采纳
1
回答
使用
Get-EventLog
查询多个事件id
StartTime = "10:00:00 PM" $SMS_SQL_000 = "XXXXXSQL01"
Get-EventLog
浏览 3
提问于2013-01-15
得票数 1
1
回答
远程运行
Get-EventLog
将擦除实际事件日志
$output =
Get-EventLog
` -instanceID 4672,4647,4634,4624,4625,4648,4675,4800,4801,4802,4803 `为什么
Get-EventLog
需要建立这么多连接?是因为连接一直断线还是怎么的?获取此数据的最快方法是什么-通过指定-ComputerName使用原生
Get-EventLog
命令,还是应该使用Enter-PSSession或Invoke-Command之类的东西。Enter-PSSession和Invoke-Command都会有我在
Get-E
浏览 2
提问于2012-05-02
得票数 3
回答已采纳
2
回答
RemoteComputer上的Powershell
Get-EventLog
挂起
$getEventLog =
Get-EventLog
-log application -ComputerName "myRemoteName" -after ((get-date).addMinutes($minutes*-1)) -EntryType Error # list of events to exclude (based
浏览 2
修改于2014-03-06
得票数 4
回答已采纳
4
回答
Powershell
get-eventlog
消息列太短了。
当使用powershell检索有关事件的信息时,消息列会被裁剪,并且太短: 1 Sep 18 12:50 Info yaddayadda 0 Class: Controllers.BasketController...
浏览 6
提问于2009-09-18
得票数 20
回答已采纳
2
回答
对
Get-EventLog
没有影响的排序对象
使用以下命令:(
Get-EventLog
Security | Sort-Object -Property Time -Descending) 这将返回一个没有排序的列表。我在这里做错什么了?
浏览 2
提问于2018-08-02
得票数 3
回答已采纳
2
回答
如何显示
Get-EventLog
cmdlet中的某些行
Get-EventLog
-LogName Application -EntryType Error -Newest 10 -Message "*3CXPhone.exe*" | Format-Table
浏览 0
修改于2020-06-20
得票数 1
1
回答
未找到Powershell
Get-EventLog
-before参数
我这里有一段代码: $pastDate = $currentDate.addhours(-5) $errorCommand =
get-eventlog
浏览 6
提问于2014-06-25
得票数 0
回答已采纳
1
回答
系统用户运行时不解析消息的
Get-EventLog
我根据
Get-EventLog
命令编写了脚本,它在由我的帐户运行时工作正常。但是,当我以
Get-EventLog
用户身份运行SYSTEM时,返回对象的.Message属性显示了以下错误: 问题 有人知道为什么
Get-EventLog
在由SYSTEM用户运行时不能呈现
浏览 1
提问于2018-09-28
得票数 2
2
回答
为什么在日期之后获取事件时,Get-WinEvent比
Get-EventLog
慢?
在特定日期之后检索事件时,Get-WinEvent似乎比
Get-EventLog
慢:$LogName = "Security"(Measure-Command -Expression {
Get-EventLog
Computer $SourceComputer -LogName $Logname -
浏览 1
修改于2013-05-24
得票数 4
2
回答
如何在
get-eventlog
中排除特定用户
我有以下脚本
get-eventlog
-LogName Security -InstanceId 4663 -after (Get-Date).AddMonths(-1) -before (Get-Date
浏览 30
提问于2021-08-30
得票数 0
回答已采纳
第 2 页
第 3 页
第 4 页
第 5 页
第 6 页
第 7 页
第 8 页
第 9 页
第 10 页
第 11 页
点击加载更多
领券