home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / WindowsServerTrial / server.iso / sources / install.wim / 2 / Windows / System32 / autoexec.nt < prev    next >
Text File  |  2006-09-18  |  2KB  |  41 lines

  1. @echo off
  2.  
  3. REM AUTOEXEC.BAT is not used to initialize the MS-DOS environment.
  4. REM AUTOEXEC.NT is used to initialize the MS-DOS environment unless a
  5. REM different startup file is specified in an application's PIF.
  6.  
  7. REM Install CD ROM extensions
  8. lh %SystemRoot%\system32\mscdexnt.exe
  9.  
  10. REM Install network redirector (load before dosx.exe)
  11. lh %SystemRoot%\system32\redir
  12.  
  13. REM Install DPMI support
  14. lh %SystemRoot%\system32\dosx
  15.  
  16. REM The following line enables Sound Blaster 2.0 support on NTVDM.
  17. REM The command for setting the BLASTER environment is as follows:
  18. REM    SET BLASTER=A220 I5 D1 P330
  19. REM    where:
  20. REM        A    specifies the sound blaster's base I/O port
  21. REM        I    specifies the interrupt request line
  22. REM        D    specifies the 8-bit DMA channel
  23. REM        P    specifies the MPU-401 base I/O port
  24. REM        T    specifies the type of sound blaster card
  25. REM                 1 - Sound Blaster 1.5
  26. REM                 2 - Sound Blaster Pro I
  27. REM                 3 - Sound Blaster 2.0
  28. REM                 4 - Sound Blaster Pro II
  29. REM                 6 - SOund Blaster 16/AWE 32/32/64
  30. REM
  31. REM    The default value is A220 I5 D1 T3 and P330.  If any of the switches is
  32. REM    left unspecified, the default value will be used. (NOTE, since all the
  33. REM    ports are virtualized, the information provided here does not have to
  34. REM    match the real hardware setting.)  NTVDM supports Sound Blaster 2.0 only.
  35. REM    The T switch must be set to 3, if specified.
  36. SET BLASTER=A220 I5 D1 P330 T3
  37.  
  38. REM To disable the sound blaster 2.0 support on NTVDM, specify an invalid
  39. REM SB base I/O port address.  For example:
  40. REM    SET BLASTER=A0
  41.