admin管理员组文章数量:1334697
So I am trying to use Kiosk Mode on a PC to display digital signage. We don't want to assign a license to the PC, so we are trying to use PowerPoint Viewer.
I get the PC to launch into the Kiosk account automatically, but I am getting an error 0x0004005 error code.
I used this tutorial:
And here is the code:
$assignedAccessConfiguration = @"
<?xml version="1.0" encoding="utf-8"?>
<AssignedAccessConfiguration xmlns="; xmlns:rs5="; xmlns:v4=";>
<Profiles>
<Profile Id="{EDB3036B-780D-487D-A375-69369D8A8F78}">
<KioskModeApp v4:ClassicAppPath="%ProgramFiles(x86)%\Microsoft Office\Office14\PPTVIEW.EXE />
<v4:BreakoutSequence Key="Ctrl+Alt+Del" />
</Profile>
</Profiles>
<Configs>
<Config>
<AutoLogonAccount rs5:DisplayName="PPT Display Kiosk" />
<DefaultProfile Id="{EDB3036B-780D-487D-A375-69369D8A8F78}" />
</Config>
</Configs>
</AssignedAccessConfiguration>
"@
$namespaceName="root\cimv2\mdm\dmmap"
$className="MDM_AssignedAccess"
$obj = Get-CimInstance -Namespace $namespaceName -ClassName $className
$obj.Configuration = [System.Net.WebUtility]::HtmlEncode($assignedAccessConfiguration)
Set-CimInstance -CimInstance $obj
本文标签: xmlWIN 10 Kiosk PC using PowerPoint Viewer Not WorkingStack Overflow
版权声明:本文标题:xml - WIN 10 Kiosk PC using PowerPoint Viewer Not Working - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742352652a2458797.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论