Tuesday, April 10, 2007

load internet explorer the fastest way possipole

Edit your link to start Internet Explorer to have -nohome after it.

For Example:
"C:Program FilesInternet ExplorerIEXPLORE.EXE" -nohome

This will load internet explorer very fast because it does not load a web page while it is loading.

If you want to go to your homepage after it is loaded, just click on the home button.

easily disable massenger

Go into: C:/Program Files/Messenger. Rename the Messenger folder to "MessengerOFF".
This does not slow down Outlook Express or hinder system performance.

fix your internet navigation problem

We have seen a large number of computers coming in with problems navigation on the internet. Also unable to go to Windows update and viurs update sites. Here is a quick fix that also seems to speed navigation up some.

Just for safety create a copy of the file before making changes.

goto

Sometimes you may have a problem with your internet navigation. Well here's how to fix that.

First go to:
C:windowssystem32driversetc (If you have Windows XP)
C:I386 (If you have Windows 2000)

Open the host with notepad.

Next, remove all entries bellow.

127.0.0.1 localhost

Now save and close. Your problem should be fixed!

Display a list of Started Services from the Command Line (Windows)

To interact with the services panel from the command line, Windows provides the Net utility. From the command prompt, you can use this utility to start, stop, pause and continue services. What most people don’t realize is that you can also use this to display a list of services that are running on your computer.

Syntax:

net start

Provides this output(will vary based on your machine):

These Windows services are started:

Adobe Active File Monitor
Adobe LM Service
Application Layer Gateway Service
Ati HotKey Poller
Automatic Updates
Background Intelligent Transfer Service
Bluetooth Service
Cisco Systems, Inc. VPN Service
COM+ Event System
Computer Browser
Cryptographic Services
DCOM Server Process Launcher
DHCP Client
Distributed Link Tracking Client
DNS Client
Error Reporting Service
Event Log
FTP Publishing
Help and Support
HID Input Service
HP WMI Interface
IIS Admin
Infrared Monitor
Logical Disk Manager
Machine Debug Manager
Microsoft Search

Disable Fast User Switching on Windows XP

Fast User Switching is a way for users to quickly switch between accounts without having to fully log off. This is just one more service that doesn’t really need to be started.

  1. Navigate to the Services console in Administrative tools.
  2. Double-click on Fast User Switching and change Startup Type to disable.
  3. Hit the Stop button if the service is started, and then hit OK.
One more unnecessary service stopped

Save CPU and RAM: Disable the Indexing Service on Windows XP

If there is one bloated and unnecessary service that you should immediately disable, it’s definitely the Indexing Service built into Windows XP. The idea behind it is that you can search for files more quickly if it is enabled…. but you are using Google Desktop for that, right?

The indexing service seems to eat up a lot of CPU on every machine I’ve used, especially when you have the amount of files that I’ve got. Let’s disable it.

  1. Navigate to the Services console via Administrative Tools.
  2. Double-click on the Indexing Service and change the startup type to disabled.
  3. Hit the stop button if it is started, which is likely, and then hit OK.

Yet another unnecessary service stopped!

Defrag Multiple Hard Drives At Once In Windows

The Disk Defragment utility in Windows XP does not include a way to defragment all hard drives at the same time, which is inconvienient when you have more than one hard drive in your computer.

The method we are going to use is by creating a batch file to defragment all of the drives, one after the other.

The disk defrag utility in Windows XP can be triggered from the command line with the following syntax:

Windows Disk Defragmenter
Copyright (c) 2001 Microsoft Corp. and Executive Software International, Inc.
Usage:
defrag <volume> [-a] [-f] [-v] [-?]
volume drive letter or mount point (d: or d:volmountpoint)
-a Analyze only
-f Force defragmentation even if free space is low
-v Verbose output
-? Display this help text

First, we’ll create a file named defragall.bat, and place it anywhere you like, as long as you’ll remember where it is. If you want to run it from the command line, you could place it in the \windows directory so that it will be available in the system path.

For each hard drive, add a line to the batch file. For instance, if we want to defragment drives C: , D: , and F: we will add these three lines:

defrag c: -f
defrag d: -f
defrag f: -f

To run the defrag, just either double-click on the batch file or start it from the command line