Windows 10 windows powershell kiosk

  • Thread starter Thread starter jeevatech
  • Start date Start date
J

jeevatech

Guest
hi,

I want to run a app(.exe) in kiosk mode. I found some links of powershell kiosk mode on microsoft's page.

my code is : Set-AssignedAccess -AppUserModelId "{6D809377-6AF0-444B-8957-A3773F02200E}\Notepad++\notepad++.exe" -UserName kiosk

Error: New-CimInstance : The requested object could not be found.
At C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules\AssignedAccess\AssignedAccess.psm1:300 char:13
  • New-CimInstance -ClassName WEDL_AssignedAccess -Property ...
  • ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (WEDL_AssignedAccess:CimInstance) [New-CimInstance], CimException
+ FullyQualifiedErrorId : MI RESULT 6,Microsoft.Management.Infrastructure.CimCmdlets.NewCimInstanceCommand

also tried with : Set-AssignedAccess -AppName notepad++.exe -UserName kiosk

Error: Application was not found. Enter either a valid AppName or AUMID
At C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules\AssignedAccess\AssignedAccess.psm1:272 char:17
  • throw $SCStringTable.ErrorAppNotFound
  • ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : OperationStopped: (Application was...ppName or AUMID:String) [], RuntimeException
+ FullyQualifiedErrorId : Application was not found. Enter either a valid AppName or AUMID

I am running powershell in administrator

using windows 10 pro

version 1709

Os build is16299.611


If some one solved this error please let me know.

More...
 
Back
Top