如何在Active Directory中创建信息亭模式?

时间:2015-10-09 11:21:12

标签: active-directory windows-server-2012-r2 kiosk group-policy kiosk-mode

有没有办法在AD中创建Kiosk模式?我不想使用网络浏览器。我们有许多终端计算机可以用于生产。在它上面有一个用于称重和发明的软件。我需要使用组策略锁定磁盘C(它适用于VirtualBox但不能在真实服务器上运行)并阻止用户使用他们需要的任何其他软件。

终端计算机正在使用Windows 7 Embedded。

1 个答案:

答案 0 :(得分:0)

Windows自助服务终端模式需要接下来的步骤:

  • 为kiosk模式创建用户将此用户的下一个注册表项设置为 申请途径:

Windows XP / 7:

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Winlogon]
"Shell"="C:\\full\\path\\to\\your\\application.exe>"

Windows 8及更高版本:

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]
"Shell"="C:\\full\\path\\to\\your\\application.exe>"

自助服务终端用户的自动登录:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Winlogon] 
"AutoAdminLogon"="1"
"ForceAutoLogon"="1"
"DefaultUserName"="kiosk"
"DefaultDomainName"="<place here pc hostname>"
"DefaultPassword"=""

[选项]如果您需要禁用Ctrl + Alt + Del,则使用此注册表项值(&#34;&#34;)或者您可以放置​​自己的应用程序: Windows注册表编辑器版本5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\taskmgr.exe]
"Debugger"="\"\""

https://github.com/VoidVolker/kiosk#windows