Posts tagged ‘DIY’

Creating a Virtual Machine in VMware Player 3.0

5 December, 2009 | admin | Comments

I’m making this post in the hope to reduce the doubts or understand the way how VMware Player works as a lot of people have their first hand experience trying out the new Google Chrome OS available for download as a virtual machine image.

This post is essential for undertanding how to create a Virutal Machine in VMware Player while the my next post will deal on how to run the Chrome Virtual Image using VMware Player 3.0 in particular.

So just follow the step by step process and you’ll end up with your virtual machine up and running! I’ve considered that you’ve already Downloaded the VMware Player and installed it on your system. If you’ve not done it yet, download WMware now (Needs registration but don’t worry it’s free!!)

Step 1:

Open VMware and the first “Welcome to VMware Player” window will pop up. Since this post is about “Creating a Virtual Machine”, let’s not talk about the other options on the list.

Directly click on the “Create a New Virtual Machine” on the top, highlighted with yellow and red arrow on the image.

VMware

VMware


Read the rest of this entry »

How to Install Adobe Flash Plugin for Google Chrome

8 February, 2009 | admin | Comments
Google Chrome

Google Chrome

The Adobe Flash player plugin is widely used all over the Internet, so it’s almost crucial that you install the Google Chrome Flash plugin if you wish to maximize your browser experience. If you’ve been prompted to install the Flash plugin but nothing happens, then you’ll need to manually install it yourself by downloading the Flash plugin from Adobe and playing a few tricks to install it into Google Chrome. No need to fear however because the installation procedure is pretty straightforward and you’ll have a Chrome Flash plugin enabled browser in no time.

  1. Download the Flash player xpi for Windows.
  2. Add a .zip extension to the file. It should now be: flashplayer-win.xpi.zip

  • Extract the contents and copy two files “flashplayer.xpt” and “NPSWF32.dll” (indicated in the screenshot below) over to C:\Documents and Settings\user\Local Settings\Application Data\Google\Chrome\Application\Plugins in XP orC:\Users\user\AppData\Local\Google\Chrome\Application\Plugins in Vista (thank you Derek), making sure to change ‘user’ to your Windows login name. You can avoid having to unhide hidden files in Windows Explorer simply by copying and pasting the directory path provided above into the path bar.
  • Restart Google Chrome, then see if you can watch a YouTube video to see if it worked. Or just come back to this page.
  • How to remove protectfile.vbs virus

    22 November, 2008 | admin | Comments
    Yesterday one of my junior was trying to print a few stuffs he bought in his pen drive using my PC. He said he did scanned for viruses (am using AVG) but the scan showed no detection; however i got this protectfile.vbs virus on every drive of my PC. The most annoying thing it did was that, your CD or DVD drive will be ejected by itself. Whenever you try to open any of your drive by double clicking on it, a new window will be opened instead of the same window. This is quite an annoying thing (if you are using linux with default settings, you perhaps know about this!!).

    The protectfile.vbs virus makes hidden, read-only multiple copies of itself in all the drives which are difficult to be detected. It can’t be deleted or renamed without disabling its “read-only” property. And lastly when we try to delete any one of the multiple copies, it uses an autorun.inf (executed automatically by windows) file to recreate itself from its copies in other drives.

    So i tried googling for its remedy. I did found out a lot of ways to remove the virus but none was quite effective. I looked for the methods at thinkingpal, yahoo answers and the potpourri4u blog. By “effective”, i meant, u don’t want to download stuffs to remove that file but you do want to remove it… better it be that u be able to remove it with minimum efforts!! So, here’s the best method i can provide you to remove the virus. All the steps are similar to wat’s available, but the important thing is that, many bloggers failed to mention step 5 (coz they perhaps never tried, but just COPY-PASTED these steps) which is a MUST:

    1) Press Ctrl+Alt+Del (Task Manager)
    2) In the Processes tab , Kill the processes : explorer and wscript.exe (if available)
    3) Go to File> new task
    4) Go to command Prompt (Enter cmd in Run)

    Go to the drive c:\
    Type del /f/q/a protectfile.vbs
    and del /f/q/a autorun.inf
    Go to c:\windows\system32
    and enter del /f/q/a secureguard.vbs

    5) Now delete protectfile.vbs and autorun.inf by going manually to the root of each drive (use windows explorer tree form, do not double click on the drive icons)
    If you don’t see the file, go to folder options, select the view tab, uncheck the hide protected operating system files button then check the show hidden file button. Click apply and then OK.
    6) Goto regedit (enter regedit in Run) and search for protectfile.vbs and delete all entries with this name.
    7) Now search for the secureguard.vbs and modify it as in the path del only “c:\windows\system32\secureguard.vbs” and let the other part of the path be as it is.
    8) Restart your system
    A more simpler option maybe found at dirtycraft blog.
    I hope that does it… and i’m sure, no pop ups will be shown at each restart of your PC!!

    Adding "Read More" expandable link at Blogger

    26 October, 2008 | admin | Comments

    It’s almost every bloggers’ wish to have a “Read More” link displaying only a certaing part of his posts on the main page making the homepage more spacious and maintained. Here’s a quick hack on blogger account to add a “Read More” link and display the rest of the story:

    1. Log in to your blogger account select Layout of the blog which you want to modify
    2. Navigate through Template > Edit HTML
    3. Take backup of your template by clicking Download Full Template. This backup will help you if you want to revert to old template
    4. Search for in your template HTML and paste the following piece of code in between and

    <! Style to implement “Read more on this Article” link in all the posts (Start) >
    <style>
    <b:if cond=’data:blog.pageType == “item”‘>
    span.fullpost {display:inline;}
    <b:else/>
    span.fullpost {display:none;}
    </b:if>
    </style>
    <! Style to implement “Read more on this Article” link in all the posts (End) >


    1. After pasting the code, your template should look like as shown in the following image

    1. Save your template and click on select Expand Widget Templates
    2. Search for in the template HTML and paste the following piece of code after

    <! Code to show “Read more on this article…” Link (Begin) >
    <b:if cond=’data:blog.pageType != “item”‘>
    <span>
    <a expr:href=’data:post.url’ style=’color:#0000FF; text-align:right; font-weight:bold; text-decoration:none’ >Read more on this article…</a>
    </span>
    </b:if>
    <! Code to show “Read more on this article…” Link (End) >


    1. After pasting the code, your template should look like as shown in the following image

    1. That’s all. Your template is modified to show expandable posts.
    2. Now in every post, the content which you want to show only in post’s page should be included between This will be shown only in post’s page.
    3. Post a test article using the following HTML to see your blog working as expected