Forum Discussion
lfk73
May 21, 2025Copper Contributor
remove intune based kiosk config
I've been experimenting with Kiosk profiles in intune to drive displays in my org. This is working generally well but the other day I wanted to remove the kiosk config so the machine would revert back to a regular login screen upon boot.
I deleted the mapping of the machine group to the configuration policy but the kiosk profile continues to apply, or at least the config pushed to the machine that make it auto logon to the kiosk config are still present.
How do i properly remove a kiosk profile so it comes off the machine?
1 Reply
Sort By
- danny_grassoCopper Contributor
I've not seen this specifically but I see similar behavior in Intune. Removing the policy association doesn't always revert configuration, in much the same way that removing a GPO didn't.
You could try Custom User Interface catalog setting to revert to default explorer and run a script such as the below to disable auto logon?
# Disable AutoAdminLogon and clear credentials
$regPath = "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon"
Remove-ItemProperty -Path $regPath -Name "AutoAdminLogon" -ErrorAction SilentlyContinue
Remove-ItemProperty -Path $regPath -Name "DefaultUserName" -ErrorAction SilentlyContinue
Remove-ItemProperty -Path $regPath -Name "DefaultPassword" -ErrorAction SilentlyContinue
Remove-ItemProperty -Path $regPath -Name "DefaultDomainName" -ErrorAction SilentlyContinue