我如何在命令Get-ItemProperty中添加lastaccess时间

时间:2020-09-09 19:40:52

标签: powershell scripting

如何在此命令中添加上次访问时间:

Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table -AutoSize

1 个答案:

答案 0 :(得分:0)

恐怕你做不到。要查看所有属性,可以从运行以下命令中进行选择:

save()

它将显示您可以获取信息的所有字段。

 Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | gm

LastAccessTime是注册表项的属性。

也许您可以使用安装路径并在其中获取可执行文件的ItemProperties来确定上次使用该软件的时间。