Thursday, May 13, 2010

ooVoo 2.7.0.65 features - from video calls with up to six people at once to video messaging to chat


ooVoo 2.7.0.65 Portable

ooVoo has many great features - from video calls with up to six people at once to video messaging to chat and file transfer capabilities. See below for some of our highlighted features and be sure to check back on this page often to see what's new.


Start a face-to-face conversation and include up to six people.

Twice the video clarity and four times the video window size of ooVoo Standard Resolution!

Create instant memories by recording your ooVoo video calls.

Tired of typing emails? Give your fingers a break and send a video message to one friend or a group.

Do you want to grow a virtual mustache or become a Superman – all while on a video call? Now you can.

Have a face-to-face ooVoo conversation with anyone (even those friends that don't have ooVoo yet) through a Web browser.

Calls from ooVoo to a landline or mobile phone in the USA* or Canada.

Text chat with up to six friends at a time!

With ooVoo it’s easy to share files with your friends!

Import contacts from the most popular email programs: Office Outlook, Gmail, MSN Hotmail, Yahoo mail, AOLmail and more.

Enable sidebar view to clearly view documents or other tasks on your screen.

Build your blog or MySpace page to life with an ooVoo link.

ooVoo is an exciting and fun new way to communicate and we want every one of your ooVoo experiences to be safe and secure.

Home Page


Download Fast

Get Administrator Access In Any Windows Machine That Comes In Your Way


If you are an office employee or a student at some university, school or college, chances are that you are using a locked down computer. That is, you are given an account that is having less privileges. You might be lacking permissions to install most of the applications, copy files to certain folders, change themes or screensavers, do some tweaking of the system, or pretty much do anything other than work or research.

In today’s GCS Computer Tricks, we introduce you to a new program – PCLoginNow. This is a tool meant to reset administrator password for Windows machine in case you forget it. (Yeah right!). The feature that we loved most and compelled us to write this post is that the program can convert your account from an under-privileged account to an administrator account. Sweet.

Before we dive into nitty gritties of getting you administrator powers in any Windows box, let’s see a quick review of this program:

Pros:

* Success rate – 100%. Yes, you are guaranteed to get admin powers in all Windows machines.
* Freeware – Absolutely zero cost. Other similar applications cost hundreds of dollars.
* Correctly detects if you have more than one Windows OS installed.
* Works on Windows Vista, Windows XP/XP with SP2, Windows 2003 server , Windows 2000/NT
* Supports all Windows file systems - NTFS, FAT16, FAT32.
* In addition to resetting the administrator password and elevating your limited account to an administrator account, this program can also lock out and unlock all user accounts in the machine.
* Noob friendly – You don’t need to have a PhD in Nuke Physics to run this program. However, having balls of steel is recommended in case your IT administrator finds out what you did.

Cons:

* You need to have physical access to the computer.
* You should be able to boot from CD for this to work. If your administrator has disabled booting from CD, this won’t work.
* Has been proven allergic to network IT administrators. So you have to take care to keep this program away from them.
* In certain circumstances, this tool is proven to result in some-not-so-smart employees getting fired and some students getting suspended. Taking regular precautions are recommended.

Enough said. Let’s get out hands dirty. Just follow these steps to take yourself from a zero to hero:

1. Download PCLoginNow iso live cd file from SourceForge.net. (About 55Mb)
2. Burn the downloaded iso file to a CD.
3. Insert this disc into the drive and boot your computer from the CDROM.
4. You should get the following screen. Hit next.



5. You will get a list of Windows OS installed in your machine. Select the correct OS you want and hit next.



6. Select the user account you wish to upgrade to an administrator. Select the check-box “is Administrator”. To reset the administrator password, select the administrator account and select the check-box “password is empty”. Hit next.



7. # Click on OK to reboot the machine.





If everything went correctly, you will have administrative powers when the computer boots up. What was your experience cracking the box? Tell us in the comments.

Happy Hacking.

PCLoginNow | Download

How to extract audio from any video file in Linux



Want to extract the audio of your favorite musical video, but stuck because you use Linux? Just fire up the terminal and hit shmooze:


ffmpeg -i my_video_file.avi extracted_audio.mp3



Well, in the linux world, it's a pity if you don't give an alternate way to do stuff. So here it is:
mplayer -dumpaudio my_video_file.avi -dumpfile extracted_audio.mp3


This technique can be used to extract audio from AVI, MPG and FLV files.

********888*************

How to increase the size of C drive using space from other drives

By default Windows stores all the user's documents, the installed programs and the system files in the C: drive. As a result of this C: drive is the one that gets filled faster than other drives. Once the free space in C: drive (or any other drive) becomes very low, Windows starts to show the above annoying balloon pop up message. How do you solve such a problem? Just read along.

Scenario:
The free space in your C: drive is in MB range while any of your other drives (D, E ...) have ample space. Since most of the programs require some space in C: during running/installing, you will find yourself unable to do your daily PC work as you would normally do, in this situation.

Solution:


1. Create an empty folder in any NTFS drive(D, E ...) that has ample space.
2. Run diskmgmt.msc from the Run command.




3. Right click on the C: drive and select "Change Drive Letter and Paths" and click on "Add"



4. In the window that appears, specify the path of the empty folder that we created in step 1.



5. You can see that the folder that we created now appears as an exact copy of the C: drive and the that size of the C: drive have magically increased.

****************** THANKS ******************