5

We have some students who have figured out how to rotate the screen using either the hotkey combination or right click context menu. It's easy to fix but it's time consuming because no matter how many times I tell people how to fix it there's always someone that will come up to me.

Now I need two things. First, is there a way to disable screen rotation? Second, I need a script to reset the screen rotation to normal on logon and logoff.

The solutions need to be able to be deployed from a Win2003 server to WinXP clients. I have way too many computers to go through by hand to uncheck enable hot keys on the intel control panel.

Michael Hampton
  • 237,123
  • 42
  • 477
  • 940
  • 1
    While I understand that this is being asked in an admin context you may find that the people at Super User can provide more/better answers. Normally cross-posting is frowned upon (although I've never understood why, because many questions cross fields) but this question seems to me to be a perfect candidate for cross-posting. – John Gardeniers Jun 07 '10 at 22:43
  • /agree @John Gardeniers – grufftech Jun 07 '10 at 22:51
  • 1
    @John: One reason to discourage cross-posting is that often one gets migrated to the other site so now there are two and one has to be closed as a duplicate. – Dennis Williamson Jun 07 '10 at 23:17

5 Answers5

5

I wrestled with the same problem. My solution was to lock down the control panel and disable the Intel program. I disabled the Intel program with a startup script that ran a registry update:

startup.bat:

reg delete HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v IgfxTray /f

Jason Berg
  • 18,954
  • 6
  • 38
  • 55
  • So say I do stop the launching of the Intel program. How would I fix computers that are already rotated? –  Jun 08 '10 at 14:37
  • If you've already applied my fix, you can simply launch the IgfxTray program yourself, unrotate the screen, then reboot the computer. – Jason Berg Jun 08 '10 at 15:06
  • I don't suppose you also have a script or some kind of a solution to rotate a screen back to normal on logon and logoff as well? –  Jun 08 '10 at 15:23
  • Sorry I don't. Once I applied this registry edit, I never saw any more sideways screens. – Jason Berg Jun 08 '10 at 15:28
2

Students you say? Sounds like a job for Windows SteadyState.

http://www.microsoft.com/windows/products/winfamily/sharedaccess/default.mspx

Alternatively, you could uninstall the Intel driver package and use the standard VGA driver.

joeqwerty
  • 108,377
  • 6
  • 80
  • 171
  • 3
    It is unfortunate that Microsoft has basically stopped development of Steady State this, and will not be supporting Win7. – Zoredache Jun 08 '10 at 06:21
0

Can you use group policy to lock down the display settings? That will keep their fingers out of the control panel all together. That should also disable the hotkeys that perform the action. Anytime you need to change settings on mass quanities of systems group policy is the best way to manage them.

Jim B
  • 23,938
  • 4
  • 35
  • 58
  • Display settings are already locked down but because this is an Intel driver feature it's causing me some annoyance. –  Jun 07 '10 at 22:24
  • I tested it on a compaq 500b with intel graphics. If the display settings are locked down they shouldn't be able to do anything. (it's not even availabale in controil panel). As jason mentioned you do have to remove the tray application – Jim B Jun 08 '10 at 17:10
-1

reg add HKLM\SYSTEM\CurrentControlSet\Services\ialm\Device0 /v Display1_EnableRotation /t REG_BINARY /d 0 /f

-4

Enter Regedit:

Enter: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Video

Find Key: Display1_EnableRotation=1 Change for =0

Save

Problem Solved

Dave M
  • 4,494
  • 21
  • 30
  • 30
Tooya
  • 1