MCSE Boot Camp Training

Customize the Title bar text of the Internet Explorer.

1. Click Start > Run > Type gpedit.msc
2. Click User Configuration > Windows Setting > Internet Explorer Maintenance > Browser User Interface
3. Double click on Browser Title
4. Click on Customize Title Bars
5. Change the text to what whatever you want
6. Click on Ok

 

Speed Up Browsing
When you connect to a web site your computer sends information back and forth.  Some of this information deals with resolving the site name to an IP address, the stuff that TCP/IP really deals with, not words.  This is DNS information and is used so that you will not need to ask for the site location each and every time you visit the site.  Although Windows XP and Windows XP have a pretty efficient DNS cache, you can increase its overall performance by increasing its size.

You can do this with the registry entries below:

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Dnscache\Parameters]
"CacheHashTableBucketSize"=dword:00000001
"CacheHashTableSize"=dword:00000180
"MaxCacheEntryTtlLimit"=dword:0000fa00
"MaxSOACacheEntryTtlLimit"=dword:0000012d

Make a new text file and rename it to dnscache.reg.  Then copy and paste the above into it and save it.  Merge it into the registry.


Click here to continue :
 

MCSE Boot Camp | MCSE Training | MCSE Boot camps India | CCNA Boot camp | CCNP Boot camp USA | Microsoft Bootcamp | Cisco Bootcamps | Vibrant

MCSE Security Boot Camp Certification Training Microsoft MCSE

MCSE Security Boot camp, MCSE Security Training, MCSE Security Bootcamp Training, CompTIA Security Boot camp, MCSE Security Specialist Bootcamp, Vibrant

MCSE Security Boot Camp, Security Training, MCSE Security+ Boot camps UK, Comptia Security+ Bootcamp, Vibrant

Security Boot camp, Security Training, MCSE Security Bootcamp Training, CompTIA Security Boot camp, MCSE Security Specialist Bootcamp, Vibrant

UK MCSE Boot Camp, Japan MCSE Training, Australia MCSE Boot camps, CCNA Boot camp, CCNP Boot camp USA, Microsoft Bootcamp, Cisco Bootcamps, Vibrant

 

 

 

MCSE Boot Camp, CCNA Bootcamp, CCNP Boot camp training in UK, USA, JAPAN, India
CCNA Training, MCSE Training, A+ Certification, MCSA, CCNP, Network+, Security+, CISSP, MCSD, CCSP,

MCSE Bootcamp Training - Cheapest, Fast, Guaranteed MCSE certification

 

MCSE Boot Camp, CCNA Bootcamps, CCNP Boot camp Certification Training

MCSE Guide

Free MCSE
Free MCSE Training
MCSE
MCSE 2003
MCSE Books
MCSE Boot Camp
MCSE Brain dumps
MCSE Certification
MCSE Exam
MCSE Free
MCSE Jobs
MCSE Logo
MCSE Online
MCSE Online Training
MCSE Practice
MCSE Practice Exams
MCSE Practice Tests
MCSE Requirements
MCSE Resume
MCSE Salary
MCSE Self Paced Training Kit
MCSE Study
MCSE Study Guide
MCSE Study Guides
MCSE Test
MCSE Testing
MCSE Training
MCSE Training Kit
MCSE Training Video
MCSE Windows 2003
Microsoft MCSE Training
Training MCSE
Windows 2003 MCSE

 

 

OS Fundamentals

SCANDISK Is a utility that checks your hard disk for logical (lost clusters, cross-linked files, directory structure) and physical errors on the drive. Scandisk can then repair the damaged areas. All window versions except NT come with scandisk. If you are using win 3.1 you have to exit to DOS and use its version.

If you do not shut down the computer properly win 95 OSR2 and 98 will run the DOS version of scandisk automatically next time you start up your computer.

Win 9x provides two versions of Scandisk: a graphical windows-based version Scandskw.exe and an DOS-based version Scandisk.exe. No matter which version name you type while in windows, either from the run box or a DOS prompt the windows version will run, you must exit to DOS to run its version.

DEFRAG Starts Disk Defragmenter which rearranges files and un used space on your hard disk so that programs run faster.

Files are stored in clusters and over time, as programs read and write to a hard disk, these clusters can become fragmented, that is spread throughout the drive. Causing the hard disk to jump all over the drive to read and write data. What defrag does is realign these clusters in sequence, so programs will load faster.

In windows 98 Defragmenter also uses a process called Task Monitor which automatically monitors programs you use and records their disk access patterns, and number of times these programs are used. This information enables Defragmenter to favor more frequently used programs in optimizing the disk.

When running Defragmenter you should always close all programs, and disable any screen savers.

Windows 2000 automatically optimizes disk use. To optimize a disk manually, right-click it in My Computer, click Properties, and then, on the Tools tab, click Defragment Now.

EDIT Starts Dos-based ASCII text editor.

Syntax: EDIT [/B] [/H] [/R] [/S] [/nnn] [file]

  • /B Forces monochrome mode.
  • /H Displays the maximum number of lines possible for your hardware.
  • /R Loads file in read-only mode
  • /S Forces the use of short filenames.
  • XCOPY Copies files and directory trees. XCOPY is similar to the COPY command except that it has many more switches that allow considerable control over exactly what is copied when using wildcards.

    Syntax: XCOPY source [destination] [/Switches]

  • /E Copies the complete sub directory structure of source and all files therein.
  • /S Copies the complete sub directory structure of source and all files therein but does not copy empty sub directories
  • /T Copies the sub directory structure of source but does not copy any files and does not copy empty sub directories To include empty sub directories, use with the /E switch.
  • COPY Is used to copy one or more files to another location.

    Syntax: COPY source [destination]