Monday, November 30, 2009

Identify your Systems Uptime

Uptime is a measure of the time a computer system has been "up" and running.
The system uptime is very important for system administrators. Many times normal users like to keep the track of their PC.

Here I am showing 5 ways (Some Commands and Some Very Small and Free Utilities) to know How long has Your System been Running without Reboot.

• Using systeminfo command

The systeminfo command tells us all about a computer system. Here you can get the system uptime as well as the original date and time of the OS installation. This command works on Windows XP.

1. Click on Start > Run
2. Type CMD (Will open Command Terminal)
3. Type systeminfo
4. Find system uptime there, you will also get install date and time above the uptime

It also displays detailed configuration information about a computer and its operating system, including operating system configuration, security information, product ID, and hardware properties, such as RAM, disk space, and network cards.

Automate Disk Cleanup

Disk Cleanup (cleanmgr.exe) is a computer maintenance utility included in Microsoft Windows designed to free up disk space on a computers' hard drive. The utility first searches and analyzes the hard drive for files that are no longer of any use, and then removes the unnecessary files. There are a number of different file categories that Disk Cleanup targets when performing the initial disk analysis:

• Compression of old files
• Temporary Internet files
• Temporary Windows file
• Downloaded Program files
• Recycle Bin
• Removal of unused applications or optional Windows components
• Setup Log files
• Offline files



You can use command-line options to specify that Cleanmgr.exe cleans up certain files. You can then schedule the task to run at a specific time by using the Scheduled Tasks tool.

To start the Disk Cleanup tool, either run the Cleanmgr.exe command, or click Start, point to Programs, point to Accessories, point to System Tools, and then click Disk Cleanup.

Disk Cleanup supports the following command-line options:

• /d driveletter: - This option specifies the drive that you want Disk Cleanup to clean.
• /sageset: n - This option displays the Disk Cleanup Settings dialog box and also creates a registry key to store the settings that you select. The n value, which is stored in the registry, allows you to specify tasks for Disk Cleanup to run. The n value can be any integer value from 0 to 65535. To have all of the options available when you use the /sageset option, you might need to specify the drive where Windows is installed.

• /sagerun: n - This option runs the specified tasks that are assigned to the n value if you use the \sageset option.

For example, in Scheduled Tasks, you could run the following command after you run the cleanmgr /sageset:11 command:

cleanmgr /sagerun:11

This command runs Disk Cleanup and includes the options that you specified with the cleanmgr /sageset:11 command.

Sunday, November 29, 2009

Get Rid Off User Accounts from the Login Screen in Windows XP

Sometimes it is very annoying to see more than one user account on the login screen. So how we can hide that other user account from the login screen?

There’s a simple step which can use to hide accounts from the login screen, or we could alternatively delete the user account if you really don’t need it. Both methods are listed below.

Manual Registry Hack

Open up regedit.exe through the start menu Run box, and then navigate down to the following key:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\
CurrentVersion\Winlogon\SpecialAccounts\UserList


On the right-hand side you’ll see a list of keys that correspond to user accounts that are considered “Special” and are not to be shown on the login screen.

Create a new DWORD value with the same name as the user name that you want to hide and give the value as 0. To unhide the account, simply delete the registry key that you created.

The next time you log off you’ll see that the other account is gone.

Login to Hidden Account

You can still login to the account even though it’s not shown… You’ll just have to use a little trick.

At the login screen, just hit the Ctrl+Alt+Delete combination twice in a row, and you’ll be presented with the old-school login screen, where you have to manually enter the username.

Type the name and password of the hidden User account, and login.

How To Delete User Account

Alternatively you can always delete the user account if you are absolutely sure that you don’t need that user account anymore. Right-click on “My Computer” and choose “Manage”

Navigate down through “Local Users and Groups” and then Users, and then locate the username in the list that you’d like to get rid of.

Just right-click and choose Delete. Note that this step cannot be reversed, so make sure you only delete accounts you really really don’t want anymore. If you are unsure, you can just hide them using the first option above.

Disable Autoplay feature for Audio CDs and USB Drives

Sometimes it is very annoying when we plug laptop into my external hard drive… The Autoplay window pops up and asks what we want to do with the files, which may be fine the first time, but definitely isn’t after a year of that.

The following are the steps to disable Autoplay of Audio Cds and USB drives:
Go to Start Menu \ Run and type in:

gpedit.msc

You will see the Group Policy window. You should select Administrative Templates and then System in the tree view:

You will see an item in the right side pane called “Turn off Autoplay”

Double click the item, and set the radio button to Enabled, and change the “Turn off Autoplay on” to All Drives.

Now you should be safe from the autoplay problem.

Perform Disk defragmentation On Multiple Hard Drives At Once In Windows

Windows XP does not include a way to defragment all hard drives at the same time, which is hard when we have more than one hard drive in our computer.

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

The disk defragmentation 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 [-a] [-f] [-v] [-?]
volume drive letter or mount point (d: or d:\vol\mountpoint)
-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 defragmentall.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.

Delete Browsing History in Internet Explorer7 From the Command Line

Everyone likes to create a batch file to automate cleanup on their systems, and probably want to include at least one of these commands in their batch script.

We can automate any one of the functions on the Internet Explorer 7.

And here are the commands that correspond to the different buttons. The most important one from a cleanup perspective is the first, which will delete just the temporary internet files that are cluttering up your computer.

To use these commands, just run them from the command line,

Temporary Internet Files
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8

Cookies
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 2

History
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 1

Form Data
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 16

Passwords
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 32

Delete All
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 255

Delete All – “Also delete files and settings stored by add-ons”
RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 4351

These commands should work in Internet Explorer 7 on XP or on Windows Vista.

Friday, November 27, 2009

About Windows XP

Microsoft Windows XP is a line of operating systems produced by Microsoft for use on personal computers, counting home and business desktops, laptops, and media centers. It was released in 2001. The name "XP" abbreviates "eXPerience".

Windows XP is the successor to both Windows 2000 Professional and Windows Me, and is the first consumer-oriented operating system produced by Microsoft to be built on the Windows NT kernel and architecture. Windows XP was first released on October 25, 2001, and over 400 million copies were in use in January 2006, according to an estimate in that month by an IDC analyst. It was succeeded by Windows Vista, which was released to volume license customers on November 8, 2006, and worldwide to the general public on January 30, 2007. Direct OEM and retail sales of Windows XP ceased on June 30, 2008. Microsoft continued to sell XP through their System Builders (smaller OEMs who sell assembled computers) program until January 31, 2009. XP may continue to be available as these sources run through their inventory or by purchasing Windows Vista Ultimate or Business and then downgrading to Windows XP.

The most common editions of the operating system are Windows XP Home Edition, which is targeted at home users, and Windows XP Professional, which offers additional features such as support for Windows Server domains and two physical processors, and is targeted at power users, business and enterprise clients. Windows XP Media Center Edition has additional multimedia features enhancing the ability to record and watch TV shows, view DVD movies, and listen to music. Windows XP Tablet PC Edition is designed to run stylus applications built using the Tablet PC platform.

FAQ

FAQ About Windows Vista

  1. About Windows XP
  2. How to install Windows XP
  3. Different Available Version of Windows XP
  4. How to Upgrade Windows 98 to Windows XP
  5. Windows XP Hardware Requirements

Contact

Get 24/7 online computer help and support for all of your computer repair needs with PcCare247 Online Technical Support Services.

You can reach us at www.pccare247.com or Call Us @ +91 - 124 - 4655208

Corporate Office

Connexxions Infotech Services (P) Ltd.
Office No. 2G, Ground Floor,
DLF Cybercity, Building No. 10C,
Gurgaon, Haryana - India
Cell : +91 - 9650660044
Landline : +91 - 124 - 4655208
Fax : +91 - 124 - 4655299
E-mail : karan.agrawal@iconnexxions.com