Windows 10 自助服务终端模式,没有可用的应用程序

Jan*_*Jan 2 windows kiosk windows-10 windows-10-universal

我尝试为用户“ kiosk ”安装Windows 10 kiosk 模式但没有成功,分配的访问应用选择列表为空。

这是我所做的:我使用了“管理员”帐户并使用Visual Studio 2015创建了一个通用 Windows 应用程序(我只是编译了空项目,我没有添加代码)。我构建了一个应用程序包,并从/为“信息亭”帐户安装了该应用程序。

回到“管理员”帐户,我尝试设置分配的访问权限。我添加了用户“ kiosk ”并遵循分配的访问设置。但是账户“信息亭”的选择中没有应用程序。

我也将“ kiosk ”帐户切换为管理员帐户,但应用程序列表仍然是空的。登录和注销仍然没有解决问题。

截图

Voi*_*ker 6

永远不要使用 Windows 本机 Koisk 模式 - 它没用。最好的解决办法是换壳。只需构建 Windows 窗体应用程序并将其用作外壳。不是 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>"
Run Code Online (Sandbox Code Playgroud)

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>"
Run Code Online (Sandbox Code Playgroud)

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

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"=""
Run Code Online (Sandbox Code Playgroud)

[选项]如果您需要禁用 Ctrl+Alt+Del,则使用此注册表项值 ("") 或者您可以在其中放置自己的应用程序:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\taskmgr.exe]
"Debugger"="\"\""
Run Code Online (Sandbox Code Playgroud)