Jump to content

Recommended Posts

Posted

Hi guys,

 

Bit of an odd one. We have a student who's laptop (domain joined and managed the same as all out other computers) keeps going into high contrast mode.

Does anyone know if there's any way to see when/how high contrast mode is triggered?

I can't find any way to accidentally turn it on, can anyone think of anything?

 

By this point, pretty much everyone involved is thinking user "error", but it would be nice to be sure.

 

Thanks for the help.

Posted

We've not re-imaged the laptop(s) yet as the student has had the problem across multiple devices (All laptops).

 

We've never seen it happen, they only come to us after it's already broken, and no-one else as has either far as we know.

 

It is possible that the student is using the shortcut keys intentionally, but it seems unlikely that they would do this accidentally. I'm still giving them the benefit of the doubt, so was wondering if anyone knew of a way this could be done inadvertently, or at least without an "are you sure" popup.

Posted
Hi guys,

 

Bit of an odd one. We have a student who's laptop (domain joined and managed the same as all out other computers) keeps going into high contrast mode.

Does anyone know if there's any way to see when/how high contrast mode is triggered?

I can't find any way to accidentally turn it on, can anyone think of anything?

 

By this point, pretty much everyone involved is thinking user "error", but it would be nice to be sure.

 

 

 

Thanks for the help.

 

I have seen this happening. It was the profile issue. Deleted the students profile and when logged back new profile was created fine,

  • Thanks 1
Posted

Is there a keyboard shortcut for high contract mode?

 

We've had a few users set their Windows 10 profile to black and white with the shortcut 'Ctrl + Win + C', which I guess could be when they're trying to use 'Ctrl + C'.

  • Thanks 1
Posted

Thanks for all the suggestions.

 

If it is one user across many devices then I would agree that it is a profile issue

We use local profiles for the students, which should clear at shutdown. I'll make sure this is happening on the laptops.

Posted

Here are the scripts

Per User (include it in your logoff script).

Start-Process -wait C:\Windows\resources\Themes\aero.theme

Stop-Process -Name "systemsettings" -Force -Verbose

 

This was an attempt at turning it off Per Machine. But I couldn't get it to work.

 

Start-Transcript -Path c:\temp\hc.log -Verbose

$hcenableds = Get-ChildItem -Path 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\SystemProtectedUserData' -Recurse | Get-ItemProperty | Where-Object -Property HighContrastEnabled -eq '1' | Select-Object -ExpandProperty PsPath

 

$pspathold = 'Microsoft.PowerShell.Core\Registry::HKEY_LOCAL_MACHINE'

 

$hcenableds.pspath -replace [regex]::Escape($pspathold),'HKLM:'

 

 

foreach ($hcenabled in $hcenableds){

Set-ItemProperty -Path $hcenabled -Name 'HighContrastEnabled' -Value '0' -Verbose}

Stop-Transcript -Verbose

  • 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...