Wednesday, April 22, 2009

Reset the Always Ask Before Opening This Type of File Setting

When downloading files using Internet Explorer, you may see the Open/Save confirmation box (as shown below) for certain file types. If you uncheck the Always ask before opening this type of file checkbox, the preference is saved in the user part of the registry. Also, the configuration is stored in a separate registry value for each file type.

Here is how to reset the Open/Save choice for a specific file type or all file types in Internet Explorer in Windows XP/Vista, Outlook Express and Windows Mail.



EXAMPLE
For example, if you download an Word 2003 file from a Web site and uncheck the above option. the registry is updated with the following registry entry:

HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ Shell \ AttachmentExecute \ {0002DF01-0000-0000-C000-000000000046}
Value name: Word.Document.8
Value type: REG_NONE

Where Word.Document.8 is the ProgID for .doc file types. Examples of other ProgIDs are txtfile, WinZip, xmlfile, wmvfile and so forth.

WINDOWS XP
To reset the Always ask before opening this type of file choice in Windows XP, use these steps:
1. Click Start, Run and type CONTROL FOLDERS
2. Select File Types tab
3. Select the file type from the list for which you wish to reset the Open/Save as option
4. Click Advanced
5. Enable the option named Confirm open after download
6. Click OK.



WINDOWS VISTA
As Windows Vista does not have the File Types tab in the Folder Options applet, you need to edit the registry in order to reset the Open/Save choice made earlier in Internet Explorer.

1. Click Start, type Regedit.exe and press ENTER
2. Navigate to the following branch:
HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ Shell \ AttachmentExecute \ {0002DF01-0000-0000-C000-000000000046}
3. In the right-pane, right-click on the appropriate entry and choose Delete
4. Exit the Registry Editor.

OUTLOOK EXPRESS / WINDOWS MAIL
Outlook Express and Windows Mail store the Always ask before opening this type of file choice in a different registry key. It’s here:

HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ Shell \ AttachmentExecute \ {DEEAA3EC-685F-46AE-8110-8D39A0556B78}

RESETTING THE OPTION FOR ALL FILE TYPES
To reset the Always ask before opening this type of file choice for ALL file types, you don’t even have to open Regedit.exe. You can accomplish this using the Reg.exe command-line tool.

For Internet Explorer in Windows XP and Windows Vista

Open a Command Prompt window (CMD.EXE) and type:
reg delete "HKCU\Software\Microsoft\Windows\Shell\AttachmentExecute\{0002DF01-0000-0000-C000-000000000046}" /va /f

For Outlook Express & Windows Mail
reg delete "HKCU\Software\Microsoft\Windows\Shell\AttachmentExecute\{DEEAA3EC-685F-46AE-8110-8D39A0556B78}" /va /f

Note: To prevent formatting or syntax errors, copy the text from the text box above and paste it exactly in the Command Prompt window.

Wednesday, February 18, 2009

How to remove 'Subscribe to Post' link in Blogger

“Subscribe to: Post Comments (Atom)” link is added to each page on a blogger blog.
This link is for RSS feed and is published on each page. Instead of this link hogging space in not so stylish manner, you can use feedburner subscription link or any swanky RSS feed icon.


For a newbie finding code to remove this link isn’t easy. Not to worry, login into blogger dashboard. Then click on Layout > Edit HTML and then search for "b:include name=’feedLinks’/"
Delete this line and the link will be gone. Please note, you should backup the template before making any changes. Click on ‘Download full template’ button located on the same page. More from Blogger world coming soon!


Removing Newer and Older Post Links in Blogger Blog

If you are using Blogger as blogging platform, you might be used to some of the built-in features, that you consider hard coded, but can be changed with slight template code modification. One of the hacks, presented in this publication, addresses a seemingly minor issue on the page - two links “Older Posts” and “Newer Posts” on the bottom of the page.

For those, who prefer their blog to be maximally close to the static webpages, these links not just unnecessary, but are plainly irritating. There is a way to remove them once and forever. And that is quite easy to do, even for not very experienced users. Note, that this hack will also remove “home” link from the bottom of the blog page.

Open Layout Tab in your blog profile page, choose Edit HTML, and search your code in your blog template for the following text:

#blog-pager-newer-link {
float: left;
}
#blog-pager-older-link {
float: right;
}
#blog-pager {
text-align: center;
}


Now replace that code with the following code:

#blog-pager-newer-link {
display: none;
}
#blog-pager-older-link {
display: none;
}
#blog-pager {
display: none;
}


Save the template and you are done. I hope that was indeed an easy and straightforward one.

Thursday, February 5, 2009

How to fix "BOOTMGR is missing" in Windows Vista

Find yourself receiving "BOOTMGR is missing, Press Ctrl+Alt+Del to restart" message? Don't stress! Its easier to fix than you think. Here's how:

SOLUTION 1

- Get your Vista installation DVD and pop it into your drive.
- Then restart your computer
.
- Set your computer to boot from DVD or CD in your BIOS.

Vista will ask you for language and keyboard layout information, after which you will be asked if you want to re-install Vista or repair your existing installation.
Select Repair. After which Vista's System Recovery Tool will start.

Select Startup Repair and let Vista do its thing! That really is all there is to it!


If that doesn't work try this:


SOLUTION 2

If the previous method does not resolve the problem, you can rebuild the BCD store by using the Bootrec.exe tool in the Windows Recovery Environment. To do this, follow these steps:

- Get your Vista installation DVD and pop it into your drive.
- Then restart your computer.
- Press a key when you are prompted.
- Select a language, a time, a currency, and a keyboard or another input method, and then click Next
- Click Repair your computer
- Click the operating system that you want to repair, and then click Next
- In the System Recovery Options dialog box, click Command Prompt
- Type bootrec /rebuildbcd and then press ENTER

• If Bootrec runs successfully, it will present you with the installation path of a Windows directory. To add the entry to the BCD store, type Yes . A confirmation message appears that indicates the entry was added successfully.

• If Bootrec cannot locate any missing Windows installations, you must remove the BCD store, and then you must re-create it. To do this, type the following commands in the order shown below: (Remember to press ENTER after each command)

bcdedit /export C:\BCD_Backup

ren c:\boot\bcd bcd.old

bootrec /rebuildbcd

- Restart the computer.
------------------------------------------------------------------------------
Alternatively you could have chosen the Command Prompt option instead, and use the following command to fix the boot options only:

bootrec /fixboot



At this point you should be able to reboot your computer, remove the DVD and everything should be working. If not, then head over to our forums and ask your question there. We've got some top-notch geeks over there!

Wednesday, February 4, 2009

How to remove Ubuntu from a Vista dual-boot config

On my new PC I wanted (still want) to have to a go with Linux. I chose to experiment with Ubuntu. I downloaded the desktop CD, burned it, freed up some disk space (inside Vista) and loaded up Ubuntu from the CD. After some experimenting I figured out how to install Ubuntu in the empty disk space and it all worked fine (GRUB took over my booting (recognized Vista automatically!) and Ubuntu loaded up fine).

Then I tried to install my GPU drivers and everything went wrong.. For some reason Ubuntu wouldn't boot anymore (failed to load X-Server or something). I was completely lost and wanted to remove Ubuntu.

This is where things start to get really messy!

If you simply remove the Ubuntu partition, GRUB (Linux boot loader) will still be on your PC (in control). It will trip out, as the Ubuntu partition will be removed.. Bad thing!

So you need to restore your Master Boot Record (MBR) for Vista (so that Vista will handle the booting, not GRUB).

Google only pointed me to sites that explained how to REMOVE VISTA, which isn't what I wanted. Many sites talked about the 'fixmbr' command, but this is really only available in Windows XP.

So how do you restore your MBR for Windows Vista?

1. Put the Windows Vista installation disc in the disc drive, and then start the computer.
2. Press a key when you are prompted.
3. Select a language, a time, a currency, a keyboard or an input method, and then click Next.
4. Click Repair your computer.
5. Click the operating system that you want to repair, and then click Next.
6. In the System Recovery Options dialog box, click Command Prompt.
7. Type Bootrec.exe /FixMbr, and then press ENTER.

That's it. Now when you reboot your PC, Vista will load automatically... You can now safely boot using your Ubuntu desktop CD, to use the built in Gnome Partition Manager to remove your Ubuntu partition!