Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

100 lines
3.2 KiB

  1. ;-------------------------------------------------------------------------------
  2. ; Full screen console Setup File
  3. ;
  4. ;-------------------------------------------------------------------------------
  5. [Version]
  6. Signature=$CHICAGO$
  7. Provider=%MS%
  8. LayoutFile=layout.inf
  9. ClassGUID={4D36E97D-E325-11CE-BFC1-08002BE10318}
  10. Class=System
  11. [ClassInstall]
  12. [DestinationDirs]
  13. FsVga_CopyFiles=11 ; NTKERN wants to load from system directory
  14. FsVga_CopyFiles.nt=12 ; load from system32\drivers
  15. [SourceDiskFiles]
  16. fsvga.sys=1
  17. [SourceDiskNames]
  18. 1="Install disk",disk1
  19. [Manufacturer]
  20. %String1%=FSVGA
  21. [FSVGA]
  22. %String2%=FsVga_Install,*FSVGA932
  23. ;----------------------------------------------------------------------
  24. ; NT install sections:
  25. [FsVga_Install.nt]
  26. CopyFiles=FsVga_CopyFiles.nt
  27. AddReg =FsVga_AddReg.nt
  28. [FsVga_CopyFiles.nt]
  29. fsvga.sys,,,2
  30. [FsVga_AddReg.nt]
  31. HKLM,"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Console\FullScreen","ModeFontPairs",0x00000003,\
  32. 06,00,00,00,\
  33. 01,00,00,00,50,00,15,00,80,02,5E,01,08,00,10,00,\
  34. 01,00,00,00,50,00,19,00,D0,02,90,01,08,00,10,00,\
  35. 01,00,00,00,50,00,1C,00,D0,02,90,01,08,00,0E,00,\
  36. 01,00,00,00,50,00,2B,00,80,02,5E,01,08,00,08,00,\
  37. 01,00,00,00,50,00,32,00,D0,02,90,01,08,00,08,00,\
  38. 02,00,00,00,50,00,19,00,80,02,E0,01,08,00,13,00
  39. HKLM,"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Console\FullScreen\CodePage","932"
  40. HKLM,"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Console\FullScreen\CodePage","936"
  41. HKLM,"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Console\FullScreen\CodePage","949"
  42. HKLM,"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Console\FullScreen\CodePage","950"
  43. [FsVga_DelReg.nt]
  44. HKLM,"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Console\FullScreen","ModeFontPairs"
  45. HKLM,"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Console\FullScreen\CodePage","932"
  46. HKLM,"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Console\FullScreen\CodePage","936"
  47. HKLM,"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Console\FullScreen\CodePage","949"
  48. HKLM,"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Console\FullScreen\CodePage","950"
  49. [FsVga_Install.nt.Services]
  50. AddService=FsVga,2,FsVga_Service,FsVga_EventLog
  51. [FsVga_EventLog]
  52. AddReg=FsVga_EventLog_AddReg
  53. [FsVga_EventLog_AddReg]
  54. HKR,,EventMessageFile,0x00020002,"%SystemRoot%\System32\IoLogMsg.dll;%SystemRoot%\System32\drivers\fsvga.sys"
  55. HKR,,TypesSupported,0x00010003,7
  56. [FsVga_Service]
  57. ServiceType=1 ; SERVICE_KERNEL_DRIVER
  58. StartType=1 ; SERVICE_SYSTEM_START
  59. ErrorControl=1 ; SERVICE_ERROR_NORMAL
  60. ServiceBinary=%12%\fsvga.sys
  61. ;-------------------------------------------------------------------------------
  62. ; FSVGA Optional Subcomponents
  63. ;
  64. ;-------------------------------------------------------------------------------
  65. [Components]
  66. FullScreenConsole=FsConIns.dll, FsConInstallProc, FsVga.inf, HIDE, 7
  67. [Optional Components]
  68. FullScreenConsole
  69. [FullScreenConsole]
  70. OptionDesc = %String2%
  71. Tip = %FSVGA_TIP%
  72. IconIndex = 10
  73. Uninstall = FullScreenConsole.Uninstall
  74. Modes = 0,1,2,3
  75. [FullScreenConsole.Uninstall]
  76. DelReg = FsVga_DelReg.nt
  77. ;----------------------------------------------------------------------