首页
学习
活动
专区
圈层
工具
发布
  • 您找到你想要的搜索结果了吗?
    是的
    没有找到

    腾讯云Windows重启与关机事件日志

    Explorer.EXE,用户Administrator,关闭电源:其他(计划外) 关机类型:关闭电源 原因代码:0x0 点击”开始菜单—》点击“电源”按钮—》关机 EventID=1074 进程:C:\Windows\System32...Administrator,关闭电源:其他(计划外) 关机类型:关闭电源 原因代码:0x0 通过PowerShell执行stop-computer关机 EventID=1074 进程:C:\Windows\system32...Administrator,关机:没有找到这个原因的标题 关机类型:关机 原因代码:0x80070015 通过shutdown -s -t 0 关机 EventID=1074 进程:C:\Windows\system32...更新完补丁,在设置里头点击“立即重新启动” EventID=1074 进程:C:\Windows\system32\MusNotificationUx.exe,用户Administrator,重启:操作系统...\wbem\wmiprvse.exe,用户Administrator, 重启:没有找到这个原因的标题 关机类型:重启 原因代码:0x80070015 或者 进程:C:\Windows\system32\

    11.5K30

    Windows如何过滤出某后缀的文件路径

    方法1:用everything搜索比如要搜system32目录的.dll文件输入目录的绝对路径 空格 .dll,然后按路径排序,然后按住shift选择system32根目录的文件,右击点复制完整路径和文件名...,粘贴到记事本文件里即可图片方法2:用powershell命令,比如导出windows根目录 system32根目录的可执行文件,举例如下比较low的代码cd "c:\windows\system32"...比较牛逼的代码Get-ChildItem -Path C:\Windows\System32 -Filter ***.dll** -File | Sort-Object Length -Descending...| ForEach-Object { $_.Name }Get-ChildItem -Path C:\Windows\System32 -Filter ***.dll** -File | Sort-Object...Length -Descending | ForEach-Object { $_.BaseName }(Get-ChildItem -Path C:\Windows\System32 -Filter

    2.1K30
    领券