Jump to content

Recommended Posts

Posted

Hi,

 

Sorry if this has been asked a million times before. Looking into way to prevent students from opening the Ease Of Access controls at Windows 10 logon.

 

I've been able to follow a guide to deny Everyone access to the Utilman.exe but am wondering if there is a script out there to do this as at the moment I'll be stuck manually doing this on each machine.

 

Thanks,

Posted
Yes, I do this programatically on all student facing PCs. I think I just used the permissions settings within the computer config section of a GPO - but I’ll try to remember to check tomorrow. That policy is still active on my domain so it hits any new PCs.
  • Thanks 1
Posted
Computer Configuration/Policies/Windows Settings/Security Settings/File System -->Add File %SystemRoot%\System32\Utilman.exe -->Configure this file or folder then->Propogate / Edit Security --> Everyone/Deny
Posted
Computer Configuration/Policies/Windows Settings/Security Settings/File System -->Add File %SystemRoot%\System32\Utilman.exe -->Configure this file or folder then->Propogate / Edit Security --> Everyone/Deny

 

Unfortunately, we just don't have access to adjust GPO settings (as ridiculous as that is). Which is why I'm having to resort to VBS or a batch file script to change Utilman.exe owner to Administrator and then use icacls to adjust the settings. I'm not that great with scripting and so far can only work out how to use takeown to change owner to Administrator.

Posted (edited)
Looking into way to prevent students from opening the Ease Of Access controls at Windows 10 logon.

If you are using Windows 10 Enterprise or Education you could enable the Custom Logon device lockdown feature which will completely remove the Ease Of Access button from the logon screen. To do this, enable the feature then modify the 'BrandingNeutral' registry value. An '8' hides the button, while a '0' will show it again.

 

This PowerShell script will do both things for you...

 

#Requires -RunAsAdministrator

If (!(Get-WindowsOptionalFeature -Online -FeatureName 'Client-EmbeddedLogon').State -eq 'Enabled') {
   Enable-WindowsOptionalFeature -Online -FeatureName 'Client-EmbeddedLogon' -NoRestart
   New-ItemProperty -Path 'HKLM:\Software\Microsoft\Windows Embedded\EmbeddedLogon' -Name BrandingNeutral -Value 8 -PropertyType DWord -Force
}

 

Before

 

Hdtudd.jpg

 

After

 

sTAwxk.jpg

Edited by Arthur
  • Thanks 1

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...