检测 Windows 7 审核模式
背景
OEM、系统管理员等经常使用OPK 或 WAIK 用于批量安装。在此期间,他们经常发布一些预装的应用程序。当 Windows 安装进入 审核模式时,会安装此类应用程序
问题
使用c#,如何检测Windows当前是否处于审核模式?
Background
OEMS, Sys Admins etc. often use OPK or WAIK for mass installation. During this they often ship some pre-installed applications. The installations of such applications happen when Windows installation enters in Audit Mode
Question
Using c#, how do I detect that Windows is currently in Audit Mode?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要检查注册表:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup\State
以外的
IMAGE_STATE_COMPLETE
HKEY_LOCAL_MACHINE\System\Setup
AuditInProgress
编辑 - 根据评论:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft \Windows\CurrentVersion\OOBE
也可以提供这方面的一些信息...有关详细信息,请参阅
You need to check the registry:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup\State
for something other than
IMAGE_STATE_COMPLETE
HKEY_LOCAL_MACHINE\System\Setup
forAuditInProgress
EDIT - as per comment:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE
could provide some information in this regard too...For details see see