win10 使用PowerShell 设置单应用kiosk模式

win10 家版或企业版PowerShellshell 启动器 v1Autologon.exe

注意事项

  • win10 家庭版或企业版。
  • 下载安装Autologon.exe。
  • Shell 启动器 v1调用的应用程序不可有黑窗(类似cmd)。
  • 以下示例采用账号:
    - 账户:'KIOSK'
    - 密码:'KIOSK'

设置步骤

新建用户

1.进入windows设置->账户->其他用户,点击'将其他人添加到这台电脑';

2.右键用户,点击新用户,如图下操作:

下载并执行Autologon.exe:自动输入 Windows 登录用户密码

  1. 开启功能:输入正确账号和密码后,点击图片'Enable'。
  2. 关闭功能:输入正确账号后,点击图片‘Disable’。

使用 PowerShell 配置自定义 shell

新建文件'kiosk.ps1'(文件名随意)

'kiosk.ps1'文件内容

1. 文件内部关于'KIOSK'的地方都要修改成你新建用户的名称。
2. 文件内部'$ShellLauncherClass.SetCustomShell'第二个参数为调用程序的路径。
3. 文件最后有3段代表'开启','删除','禁用',需要使用其中一个功能的时候,一定要注释其他两段,如下。

  1 # Check if shell launcher license is enabled
2 function Check-ShellLauncherLicenseEnabled
3 {
4 [string]$source = @"
5 using System;
6 using System.Runtime.InteropServices;
7
8 static class CheckShellLauncherLicense
9 {
10 const int S_OK = 0;
11
12 public static bool IsShellLauncherLicenseEnabled()
13 {
14 int enabled = 0;
15
16 if (NativeMethods.SLGetWindowsInformationDWORD("EmbeddedFeature-ShellLauncher-Enabled", out enabled) != S_OK) {
17 enabled = 0;
18 }
19
20 return (enabled != 0);
21 }
22
23 static class NativeMethods
24 {
25 [DllImport("Slc.dll")]
26 internal static extern int SLGetWindowsInformationDWORD([MarshalAs(UnmanagedType.LPWStr)]string valueName, out int value);
27 }
28
29 }
30 "@
31
32 $type = Add-Type -TypeDefinition $source -PassThru
33
34 return $type[0]::IsShellLauncherLicenseEnabled()
35 }
36
37 [bool]$result = $false
38
39 $result = Check-ShellLauncherLicenseEnabled
40 "`nShell Launcher license enabled is set to " + $result
41 if (-not($result))
42 {
43 "`nThis device doesn't have required license to use Shell Launcher"
44 exit
45 }
46
47 $COMPUTER = "localhost"
48 $NAMESPACE = "root\standardcimv2\embedded"
49
50 # Create a handle to the class instance so we can call the static methods.
51 try {
52 $ShellLauncherClass = [wmiclass]"\\$COMPUTER\${NAMESPACE}:WESL_UserSetting"
53 } catch [Exception] {
54 write-host $_.Exception.Message;
55 write-host "Make sure Shell Launcher feature is enabled"
56 exit
57 }
58
59
60 # This well-known security identifier (SID) corresponds to the BUILTIN\Administrators group.
61
62 $Admins_SID = "S-1-5-32-544"
63
64 # Create a function to retrieve the SID for a user account on a machine.
65
66 function Get-UsernameSID($AccountName) {
67
68 $NTUserObject = New-Object System.Security.Principal.NTAccount($AccountName)
69 $NTUserSID = $NTUserObject.Translate([System.Security.Principal.SecurityIdentifier])
70
71 return $NTUserSID.Value
72
73 }
74
75 # Get the SID for a user account named "KIOSK". Rename "KIOSK" to an existing account on your system to test this script.
76
77 $KIOSK_SID = Get-UsernameSID("KIOSK")
78
79 # Define actions to take when the shell program exits.
80
81 $restart_shell = 0
82 $restart_device = 1
83 $shutdown_device = 2
84
85 # Examples. You can change these examples to use the program that you want to use as the shell.
86
87 # This example sets the command prompt as the default shell, and restarts the device if the command prompt is closed.
88
89 $ShellLauncherClass.SetDefaultShell("cmd.exe", $restart_device)
90
91 # Display the default shell to verify that it was added correctly.
92
93 $DefaultShellObject = $ShellLauncherClass.GetDefaultShell()
94
95 "`nDefault Shell is set to " + $DefaultShellObject.Shell + " and the default action is set to " + $DefaultShellObject.defaultaction
96
97 # Set Internet Explorer as the shell for "KIOSK", and restart the machine if Internet Explorer is closed.
98
99 $ShellLauncherClass.SetCustomShell($KIOSK_SID, "c:\program files\internet explorer\iexplore.exe www.microsoft.com", ($null), ($null), $restart_shell)
100
101 # Set Explorer as the shell for administrators.
102
103 $ShellLauncherClass.SetCustomShell($Admins_SID, "explorer.exe")
104
105 # View all the custom shells defined.
106
107 "`nCurrent settings for custom shells:"
108 Get-WmiObject -namespace $NAMESPACE -computer $COMPUTER -class WESL_UserSetting | Select Sid, Shell, DefaultAction
109
110 # Enable Shell Launcher
111
112 $ShellLauncherClass.SetEnabled($TRUE)
113
114 $IsShellLauncherEnabled = $ShellLauncherClass.IsEnabled()
115
116 "`nEnabled is set to " + $IsShellLauncherEnabled.Enabled
117
118 # Remove the new custom shells.
119
120 #$ShellLauncherClass.RemoveCustomShell($Admins_SID)
121
122 #$ShellLauncherClass.RemoveCustomShell($KIOSK_SID)
123
124 # Disable Shell Launcher
125
126 #$ShellLauncherClass.SetEnabled($FALSE)
127
128 #$IsShellLauncherEnabled = $ShellLauncherClass.IsEnabled()
129
130 #"`nEnabled is set to " + $IsShellLauncherEnabled.Enabled

管理员权限执行.ps1文件

编程好.ps1文件,使用管理员权限在'powerShell'上执行该文件,显示如下结果表示成功。

用户SID查询

powerShell执行'wmic useraccount get name,sid'即可,如下。

重启开机

重启开机后,黑屏,只显示唯一调用的程序界面。

相关连接

WIN10 使用POWERSHELL 设置单应用KIOSK模式(win10家庭版或企业版)的更多相关文章

  1. WIN10 使用注册表设置单应用KIOSK模式(不限win10版本)

    注意事项 下载安装Autologon.exe. 以下示例采用账号:- 账户:'KIOSK'- 密码:'KIOSK' 设置步骤 新建用户 1.进入windows设置->账户->其他用户,点击 ...

  2. 《连载 | 物联网框架ServerSuperIO教程》- 8.单例通讯模式开发及注意事项

    1.C#跨平台物联网通讯框架ServerSuperIO(SSIO)介绍 <连载 | 物联网框架ServerSuperIO教程>1.4种通讯模式机制. <连载 | 物联网框架Serve ...

  3. Atitit 全屏模式的cs桌面客户端软件gui h5解决方案 Kiosk模式

    Atitit 全屏模式的cs桌面客户端软件gui h5解决方案 Kiosk模式 1.1. Kiosk Software广泛用于公共电脑或者嵌入系统,最常用的就是ATM机.自动服务机之类的系统了.,1 ...

  4. JavaScript 设计模式之----单体(单例)模式

    设计模式之--单体(单例)模式 1.介绍 从本章开始,我们会逐步介绍在JavaScript里使用的各种设计模式实现,在这里我不会过多地介绍模式本身的理论,而只会关注实现.OK,正式开始. 在传统开发工 ...

  5. 在Android上启用Kiosk模式

    我们的云帆机器人(上面运行的安卓程序)有一个线下场景是商场,由于商场人多,总会遇到一些用户在我们的app里乱点,然后会跳出程序进入到系统设置的一些界面,这样很不友好. 比如程序中有一些需要输入文字的地 ...

  6. win2003设置单用户登录

    远程桌面是windows操作系统中一个很方便的功能,管理测试机资产.异地排除故障等,都很快捷.在windows xp sp2模式下,一般默认是单用户登录,也就是当A用户远程一台机器时,B用户在远程到这 ...

  7. 选择设置好ext3日志模式

    Linux是一种开放的.因Internet而产生的操作系统.Internet的发展.以网络为中心的计算模式如电子商务被迅速接受和普及,都为 Linux提供了更巨大的机会,使之成为企业和部门级的首选平台 ...

  8. [OpenStack] [Liberty] Neutron单网卡桥接模式访问外网

    环境配置: * Exsi一台 * Exsi创建的单网卡虚拟机一台 * Ubuntu 14LTS 64位操作系统 * OpenStack Liberty版本 * 使用Neutron网络而非Nova网络 ...

  9. ccflow_005.请假流程-傻瓜表单-审核组件模式

    ccflow_005.请假流程-傻瓜表单-审核组件模式 ' 用审核组件演示各个流程应用 首先设置节点,填写请假单的 表单方案.选择内置傻瓜表单.我们之前创建的表单就回来了. 可以点击下面的设计傻瓜表单 ...

随机推荐

  1. 3.Spark设计与运行原理,基本操作

    1.Spark已打造出结构一体化.功能多样化的大数据生态系统,请用图文阐述Spark生态系统的组成及各组件的功能. Spark生态系统主要包含Spark Core.Spark SQL.Spark St ...

  2. pandas - drop()函数

    函数形式:DataFrame.drop(labels=None, axis=0, index=None, columns=None, level=None, inplace=False, errors ...

  3. 小技巧之“将Text文件中的数据导入到Excel中,这里空格为分割符为例”

    1.使用场景 将数据以文本导出后,想录入到Excel中,的简便方案, 起因:对于Excel的导出,Text导出明显会更方便些 2.将Text文件中的数据导入到Excel中,这里空格为分割符为例的步骤 ...

  4. 推荐一个用于压缩图片的JS插件:localResizeIMG

    惯例,先贴传送门:https://github.com/think2011/localResizeIMG 首先说到,为嘛要压缩图片,这需求一般出现在需要上传照片(尤其是移动端)的情况下,现在手机拍出来 ...

  5. Top 15 - Material Design框架和类库(译)

    _Material design_是Google开发的,目的是为了统一公司的web端和手机端的产品风格.它是基于很多的原则,比如像合适的动画,响应式,以及颜色和阴影的使用.完整的指南详情请看这里(ht ...

  6. APICloud重磅支持Atom编辑器,并建立开发工具核心库

    APICloud技术再次升级,不仅支持Atom编辑器开发工具,并推出核心开发工具库,使开发者进行App开发更便捷高效. APICloud支持Atom编辑器开发工具 APICloud始终坚持多开发工具支 ...

  7. 微信小程序开发:python+sanic 实现小程序登录注册

    开发微信小程序时,接入小程序的授权登录可以快速实现用户注册登录的步骤,是快速建立用户体系的重要一步.这篇文章将介绍 python + sanic + 微信小程序实现用户快速注册登录全栈方案. 微信小程 ...

  8. UML与面向对象程序设计原则

    [实验任务一]:UML复习 阅读教材第一章复习UML,回答下述问题: 面向对象程序设计中类与类的关系都有哪几种?分别用类图实例说明. 1.  关联关系 (1)  双向关联 (2)  单向关联 (3)  ...

  9. EMS创建独立新用户并分配邮箱

    创建新用户"王春海"并分配邮箱. 以Exchange管理员身份登录EMS控制台.在PowerShell命令行提示符下,键入如下命令: [PS] C:\Windows\system3 ...

  10. JetBrains Rider C# 学习②

    前言 C#从入门到精通 链接:https://pan.baidu.com/s/1UveJI_f-c5Dul3GLIICRHg 提取码:1314 C#入门课程 刘铁猛 链接:https://pan.ba ...