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.

Monday 27 July 2009

The 19th Carnival of Computer Help and Advice

Welcome to the eighteenth monthly Carnival of Computer Help and Advice - a digest of recent blog articles offering advice on safer and easier computing.

We start this month with a couple of articles about Microsoft Office applications. Excel Matic author Mohit Khurana presents a tutorial explaining How to calculate subtotals using Array functions; and, MrGroove shows How To Delay or Schedule Delivery of Email Using Outlook at groovyPost.com.

For those of you considering purchasing a new computer, Michel of Computer spot/Tech zone offers the first part of a series of articles offering advice about How to buy a computer without getting ripped off. Meanwhile, MikeM presents a Netbook Computer Primer posted at HTS Tech Tips - Computer Tech Tips for Non-Geeks.

Microsoft recently launched their new search engine called Bing. To help users get the most of the innovative features offered by this new search engine, Margaret Garcia published 50 Tips & Tricks for Researching with Bing at Becoming a Computer Technician.

We finish with some practical advice from Mick Hart for anyone wanting to improve their digital photographic portraits. See his tutorial Adobe Photoshop CS4 Tutorials - Creating Awesome Eyes posted at Photoshop Revealed by David Peters.

Many thanks to all those who contributed articles for the carnival.

If you have posted an article offering computer advice that you want to submit to the carnival then use the form over at our Blog Carnival page to submit it for consideration. If you would like to host a future carnival then please leave a comment on this post or on the carnival page. If you don't wish to have the responsibility for selecting articles or writing the carnival post, don't worry I can do that for you.

Thursday 9 July 2009

Customising the Quick Access Toolbar

In a recent post about adding buttons to the toolbars in Microsoft Office applications I pointed out that there is no way to add buttons to the new 'ribbon' that has replaced the old toolbars. Nevertheless, it has come to my attention that there is still one customisable toolbar in the latest versions of Word, Excel and Powerpoint. This is called the 'Quick Access Toolbar'. If you wish to add extra buttons to this toolbar you can do so by following the instructions on the 'Microsoft Office Online' pages. [http://office.microsoft.com/en-us/word/HA012341051033.aspx]

I do not have a copy of MS Office 2007 myself, so I do not know whether you can add a button for the useful 'Past Special' function. If you have a copy of any of the Office 2007 applications, please let me know how you have got on when adding buttons to this toolbar.