Windows 唯一标识符?
于是就有了这个软件。安装后,它以某种方式(可能读取文件或注册表项)识别我的 Windows 操作系统。
它应该在每台唯一的计算机上只执行一次某些任务。如果我卸载该程序并重新安装它,该软件会记住它已安装,因此不会执行该任务。
如果我使用系统还原,软件也不会执行这些任务。如果我在安装之前加载系统映像,软件也不会执行这些任务。
如果我重新安装 Windows 的全新副本,则只有该软件可以完成该任务。 IP甚至不重要。一切都一样,只是它是 Windows 操作系统的全新副本。
所以我猜测该软件会读取某种唯一的操作系统标识符,然后连接到服务器以创建用户配置文件。
那么问题是?软件用来检查系统标识符的那些文件可能是什么?到目前为止我发现注册表下有条目。 WindowsNT/CurrentVersion 和 Windows/Cryptography 但软件不依赖它们。
我还应该去哪里搜索?有什么软件可以帮我查一下吗?
So there is this software. When installed it somehow (probably reads file or registry entry) recognizes my windows operating system.
It's supposed to do some tasks only once per unique computer. If I uninstall the program and re install it, the software remembers that it has been installed and therefore do not do the task.
If I use system restore, software also does not do the tasks. If I load image of the system before the install, software also doesn't do the tasks.
If I re install a fresh copy of windows, then only the software does the task. IP even does not matter. Everything is the same, except it is a brand new copy of Windows operating system.
So I guess that the software reads some kind of unique operating system identifier, then connects to server to create a user profile.
So the question is? What could be those files which software uses to check system identifier? So far I have found out that there are entries under registry. WindowsNT/CurrentVersion and Windows/Cryptography but software do not rely on them.
Where else should I search? Any software which could help me find out?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
也许它正在从注册表项
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion
读取ProductId
值。微软说:
Maybe it's reading the
ProductId
value from the registry keyHKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion
.Microsoft says:
请注意,对于某些 OEM smopuiM 版本,只有一个 Windows XP 许可实例。这样您就可以找到两台 PC 的相同产品 ID。
Take care, for some OEM smopuiM versions, there is only one licensed instance of Windows XP. So you can find the same product ID for two PC.
您可以使用 SysInternals 的 FileMon 和 RegMon 来检查正在访问注册表中的哪些文件和键
You can use FileMon and RegMon by SysInternals to check what files and keys in registry are being accessed