I settled on Minix Z83-4 for basic RDSH 2016 thin clients.
I was hoping for something like Windows SteadyState or a KIOSK mode, but the latter requires updates and the former apparently is no longer updated by Microsoft (https://en.wikipedia.org/wiki/Windows_SteadyState)
I managed to get GPEDIT installed on Win 10 Home using this (place in a bat file and run as administrator)
@echo off
pushd "%~dp0"
dir /b %SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientExtensions-Package~3*.mum >List.txt
dir /b %SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientTools-Package~3*.mum >>List.txt
for /f %%i in ('findstr /i . List.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages%%i"
pause
Sorry I don't know how to post that here for easy copy/paste, but I will update post if someone tells me how.
Anyway, I attempted to apply my target kiosk user with a User GPO that replaces the User Environment but its not taking. Maybe Win 10 Home just ignores the applied group policy. I remember something like this working in previous windows version though.
Just looking for tools, suggestions or otherwise.