Tag: FAT

How to Boost performance by a good partitioning scheme

February 05, 2009 by Jason

Although a PC used for writing doesn’t need to be a high-performance computer, its performance can be improved by a good partitioning scheme. The biggest boost comes from my Paging partition on drive H, which is found on my second physical disk. I use this partition to boost performance in the following ways:

Move the paging file there. A well-known method for improving performance on a Windows-based computer is to move the paging file (pagefile.sys) from its usual location on drive C to its own separate partition on a separate physical drive.

Keep the Paging partition small (4 GB). By default the initial size of your paging file is 1.5 Ă— RAM and its maximum size is 3 Ă— RAM. So if your computer has 1 GB of RAM, which is pretty good for a desktop productivity computer, then setting your Paging partition to 4 GB gives you more than enough room for your paging file without wasting disk space that could be used for other purposes like storing data. Read More»

Install Windows Vista Lite from your Flash Drive

September 29, 2008 by Jason

Open up an administrator mode command prompt by right-clicking on the shortcut and choosing Run as Administrator, then type in diskpart to load up the disk partitioning command line tool.

The most important step is to run the following command, which will give you the numbers of the disks, so you can use it in the next command (and not accidentally remove a partition on another drive).

list disk

Now that you know the correct number for the disk, you can use the select disk command, substituting the number 1 for whatever number your flash drive is set to: Read More»