VirtualBox

source: vbox/trunk/src/VBox/Additions/WINNT/Installer/RegCleanup.cpp@ 61908

Last change on this file since 61908 was 57372, checked in by vboxsync, 9 years ago

scm: fixes in previous cleanup run.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.8 KB
Line 
1/** @file
2 *
3 * delinvalid - remove "InvalidDisplay" key on NT4
4 *
5 * Copyright (C) 2006-2010 Oracle Corporation
6 *
7 * This file is part of VirtualBox Open Source Edition (OSE), as
8 * available from http://www.virtualbox.org. This file is free software;
9 * you can redistribute it and/or modify it under the terms of the GNU
10 * General Public License (GPL) as published by the Free Software
11 * Foundation, in version 2 as it comes in the "COPYING" file of the
12 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
13 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
14 */
15
16/*
17 Purpose:
18
19 Delete the "InvalidDisplay" key which causes the display
20 applet to be started on every boot. For some reason this key
21 isn't removed after setting the proper resolution and even not when
22 doing a driver reinstall. Removing it doesn't seem to do any harm.
23 The key is inserted by windows on first reboot after installing
24 the VBox video driver using the VirtualBox utility.
25 It's not inserted when using the Display applet for installation.
26 There seems to be a subtle problem with the VirtualBox util.
27 */
28
29//#define _UNICODE
30
31#include <windows.h>
32#include <setupapi.h>
33#include <regstr.h>
34#include <DEVGUID.h>
35#include <stdio.h>
36
37#include "tchar.h"
38#include "string.h"
39
40
41/*********************************************************************************************************************************
42* Defined Constants And Macros *
43*********************************************************************************************************************************/
44
45/////////////////////////////////////////////////////////////////////////////
46
47
48BOOL isNT4 (void)
49{
50 OSVERSIONINFO OSversion;
51
52 OSversion.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
53 ::GetVersionEx(&OSversion);
54
55 switch (OSversion.dwPlatformId)
56 {
57 case VER_PLATFORM_WIN32s:
58 case VER_PLATFORM_WIN32_WINDOWS:
59 return FALSE;
60 case VER_PLATFORM_WIN32_NT:
61 if (OSversion.dwMajorVersion == 4)
62 return TRUE;
63 else return FALSE;
64 default:
65 break;
66 }
67 return FALSE;
68}
69
70int main (int argc, char **argv)
71{
72 int rc = 0;
73
74 /* This program is only for installing drivers on NT4 */
75 if (!isNT4())
76 {
77 printf("This program only runs on NT4\n");
78 return -1;
79 }
80
81 /* Delete the "InvalidDisplay" key which causes the display
82 applet to be started on every boot. For some reason this key
83 isn't removed after setting the proper resolution and even not when
84 doing a driverreinstall. */
85 RegDeleteKey(HKEY_LOCAL_MACHINE, TEXT("SYSTEM\\CurrentControlSet\\Control\\GraphicsDrivers\\InvalidDisplay"));
86 RegDeleteKey(HKEY_LOCAL_MACHINE, TEXT("SYSTEM\\CurrentControlSet\\Control\\GraphicsDrivers\\NewDisplay"));
87
88 return rc;
89}
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette