Zourous Posted February 4, 2020 Posted February 4, 2020 So this is known as the "Windows boot manager". I'm setting up an image for Students to eventually use which includes two installs of Windows 10. The problem I've got is that on the boot menu you can also select the repair tools that students could use to wipe the whole PC, so not a good idea. I can't see a way of disabling them. Had a look at BCDedit and can't see a way or option of doing it. Not a common task I know, but I'm hoping someone might be able to help as I've googled my hands off with this one.
BOOT Posted February 4, 2020 Posted February 4, 2020 Powershell script I use: New-Item -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\bootim.exe" Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\bootim.exe" -Name "Debugger" -Type "String" -Value "taskill /F /IM bootim.exe" -Force Easily undone if you need to access those options.
Zourous Posted February 4, 2020 Author Posted February 4, 2020 Erm... thanks but that just disables the whole boot menu. Just looking to disable the repair tools that you can access off it.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now