Jump to content

Recommended Posts

Posted

I leave the accessibility settings turn on just in case we have a disabled student that requires them. I've found they can be used for messing settings up for uses if a student is logged on then his "mate" changes the zoom settings or such like it can be a PITA to sort out.

 

I was wondering if you guys/gals, have the accessibility settings and have any of your users ever abused them?

 

I'm considering turning them off and allowing them for certain users only upon request.

Posted
It would be good to know how they are completely disabled - no matter what I do, they still manage to set the login screen so that it's black and typing invisible text...then when you try to use the commands to undo it, they don't work so results in a re-image of the PC!
Posted (edited)
We've replaced the exe with one of our own scripts (turned exe- password protected of course). that way we dont have to login to get certain info / webbrowser / ipaddress /etc. Edited by daveyboy
Posted

The poorest code in the world - I really must learn to do better. Anyways, an example for you.

 

 

 

Local $sPasswd = InputBox("Zen", "Enter your password.", "", "*")

If $sPasswd ="" Then

 

; ************** Run Imaging Agent ********************

$Zisengine = "C:\Program Files (x86)\Novell\ZENworks\bin\preboot\ZISWIN.EXE"

Run($Zisengine, "")

sleep(1000)

 

WinKill("ZENworks Imaging Windows Agent", "")

 

; ************** END Run Imaging Agent ********************

 

 

; ************** IP & COMPNAME ********************

 

Local $sPublicIP = @IPAddress1

Local $stime = @HOUR & ":" & @Min & " - " & @MDAY & "/" & @mon & "/" & @YEAR

 

$SplashBox = "IP: " & $sPublicIP & @CRLF & @CRLF & "Computer Name: " & @COMputername

 

 

SplashTextOn("", $SplashBox, 400, 170, -1,-1 , 1, -1, -1, 700)

Sleep(4000)

 

SplashOff()

 

; ************** END IP & COMPNAME ********************

 

 

; ************** ADD REGKEY & REBOOT ********************

 

 

ElseIf $sPasswd ="" Then

 

$CMD = "reg add HKLM\SOFTWARE\Novell\Authentication\NCCredProvider /v ComputerOnlyLogon /t REG_DWORD /d 1 /f"

RunWait @COMSpec & " /c " & $CMD)

 

$SplashBox ="Done"

SplashTextOn("", $SplashBox, 400, 170, -1,-1 , 1, -1, -1, 700)

Sleep(2000)

SplashOff()

 

Shutdown(6)

 

; ************** END ADD REGKEY & REBOOT ********************

 

Else

 

EndIF

Posted

i'd love to know how to stop the students doing this to the login screen if anyone can help as the shortcuts don't work to take it back to normal, as I've disabled stuff in GPO.

 

14-10-2015 12-17-05.jpg

Posted
About five years ago in a previous job I remember spending a while on finding a decent resolution to this for Vista. I think in the end it was a combination of things, disabling the EoA button on the logon screen, it was called utilman.exe back then, not sure if it still is. Then a registry edit to stop high contrast from being enabled. I can dig it out if necessary.

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