Tuesday 27 October 2009

The 22nd Carnival of Computer Help and Advice

Welcome to the twenty-second monthly Carnival of Computer Help and Advice - a digest of recent blog articles that spread the wealth of PC knowledge.

"Firefox is the second most popular web browser in the world and it continues to gain popularity and market share. With this rapid growth many users, especially new users, are not aware of the wide range of Firefox keyboard shortcuts available. These small combinations of keystrokes when used at the right time can be real productivity boosters. Here are 30 Firefox keyboard shortcuts to help simplify and speed up your daily browsing. Even Firefox veterans may find these helpful." So says Mike from Computer Tech Tips, Technology News and Tech Support. See his article at 30 Firefox Keyboard Shortcuts.

Marco Gustafsson presents An Introduction to Popular E-book File Formats posted at Digital Book Readers.

Support Nerds Computer Repair Blog author Kyle says, "With so many forms of viruses out there surfing the internet safely can be a tough thing for some PC users. Lets first break down a list and definition of the different kinds of infections your PC can get." Learn more at Malware, Viruses, and Spyware, Oh My!.

Staying on the same subject - a warning from Harris Andrea from Tech 21 Century: "Windows Police Pro is another rogue antivirus software which infected millions of computers on the Internet. Although it looks like a legitimate security tool, you need to remove it ASAP because it is a virus itself." Never fear, harris shows us Remove How to Remove Windows Police Pro permanently.

In a simalr vein, Gin G. of Sense Scribe advises us what to do when confronted with suspicious emails in Found a Fishy Phish.

Matthew Paulson explains How to Get Your Data Back When Your Hard Drive Dies at American Consumer News.

Netbooks have become very popular since their introduction (I have one myself). Arthur Pledger sahres Essential Tools: A Netbook Review on his World Domination with Arthur Pledger blog.

Finally this month, Surfer Sam explains New !! How I Made My Own Free Screensaver Slide Show - Let Your Computer be Your Digital Photo Frame on the Surfer Sam and Friends. Life's a Beach !! blog.

If you are interested in hosting a future carnival please leave a comment on this post or use the contact form over at our Blog Carnival page where you can also submit your blog posts for inclusion. Don't worry, if you don't want to write the Carnival post I can do it for you.

More next month.

Friday 9 October 2009

How to sort the Programs Menu

If, like me, you have a lot of applications installed on Windows XP, it can be time consuming to find the folder or icon for the program that you are looking for on the Start menu. You can sort the contents of the Programs menu into alphabetical order, with the folders listed first and then the applications. To do so open up the Start menu and then the Programs menu. Right-click on any folder or icon and click 'Sort ny Name' on the menu that opens.

Sunday 27 September 2009

The 21st Carnival of Computer Help and Advice

Welcome to the twenty-first monthly Carnival of Computer Help and Advice - a digest of recent blog articles providing top tips for PC users. Because so many blog authors submitted high quality posts for inclusion this month, this carnival is a little longer than usual. Nevertheless, there is not enough space to include every submission, so apologies to those bloggers whose articles are not included in this month's carnival.

This month's articles share common themes: health and security. We start with Shannon Wills' article in which she offers health advice in Stuck to Your Computer? Here’s How You Can Avoid Eye Strain posted at Engineering Degree Online. Also, Sense Scribe's Gin G. offers advice on how to protect children while they use the Internet in Web Wise n Oh So Savvy.

A secure PC is a healthy PC. With this in mind, Mike of Computer Tech Tips, Technology News and Tech Support presents his 5 Common Computer Security Mistakes, and What's On My PC author Ramblinrick presents explains how to Identify Poisoned Web Sites Before You Open Them using some free software.

Social networking sites are increasing in popularity, particularly Facebook. Dan Kieta asks Facebook, Friend or Foe? in an article posted at Joe Verminator, in which he looks at the way that malicious software is spread using that site. Harris Andrea deals with another piece of malicious software in How To Remove Personal Antivirus on the Technology in the 21st Century site.

Finally this month, Jules of PCauthorities.com explains How to Fix a Corrupted Registry.

If you are interested in hosting a future carnival please leave a comment on this post or use the contact form over at our Blog Carnival page where you can also submit your blog posts for inclusion. Don't worry, if you don't want to write the Carnival post I can do it for you.

See you all in October. Keep up the good work.

Tuesday 22 September 2009

By Your Command: A Rough Guide to the Command Prompt, Part 2

In a previous post I explained how to navigate to different drives and folders using Command Prompt. I also showed how to list the contents of the current folder using the dir command. We will now look a little closer at this command.

In the tutorial, I suggested typing the following command dir /a-d /b > filelist.txt. We shall not worry about the > filelist.txt part for now, but rather look at the anatomy of the dir command itself to serve as an example of how Command Prompt works.

Following the dir command there are two switches: /a-d and /b. These switches alter the way in which the command works. In this case they adjust what folder contents is listed and how it is presented: /a-d stops the dir command from listing folders; /b prevents the command from showing the extra information you see if you just type dir and hit Return.

You can list all the switches associated with dir by entering dir /? in the Command Prompt. The /? switch provides help for any command it follows. In the case of dir it returns something like this:

This may be a little forbidding for the novice; so, I will give another example of switches in action. If you wanted to list all the folders (or directories as they are known in Command Prompt) at the top level of your D:/ drive you would enter -

dir d: /ad
[Note that switches are not case sensitive]

If you wanted to also list all the sub-folders, you would enter -

dir d: /ad /s

You may notice how all the information scrolls past really quickly. To pause after each page of information you can use the /p switch. Thus, the command becomes -

dir d: /ad /s /p

To list all the mp3 files on drive D: pausing after each page use the following command -

dir d:\*.mp3 /s /p

The asterisk is a wildcard. In other words. it means 'any combination of letters'. So if you wanted to list all the mp3 files with the word 'Beatles' in the filename you would use -

dir d:\*beatles*.mp3 /s /p

The dir command is a good way of having a play with the command prompt safe in the knowledge that you will do no harm to your files. If you have any questions about this command feel free to leave a comment and I will do my best to address them. More commands next time.

Wednesday 9 September 2009

By Your Command: A Rough Guide to the Command Prompt, Part 1

Before the rise of graphical user interfaces (GUIs) the main method of controlling computers was through text based operating systems such as MS-DOS. You can still use these old DOS commands using a facility called Command Prompt that is available in all forms of Windows. In this first part of this rough guide, we will look at how to open the Command Prompt and we will explore some of its features.

You can run the Command Prompt from the Start menu. You will find it in the 'Accessories' folder. Alternatively you can open it by typing cmd in the Run box, which you can either open from the Start menu or by holding down the Windows key and pressing R.

In Windows Vista and 7, certain commands are unavailable unless you run the Command Prompt as an administrator. To do so you can right-click on the icon in the Start menu and select 'Run as administrator' from the menu. You can also use the Run box: type in cmd as before and then hold down the Ctrl and Shift keys and press Enter. You may be required to supply an administrator password at that point.

The Command Prompt will look something like this:


Click on the icon to the right of the title bar [circled in red] to open a menu. There are items in this menu to enable you to edit commands and change the look and feel of the Command Prompt. The usual copy and paste keyboard commands do not work in the Command Prompt so you will have to use the edit menu to do so. This menu offers a variety of other features including 'Find'.

To change the appearance of the Command Prompt, you can either click on 'Properties', which will alter the look and feel of the current session and, should you wish, other sessions started the same way, or you can click on 'Defaults' to change the appearance any Command Prompt you open from now on (Note: this does not over-ride changes made using 'Properties'). Either way, a box will open with a different title and a few different options depending on whether you clicked 'Properties' or 'Defaults'.

'Options' tab


On the 'Options' tab you can change the cursor size from a thin flashing line to a flashing box. The 'Command History' settings alter the way that the Command Prompt remembers previous commands, something that we will explore in a later post. The 'Display Options' enable you to set the Command Prompt to appear full screen if you so desire.

In the 'Edit options' you can activate 'Quick edit mode', which lets you use the mouse to select text. 'Insert mode' functions in the same way as the Insert key, allowing you to either insert what you type or overwrite any text to the right of the cursor. On the 'Defaults' options there is an extra setting: 'AutoComplete'. This enables you to use the Tab key to complete folder and file names.


'Font' tab


You can change the size and style of the displayed font here.


'Layout' tab


You can alter the appearance of the Command Prompt window on this tab. The 'Screen buffer size' options affect the width and number of lines, but do not change the visible screen size. Consequently you may have to use the scroll-bars to see all the text. These are particularly useful if you change the font size. The size of the window itself can be changed using the 'Window Size' settings - no surprise there. You can also decide where the Command Prompt appears on the screen using the 'Window position' settings.


'Colors' tab


If you wish to have yellow text appear on a dark blue background, then this is where you can make it happen. You can also set the colour of the Popup text and background. We will look at some of these popups in later posts.

For those of you eager to impress your friends with your 'old school' computing skills, check out a previous post in which I looked at changing the current directory and listing its contents.

Next time I will look at a few simple commands.

Monday 7 September 2009

Spam comments

I have noticed a marked increase in comments left on this site that are little more than spam. I do not mind that people want to share links here, but I object to comments that contain little more than a list of links to commercial sites.

From now on such comments are subject to removal with no explanation. Please do not let this dissuade you from leaving short comments with a link to your blog or longer comments that refer to commercial sites where they fit in with the theme of this blog: computer help and advice.

Thursday 27 August 2009

The 20th Carnival of Computer Help and Advice

Seasonal greetings and welcome to the twentieth monthly Carnival of Computer Help and Advice. Another digest of blog articles that help you to avoid problems with and to get the most out of your PCs.

I will let the first contributor introduce their own article. Josh Allison of Modern Geeks presents a "simple how-to on researching properly before buying yourself a new laptop or computer along with effective methods to not get conned." Find out more at How to research before buying a new computer or laptop. In a similar vein, Michel asks Apple Macs or PC’s? at Computer-Tech Blog.

After spending all your spare cash on a new computer, you may want to check out Pinyo's list of Best Free Essential Software For Windows posted at Moolanomy Personal Finance. You may also want to consider Mike Pettinato's article Turn Any Web App into a Desktop Application on his gadgetphix blog.

Staying on the subject of software. With the academic year about to start in many parts of the world, Allison Johanson of Best Online Universities.com. lists her 25 Must-Have Firefox Extensions for e-Learners.

Last up this month we have Jules Peters post that offers a variety of Windows Registry Maintenance Tips at PCauthorities.com. Jules says, "With the Windows registry being such a critical component in Windows XP and Vista, you should consider some actions to ensure the registry is optimized. Here are a few tips."

If you have a blog with posts about computer issues and would like to host the next carnival then please leave a comment on this post or use the contact form over at our Blog Carnival page, where you can also submit your blog posts for inclusion in a future carnival.

If you would like to host a future carnival but don't wish to have the responsibility for selecting articles or writing the carnival post, don't worry I can do that for you.

Drop by next month for another selection of blog articles.