Check alle échte Black Friday-deals Ook zo moe van nepaanbiedingen? Wij laten alleen échte deals zien

Geen toetsenboard in KIOSK mode in eDge

Pagina: 1
Acties:

Vraag


  • theduke1989
  • Registratie: September 2008
  • Laatst online: 20:18
Beste tweakers,

Ik heb weer jullie hulp nodig, aangezien ik vaak betere oplossingen vindt dan bij andere fora.
Niet getreurd, heb natuurlijk mijn huiswerk gedaan, dus ben al wezen snuffelen op het internet naar antwoorden.

Mijn probleem:
Ik heb een KIOSK opstelling gemaakt hier in bedrijf, hier heb ik een tablet voor gebruikt *surfacepro6* was goedkoop en is ook Windows.

Kiosk werkt ansich, want ik krijg de login scherm. Probleem echter is bij dat login scherm *edge* komt er geen toetenboard naar voren. Gebeurd niks. Het inloggen op de tablet zelf met dat account daar komt wel de toetsenboard naar voren. Nu kan ik dus niet inloggen :(

eentje waar ik echt wat mee heb gedaan is het volgende>
Hi all, I've seen this raised a couple of times on here with varying successful answers, but just thought i'd post what worked for me in the hope that it saves some people a few days of stress.
Credit goes to this thread here in the microsoft forums https://learn.microsoft.c...kiosk-mode-on-screen-keyb
Could be worded a little better so I will summarise below what I did based on this advice:
In registry editor, go to HKEY_CURRENT_USER\Software\Microsoft\TabletTip\1.7\ - If not present, right click, select New>DWORD (32 bit) Value and name it EnableDesktopModeAutoInvoke. Double click to edit this and set the value to 1.
Repeat the above but instead name the second DWORD entry DisableNewKeyboardExperience with the same value of 1
Next, go to HKEY_CURRENT_User\Software\Microsoft\windows\CurrentVersion\ImmersiveShell\ - If not present, right click, select New>DWORD (32 bit) Value and name it TabletMode. Double click to edit and set the value to 1.
Test at this point as this may fix it. If like me there was no luck, try the following:
4. Expand HKEY_Users. You will see several folders (.DEFAULT, S-1-5-18 etc). Expand each one and go to the same locations as the previous steps e.g HKEY_USERS\.DEFAULT\Software\Microsoft\TabletTip\1.7\ and HKEY_USERS\.DEFAULT\Software\Microsoft\windows\CurrentVersion\ImmersiveShell\ and add the same DWORD values written above. If the folder does not contain a 'Software' sub folder, it can be ignored.
For me, the keyboard didnt start working until every 'Software' folder under HKEY_CURRENT_USER and HKEY_USERS contained the DWORD values, but I encourage testing after each added key.
If you do get a different result, please post it here. Would be interesting to see if any patterns emerge!
Thanks for reading if you did, and I hope this helps!
https://learn.microsoft.c...on-screen-keyboard-is-not

Maar het werkt dus niet,

Het rare is, de regkeys zijn alleen voor de locale account?
Want de kiosk account zie je dus niet, wat ik dus raad vindt.

iemand die me kan helpen?

Beste antwoord (via theduke1989 op 18-11-2025 12:24)


  • The_Doman
  • Registratie: Augustus 2005
  • Laatst online: 23:29
theduke1989 schreef op dinsdag 18 november 2025 @ 11:09:
Het rare is, de regkeys zijn alleen voor de locale account?
Want de kiosk account zie je dus niet, wat ik dus raad vindt.
Hier werd geadviseerd om HKLM te gebruiken voor de aanpassingen:

Reddit: Keyboard does not work in the Edge on Windows 11 Pro with user Kiosk Mode
So a coworker ran into this at my last job.
Iirc it's because the on-screen keyboard is considered an app and so it doesn't work in Kiosk mode.
Reddit: Windows 11 Kiosk Mode On Screen Keyboard Not Appearing - Fixed!
This is what we have been using on our kiosk setups to apply on screen keyboard
code:
1
2
3
reg add HKLM\Software\Microsoft\TabletTip\1.7\ /v EnableDesktopModeAutoInvoke /t REG_DWORD /d 1
reg add HKLM\Software\Microsoft\TabletTip\1.7\ /v DisableNewKeyboardExperience /t REG_DWORD /d 1
reg add HKLM\Software\Microsoft\windows\CurrentVersion\ImmersiveShell\ /v TabletMode /t REG_DWORD /d 1
HKLM assigns the same setting for all users, why we set that there, you can of course use HKEY_User and correct sid but we rather fix it that way :)
Just a side note that you need to reboot machine when changing the HKLM reg keys to take affect

Alle reacties


  • reinier68
  • Registratie: Februari 2007
  • Laatst online: 21:46
@theduke1989
Hoe heb je KIOSK mode aangezet? Ik kan me voorstellen dat bij een "shell replacement" met Edge je ook je keyboard functies onderdrukt, die drivers komen uit het OS, niet uit Edge.

Linkje van MS : https://learn.microsoft.c...edge-configure-kiosk-mode
Ik kan zo snel niet iets vinden wat specifiek de Surface betreft in relatie tot touch screen functies. Wel iets in relatie tot het keyboard: Edge ondersteund geen Tablet mode. En daarom zal je geen pop-up keyboard zien. Workaround lijkt te zijn: sign into the assigned access account (without assigned access turned on) and put it in tablet mode. Turned AA back on

[ Voor 24% gewijzigd door reinier68 op 18-11-2025 11:37 ]


Acties:
  • Beste antwoord

  • The_Doman
  • Registratie: Augustus 2005
  • Laatst online: 23:29
theduke1989 schreef op dinsdag 18 november 2025 @ 11:09:
Het rare is, de regkeys zijn alleen voor de locale account?
Want de kiosk account zie je dus niet, wat ik dus raad vindt.
Hier werd geadviseerd om HKLM te gebruiken voor de aanpassingen:

Reddit: Keyboard does not work in the Edge on Windows 11 Pro with user Kiosk Mode
So a coworker ran into this at my last job.
Iirc it's because the on-screen keyboard is considered an app and so it doesn't work in Kiosk mode.
Reddit: Windows 11 Kiosk Mode On Screen Keyboard Not Appearing - Fixed!
This is what we have been using on our kiosk setups to apply on screen keyboard
code:
1
2
3
reg add HKLM\Software\Microsoft\TabletTip\1.7\ /v EnableDesktopModeAutoInvoke /t REG_DWORD /d 1
reg add HKLM\Software\Microsoft\TabletTip\1.7\ /v DisableNewKeyboardExperience /t REG_DWORD /d 1
reg add HKLM\Software\Microsoft\windows\CurrentVersion\ImmersiveShell\ /v TabletMode /t REG_DWORD /d 1
HKLM assigns the same setting for all users, why we set that there, you can of course use HKEY_User and correct sid but we rather fix it that way :)
Just a side note that you need to reboot machine when changing the HKLM reg keys to take affect

  • theduke1989
  • Registratie: September 2008
  • Laatst online: 20:18
ik kan alleen eentje vinden, in registry kan ik er meer vinden wat raar is. of beste toepassen op alles?
Afbeeldingslocatie: https://tweakers.net/i/ZE3ct07LleODuVGREtdqlSry1hs=/fit-in/4000x4000/filters:no_upscale():strip_exif()/f/image/jycZTw3qcQVvPGR0CO8Zvuny.png?f=user_large

[ Voor 16% gewijzigd door theduke1989 op 18-11-2025 12:02 ]


  • theduke1989
  • Registratie: September 2008
  • Laatst online: 20:18
The_Doman schreef op dinsdag 18 november 2025 @ 11:42:
[...]

Hier werd geadviseerd om HKLM te gebruiken voor de aanpassingen:

Reddit: Keyboard does not work in the Edge on Windows 11 Pro with user Kiosk Mode

[...]


Reddit: Windows 11 Kiosk Mode On Screen Keyboard Not Appearing - Fixed!

[...]

code:
1
2
3
reg add HKLM\Software\Microsoft\TabletTip\1.7\ /v EnableDesktopModeAutoInvoke /t REG_DWORD /d 1
reg add HKLM\Software\Microsoft\TabletTip\1.7\ /v DisableNewKeyboardExperience /t REG_DWORD /d 1
reg add HKLM\Software\Microsoft\windows\CurrentVersion\ImmersiveShell\ /v TabletMode /t REG_DWORD /d 1



[...]
ik had de hele tijd verkeerd gekeken inderdaad, man man, wat een domme fout. in hklm werkt het wel nu een keyboard, welliswaar eentje die de helft dekt, was beter iets kleiners.