我希望能够检测我的安装程序在Win10 WVD操作系统上运行的时间。
MsiNTProductType = 1MsiNTProductType = 3 And TerminalServer = 1以下是我到目前为止得到的一些数据:
MsiNTProductType = 3。TerminalServer = 1。[HKLM\Software\Microsoft\Windows NT\CurrentVersion] "InstallationType"="Client"在MSI中检测WVD安装的合适方法是什么?还有其他我不知道的信息吗?我不想依赖登记处..。
发布于 2019-07-24 18:53:36
据我所知,最简单的方法是键入注册表值:
[HKLM\Software\Microsoft\Windows NT\CurrentVersion]
"InstallationType"="Client"
以及TerminalServer MSI属性。
https://stackoverflow.com/questions/56944028
复制相似问题