有没有办法知道可执行文件上次执行的时间?

发布于 2024-08-17 15:28:27 字数 159 浏览 2 评论 0原文

在 Windows 中,有没有办法找出可执行文件上次执行的时间?

似乎不太可能保存这样的东西,但我愿意接受其他建议。

知道它是否“最近”执行就足够了,例如自计算机启动以来、最后一小时等。

我愿意接受一些黑客想法,比如检查页面文件以查看可执行文件留下的痕迹?

In Windows, is there a way to find out when an executable was last executed?

It seems unlikely that something like this would be saved, but I'm open for other suggestions.

It would be enough to know if it was executed "recently", for example since the computer was started, the last hour etc.

I'm open for hackish ideas, like checking the pagefile to maybe see traces left by an executable?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

冧九 2024-08-24 15:28:27

您可以通过审核来做到这一点。运行 gpedit.msc、计算机配置、Windows 设置、安全设置、高级审核策略配置、系统审核策略、详细跟踪、审核进程创建。请访问 superuser.com 询问更多相关问题

You can do this with auditing. Run gpedit.msc, Computer Configuration, Windows Settings, Security Settings, Advanced Audit Policy Configuration, System Audit Policies, Detailed Tracking, Audit Process Creation. Ask more questions about it at superuser.com

哎呦我呸! 2024-08-24 15:28:27

要以编程方式打开:

auditpol.exe /set /category:"Detailed Tracking" /subcategory:"Process Creation" /success:enable /failure:enable

auditpol.exe /set /category:"Detailed Tracking" /subcategory:"Process Termination" /success:enable /failure:enable

To be turned on programmatically:

auditpol.exe /set /category:"Detailed Tracking" /subcategory:"Process Creation" /success:enable /failure:enable

auditpol.exe /set /category:"Detailed Tracking" /subcategory:"Process Termination" /success:enable /failure:enable
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文