Archive for the “Windows 2000” Category

This article covers both Windows workstations and servers.

Windows does not include a function that lets you mount an ISO into the Operating System, which normally would force you to convert that ISO to a CD. However there are utilities that will allow you to mount an ISO, which comes in handy, especially if you are wanting to convert CD’s to ISO’s  for transfer to your server.

Virtual Clone Drive

Virtual Clone Drive is a free to use ISO mounting utility that will work on Windows 98/XP/7/Vista and Windows 2000/2003/2008 server. You just install it and it will associate with your ISO’s which you can then can simply double click on an ISO or right click on it and choose to mount it.

Installing Virtual Clone Drive

  1. You can download Virtual Clone Drive by going to http://www.slysoft.com/en/download.html. This install file works for both 32-bit and 64-bit, so there\’s no need to look for different versions of the install. Downclick the application and follow the directions.
  2. Either elect to take the default assoications or choose to manually selection the associations.

    Image

  3. You will need to specify a directory if you choose not to use the default location.

    Image

  4. Once installed, you will need to click on the icon that was placed on your desktop or choose the application from your programs list. There you will be able to set the options for Virtual Clone Drive, such as the amount of drives to emulate and how long the mount history can be seen.

    Image

  5. Finally to mount an ISO, you will need to click on one of the drives you created and choose “Mount”. You will then be able to browse to the ISO and mount it.

     Image

Now you can view the contents of the ISO now by opening the drive, just like you would with a CD or DVD.

Tags: , ,

Comments No Comments »

To enable PAE in Windows Server 2003 and Windows 2000 (and Windows XP), append the /PAE switch to the end of the line of operating system in the Boot.ini file. To disable PAE, use the /NOPAE switch. The Boot.ini normally located in the root folder (i.e. C:\) with Read-Only and Hidden attributes, which are required to be removed before the file can be edited.

For example,

Original Boot.ini:

[boot loader]
timeout=0
default=multi(0)disk(0)rdisk(0)partition(1)\WINNT
[operating systems]
multi(0)disk(0)rdisk(0)partition(1)\WINNT=”Microsoft Windows 2000 Advanced Server”
/fastdetect

Change the Boot.ini to become:

[boot loader]
timeout=0
default=multi(0)disk(0)rdisk(0)partition(1)\WINNT
[operating systems]
multi(0)disk(0)rdisk(0)partition(1)\WINNT=”Microsoft Windows 2000 Advanced Server”
/fastdetect /PAE

For Bootcfg command, use:

bootcfg /raw "/pae" /A /ID 1

Restart the computer after modification to make the change effective.

Note that even with PAE enabled, there is still memory limit imposed by the operating system itself. The table below list the maximum memory support with PAE enabled for Windows 2000, Windows Server 2003 and Windows XP. Most 32-bit client based Windows operating system, such as Windows XP and Windows Vista (see way to use large memory of more than 4GB in 32-bit Windows Vista), has OS level limit that restricts the maximum amount of memory able to be used to 4GB.

Operating system Maximum memory support with PAE
Windows 2000 Advanced Server 8 GB of physical RAM
Windows 2000 Datacenter Server 32 GB of physical RAM
Windows XP (all versions) 4 GB of physical RAM*
Windows Server 2003 (and SP1), Standard Edition 4 GB of physical RAM*
Windows Server 2003, Enterprise Edition 32 GB of physical RAM
Windows Server 2003, Datacenter Edition 64 GB of physical RAM
Windows Server 2003 SP1, Enterprise Edition 64 GB of physical RAM
Windows Server 2003 SP1, Datacenter Edition 128 GB of physical RAM
Tags: , , , , ,

Comments No Comments »