如何在此命令中添加上次访问时间:
Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table -AutoSize
答案 0 :(得分:0)
恐怕你做不到。要查看所有属性,可以从运行以下命令中进行选择:
save()
它将显示您可以获取信息的所有字段。
Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | gm
LastAccessTime是注册表项的属性。
也许您可以使用安装路径并在其中获取可执行文件的ItemProperties来确定上次使用该软件的时间。