Clean-up the RAM to make your system perform good
1.Open a notepad and type FREEMEM=SPACE(64000000).
2.Save the file as RAM.vbs and run the script.
Showing posts with label Hardware. Show all posts
Showing posts with label Hardware. Show all posts
Friday, March 06, 2009
Sunday, February 08, 2009
CONVERTING FAT32 to NTFS in Windows XP:
1. Open Command Prompt. Click Start, point to All Programs, point to Accessories, and then click Command Prompt.
2. Else Press WIN+R key in the keyboard
3. In the command prompt window, type: convert drive_letter: /fs:ntfs
For example, typing convert D: /fs:ntfs would format drive D: with the ntfs format. You can convert FAT or FAT32 volumes to NTFS with this command.
Important Once you convert a drive or partition to NTFS, you cannot simply convert it back to FAT or FAT32. You will need to reformat the drive or partition which will erase all data, including programs and personal files, on the partition.
2. Else Press WIN+R key in the keyboard
3. In the command prompt window, type: convert drive_letter: /fs:ntfs
For example, typing convert D: /fs:ntfs would format drive D: with the ntfs format. You can convert FAT or FAT32 volumes to NTFS with this command.
Important Once you convert a drive or partition to NTFS, you cannot simply convert it back to FAT or FAT32. You will need to reformat the drive or partition which will erase all data, including programs and personal files, on the partition.
Monday, July 21, 2008
WORK INDEPENDENTLY WITHOUT MOUSE (RARE WINDOWS SHORT-CUTS)
I have given below some rare windows shortcuts. With this we need not always depnd on mouse.
To open the below programs, we can type the following commands in the run window.
Add or Remove Programs - appwiz.cpl
Add New Hardware - hdwwiz.cpl
Adjust date and time - timedate.cpl
Add environment variables - sysdm.cpl
Add fonts - fonts
Open Visual Studio.Net - devenv
Open Visual Studio - msdev
Open internet options - inetcpl.cpl
Open desktop properties - desk.cpl
Open paint - mspaint
Open MSWORD - winword
open MSEXCEL - EXCEL
open MSPOWERPOINT - POWERPNT
open MSACCESS - MSACCESS
open infopath - INFOPATH
Mouse properties - main.cpl
keyboard properties - main.cpl keyboard
User Accounts - nusrmgr.cpl
Internet explorer - iexplore
Windows explorer - explorer
Sounds and Audio devices - mmsys.cpl
Regional and Language options - intl.cpl
PowerOptions - powercfg.cpl
Phone and Modem options - telephon.cpl
Network Connections - ncpa.cpl
Accessibility Options - access.cpl
To open the below programs, we can type the following commands in the run window.
Add or Remove Programs - appwiz.cpl
Add New Hardware - hdwwiz.cpl
Adjust date and time - timedate.cpl
Add environment variables - sysdm.cpl
Add fonts - fonts
Open Visual Studio.Net - devenv
Open Visual Studio - msdev
Open internet options - inetcpl.cpl
Open desktop properties - desk.cpl
Open paint - mspaint
Open MSWORD - winword
open MSEXCEL - EXCEL
open MSPOWERPOINT - POWERPNT
open MSACCESS - MSACCESS
open infopath - INFOPATH
Mouse properties - main.cpl
keyboard properties - main.cpl keyboard
User Accounts - nusrmgr.cpl
Internet explorer - iexplore
Windows explorer - explorer
Sounds and Audio devices - mmsys.cpl
Regional and Language options - intl.cpl
PowerOptions - powercfg.cpl
Phone and Modem options - telephon.cpl
Network Connections - ncpa.cpl
Accessibility Options - access.cpl
Labels:
Boot up,
Hardware,
Registry,
Technology,
Windows
Wednesday, June 11, 2008
Motherboard Cleaning Tips
Motherboard is the main part of your computer that contains all hardware components. Your computer motherboard could fry, if you do not keep it clean on periodically basis. Dust is the main cause to heat up your system and heat link to hardware failure. You can save your computer maintenance cost if you clean your computer on the regular basis. This will improve the cooling and performance of the motherboard components.
- To clean your motherboard first unplugs your system power from the electrical outlet.
- Using the screwdriver remove the side covers of your computer case and put them to one side.
- Check all data and power cables connections. Inspect all motherboard PCI and AGP slots.
- Remove all add-on card of your motherboard for example RAM, modem, VGA, sound card and LAN card.
- Now blow the air around all the motherboard sides and keeping away your blower nozzle 4 to 5 inches away from main board components. You can use vacuum cleaner also for this purpose but compressed air is the better solution to clean a system.
- At the end assemble back all cards, cables and side covers of your system.
- I recommend you doing this after every three months if you want to save your system life.
Source: Gathered from Internet, while browsing through a Site.
Labels:
Hardware,
Technology,
Windows
Monday, February 18, 2008
Linux vs Windows - Security
The reason i am writing this post is not becoz i am an expert in linux, but a newbie. As a newbie i think i know the difficuties involved in understanding new concepts and that helps me explain them better.
Linux is always known to be safe from viruses. I installed Ubuntu 7.0 in PC at home and was surprised to find that there was not even a single option related to the Root account.
To explain things better let me start with what a root account is, for the sake of readers who are new to linux. A root account is similar to the administrator account that Windows offers. An admin account gives you complete rights over the system - read,write,execute,install and even crash the system. I soon found out that this was one of the big reasons why Windows has 60,000 odd known viruses while Linux has less than 40. How?? Read on.
If you have installed Windows OS before you would be aware that, the set up provides you with an admin account right at the time of installation itself. Most viruses are transmitted as e-mail attachments. When the unsuspecting users get a mail like "Click here for cool WallPaper downloads", they click it and BANG!!! - in comes the virus. Why does this happen? Becoz you are the admin. The system doesnt interfere with whatever you want to do with it.
SO how does Linux avoid this mishap? Well, the very first thing you ll do when you install Linux is get yourself registered in a Linux forum(Really!! You cannot avoid that). And the very first advice that you will get from any Linux geek is that to think zillion times before you use the Root account(the admin). So, most of us will listen to that and well that is a huge prevention for viruses. When you try to run any executables from a non-admin account the system doesnt let you do that. So every time what you have to do is to log in as root and then click on the attachments and let the virus in. And since most users are known to be reluctant(or lazy) to switch and then come back to have a look at a silly attachment, safety is ensured.
But wait.. There is more to it. What if we dont listen to those geeks and use the root for everything? Then isnt that similar to running windows on a admin account? Yes!! But the latest versions of Linux have come out with an OS that does not have a root. Again the question comes up - So, what if i really want to run an exe that i know is safe? Wont the system
stop me everytime. For this they have a keyword in Linux called "sudo". I think it means - do things like a super user. So if you really want to run that exe, you need to use the sudo command. Now thats double protection. So if you want to run an exe you have to do some work to get it up and running.
Putting it all together - In windows, viruses have an easy way of making it in. But to bring a virus to a Linux box you have to work on it.
source: blogs/167603
Linux is always known to be safe from viruses. I installed Ubuntu 7.0 in PC at home and was surprised to find that there was not even a single option related to the Root account.
To explain things better let me start with what a root account is, for the sake of readers who are new to linux. A root account is similar to the administrator account that Windows offers. An admin account gives you complete rights over the system - read,write,execute,install and even crash the system. I soon found out that this was one of the big reasons why Windows has 60,000 odd known viruses while Linux has less than 40. How?? Read on.
If you have installed Windows OS before you would be aware that, the set up provides you with an admin account right at the time of installation itself. Most viruses are transmitted as e-mail attachments. When the unsuspecting users get a mail like "Click here for cool WallPaper downloads", they click it and BANG!!! - in comes the virus. Why does this happen? Becoz you are the admin. The system doesnt interfere with whatever you want to do with it.
SO how does Linux avoid this mishap? Well, the very first thing you ll do when you install Linux is get yourself registered in a Linux forum(Really!! You cannot avoid that). And the very first advice that you will get from any Linux geek is that to think zillion times before you use the Root account(the admin). So, most of us will listen to that and well that is a huge prevention for viruses. When you try to run any executables from a non-admin account the system doesnt let you do that. So every time what you have to do is to log in as root and then click on the attachments and let the virus in. And since most users are known to be reluctant(or lazy) to switch and then come back to have a look at a silly attachment, safety is ensured.
But wait.. There is more to it. What if we dont listen to those geeks and use the root for everything? Then isnt that similar to running windows on a admin account? Yes!! But the latest versions of Linux have come out with an OS that does not have a root. Again the question comes up - So, what if i really want to run an exe that i know is safe? Wont the system
stop me everytime. For this they have a keyword in Linux called "sudo". I think it means - do things like a super user. So if you really want to run that exe, you need to use the sudo command. Now thats double protection. So if you want to run an exe you have to do some work to get it up and running.
Putting it all together - In windows, viruses have an easy way of making it in. But to bring a virus to a Linux box you have to work on it.
source: blogs/167603
Subscribe to:
Posts (Atom)
