Enter ur email below to receive free updates to ur inbox directly:

Your Ad Here
Showing posts with label Windows Live. Show all posts
Showing posts with label Windows Live. Show all posts

Turn a Windows 7 Laptop into a Wi-Fi Hotspot

Here’s some new software for Windows 7 called Connectify which allows you to turn your Windows 7 laptop into a wireless hotspot. Basically, it converts your laptop into a wireless router of sorts, acting as a wireless access point for computers and wireless devices.  It’s essentially like creating your own wifi hotspot like the ones at Starbucks and other retailers.

It was developed by a military consulting firm called Nomadio and it allows other wireless devices to ‘tether’’ themselves to a single Internet connection. It’s secure too as the software encrypts traffic in both directions using WPA2-Personal encryption. Check out the demo video below:

This would be especially useful at airports to share the expensive Wi-Fi with friends or simply for extending your home WiFi without paying through the nose for a wireless router.
More Wifi Hacks Below

How to Find Autorun Programs in Windows Systems

For a vast majority of us that use Windows on a regular basis, we have come across performance and stability issues from time to time. On a freshly formatted PC, everything seems to run pretty quick and the system doesn’t crash as often. After a few weeks, months, and years, the computer seems to get slower and less stable.

Many performance and stability problems can be traced back to programs that automatically run when Windows loads up. It seems that much of the software we install seems to want to run an application at startup. The problem is many people don’t know that there are free applications available that can help identify and stop programs from automatically starting when windows loads.

Three Programs to Identify Autorun Applications.
 Every few weeks I look at what starts up when Windows loads. I do this to ensure the performance and stability of my system doesn’t become reduced. There are a few tools that you can use (all free!) to help you identify what applications are loading up during your system startup.

    * System Configuration Utility. This tool is included with Windows so you should already have it installed. You simply run “msconfig.exe” at the “Run” command to launch it and it will show you which applications are loaded at startup by clicking the “Startup” tab. I use this one on a regular basis to control what runs as it is very easy to use.
    * Autoruns This tool is from Sysinternals and is probably provides the most complete picture of what runs at Windows startup. If you are experienced with Windows, and know what to enable or disable, then you might want to check out Autoruns.
    * HijackThis!. The HijackThis! application is used mainly by those who are trying to find malware on their computer. It analyzes your computer and provides a detailed report of registry and file settings that you can then use to determine what runs, and what settings have been changed. This is also for the more experienced Windows user.

While there are many applications available that can help find autorun programs when Windows starts, the above tools should provide a great overview of your system. It is also important to have an experienced Windows expert have a look at the information provided by the tools to determine what can be stopped or disabled.

How To Hidden Internet Browser in Windows XP Systems

[Hidden] Internet Browser in windows XP
Ever been on PC where Internet Explorer was blocked? One solution would be to use a portable version of Firefox on a USB drive, or you can access a hidden browser in Microsoft HTML Help program if removable media is not an option. This was tested on Windows XP SP2 with Internet Explorer 6 and Internet Explorer 7.
Open calculator. You can do this quickly with Windows button+R on your keyboard, type calc in the run box, click OK.

In Microsoft Calculator go to Help -> Help Topics.

Now right click on the left hand side of the title bar and click on Jump To URL...

Type in the URL including the ‘http://’

and off you go. Repeat to visit other sites.

Essentially this is Internet Explorer embedded inside of the HTML Help application. Adobe Flash isn’t working in my hidden browser, but a quick visit to Adobe took care of it.

Exellent Top Command Prompt Tricks And Hacks for Windows Users only

This is an excellent post which can really make your life easier in the *NIX world. But, for many, it is a Windows kind of life. So, for those of you out there, I have put together some Windows command line tricks that might make your life easier.
15 Popular Command Prompt Tricks & Hacks
Save A List of Files to a Text File by Extension

dir *.ext /s /b > files.txt
This command line will create a file called files.txt. When you open this file, there will be a complete list of all the files in that directory and all subdirectories with the .ext extension. You can then open up this text file in any text editor and work this the information.By changing the ext part, you can select different files. For example, if you wanted to list all of the PDF documents, you would type:
dir *.pdf /s /b > files.txt
Get Your IP Address Information
ipconfig /all
This will retrieve a pile of information about your network connection and IP information. From this command, you can get:

    * Host Name
    * Primary DNS Suffix
    * Node Type
    * IP Routing Enabled
    * WINS Proxy Enabled
    * DNS Suffix Search List
    * Connection-specific DNS Suffix
    * Network Adapter Description
    * Physical (MAC) Address
    * DHCP Enabled
    * IP Address
    * Subnet Mask
    * Default Gateway
    * DNS Servers

Get Installed Driver Information
driverquery
It can be very useful when troubleshooting to know what drivers are installed on a system. This command will give you a complete listing of the drivers and when they were installed.
Copy Files Via Infrared Port
irftp filename.ext
This will fire up the Wireless Link dialog so that you can copy the specified file via an infrared port.
Find Files Opened By Network Users
openfiles /query
If you are running a system and you want to know who has files open on your computer, this command will provide you a list of those users and the files that they have open.

    Note: If you get an error saying The system global flag ‘maintain objects list’ needs to be enabled to see local opened files, you can fix this issue by typing openfiles /local on. You will have to reboot the system but it will resolve the issue.

Monitor Port Activity
netstat -a 30
This will show you all of the TCP/IP ports that are being used on your system and what they are connecting to (or being connected from). It will continue to monitor these ports and refresh the information every 30 seconds. You can change the refresh rate by changing the number at the end of the command.
Tip : Best Tips to Make Firefox 3+ Faster
Recover Information From A Corrupt File
recover filename.ext

If you have a disk with damaged sectors, you can attempt to recover as much information as possible from the damaged file. Data that is not damaged can be retrieved but data in damaged sectors will be lost.
Defragment Remote Computer
rexec remotePC defrag C: /F
This command used the rexec command to force a defragment of the C: drive on the computer named remotePC. You can use whatever you want to for the command (I just used defrag C: /F as an example). This is very useful for remote maintenance.
Retrieve Detailed System Information
systeminfo
With this command, you can retrieve the following information:

    * Host Name
    * OS Name
    * OS Version
    * OS Manufacturer
    * OS Configuration
    * OS Build Type
    * Registered Owner
    * Registered Organization
    * Product ID
    * Original Install Date
    * System Up Time
    * System Manufacturer
    * System Model
    * System type
    * Processor(s)
    * BIOS Version
    * Windows Directory
    * System Directory
    * Boot Device
    * System Locale
    * Input Locale
    * Time Zone
    * Total Physical Memory
    * Available Physical Memory
    * Virtual Memory Max Size
    * Virtual Memory Available
    * Virtual Memory In Use
    * Page File Location(s)
    * Domain
    * Logon Server
    * Hotfix(s)
    * NetWork Card(s)

Automatically Defragment C: Daily
schtasks /create /tn "Defrag C" /tr "defrag c: /f" /sc daily /st 23:00:00 /ru "System"
This will set your computer to automatically perform a complete defrag of the C: drive each day at 11:00:00 PM (23:00:00). It does this by creating a scheduled task called Defrag C. It will run this command under the computer’s system account.
Map A Drive Letter to a Folder
subst W: C:\windows
Sometimes, your directory structure can get pretty deep and complicated. You can simplify this a bit by mapping a drive letter to commonly used folders. In the example that I have given, this will create a drive letter W: and map it to the C:\windows directory. Then, whenever you go into My Computer, you will see a W: drive and when you browse to it, it will automatically take you to the contents of the C:\windows folder.
You can do this with any unused drive letter and any folder that exists on your system.
List All Tasks Running On The Computer
tasklist
It’s always good to know what is running on your system. This is the command line version of the processes tab in Taks Manager.
Kill A Program
taskkill /im programname.exe /f
If, when using the tasklist command, you discover that there is something running you just want killed. This is the way to do it! Just note the program name and use it in place of programname.exe.
Reboot a Remote Computer
shutdown -r -f -m \\remotePC -c "System will be rebooted in 20 seconds"
Sometimes, you just need to reboot a system. This will do it remotely and give the user a 20 second warning.
Important Tip : To open Command Prompt, click Start, click Run, type cmd, and then click OK.

Increase Harddisk Speed In Windows

If you like to increase/optimize your Hard Disk I/O – read/write speed without buying expensive software utilities to do that job or changing the HD, just follow next steps. With doing these steps you will increase Hard disk speed (depends of manufacture and specification, but its worth to try). The most speed improvement is visible with IDE drives; however there are reports that this tweak also does good for SCSI disks.
In any case, it won’t harm your system, so try it yourself and let me know what you find!
Steps:
1. Run SYSEDIT.EXE from the start & then Run command.

2. Expand the system.ini file window.

3. Scroll down almost to the end of the file untill you find a line called [386enh].

4. Press Enter to make one blank line, and in that line type

5. Irq14=4096 (note: This line IS CASE SENSITIVE)

6. Click on the File menu, then choose Save.

7. Close SYSEDIT and reboot your computer.

8. Restart windows!
The speed improvement will be noticed just after the system reboots, any system info. software can be used to check the improvement.

Computer Active:Ultimate Guide to Windows 7

Computeractive, making the most of your PC is easy. The UK's best-selling home PC magazine, Computeractive is also the only computing publication endorsed by the Plain English Campaign and is dedicated to delivering PC help and advice everyone can use and understand.

All the tips, tricks and fixes you need for Windows 7!

The Computer Active Ultimate Guide to Windows 7 will enable you to learn all about Microsoft’s latest operating system, whether your planning an upgrade, or buying a brand new PC.We explain how key tasks are done, and look at the new features, to help you make the transition to Windows 7 smoothly, from both XP and Vista.You will be guided through installation,browser choice, organising your files, networking, media playback and routine maintenance, with clear instructions and step by step workshops - all in Computeractive's plain-English style.

Download:
http://depositfiles.com/en/files/h5crw8mxg

Windows Live Photo Gallery vs Picasa Album

A new version of Windows Live Photo Gallery, a free program that lets you manage your collection of photos and videos, will be available for download later today on live.com.

The new Photo Gallery remains a solid alternative to Google’s Picasa software but is it good enough for you to switch from Picasa? Read this comparison.
Comparing Photo Gallery with Picasa

People tags are now available in both Picasa and Photo Gallery so you can quickly tag photos with names.
Both programs are equally efficient at detecting and recognizing faces in photographs but there’s one difference – Photo Gallery stores the people tags with the photo itself while tags created in Picasa stay inside the program. The Photo Gallery approach is more useful because if you email or even copy a photo to another computer, the people tags are preserved.

Picasa lets you associate people tags with only pictures while in Photo Gallery, people tags can be applied to images as well as videos.

Geotagging is available in both programs so if your digital camera or mobile phone doesn’t add geographic location to captured photos, you can add it manually. Picasa offers an integrated Google Maps so you can drop the pin at the exact location where the pictures were take while in Photo Gallery, you have to write the street address manually which may not be very accurate in all cases.
Each of these programs will install a photo screensaver in your Windows directory that will run a slideshow of your photos on the screen while your computer is idle.

The Photo Gallery screensaver can also play video clips in the screensaver while Picasa will only do photos. However, Photo Gallery works only with locally stored photos while the Picasa screensaver can also pull fresh images from the web as it supports RSS feeds.

Both programs allow you to create impressive movies of your photos (that you can put on YouTube) – Picasa has this functionality built-in while Photo Gallery will use Movie Maker (also part of Windows Live Essentials) to make videos.
Picasa and Photo Gallery offer an almost common set of tools for editing photographs (auto-tune, crop, red-eye removal, etc.) but two Photo Gallery features that you’ll really miss inside Picasa are Panoramas and Photo Fuse (see screenshot above).

With Panoramas, you can stitch multiple photographs into one long shot. Photo Fuse is even more interesting. Say you have two similar shots but in one image, the eyes of your child are closed while in the other one, his mom is looking somewhere else. You can easily merge these two shots using their best parts and create that perfect image with Photo Fuse. This should also help when you want to remove other people from your vacation photos.

You can create self-running photo slideshows in both programs but Photo Gallery also offers themes so your slideshows can look even more awesome.
Photo Gallery is integrated with Skydrive so you have 25GB of online storage space for your photos while that limit is only 1GB in the case of Picasa Web Albums. Photos and videos can be easily shared on Flickr, Facebook and YouTube in either of the two programs but Photo Gallery will also preserve your people tags inside Facebook albums and SkyDrive. This feature is however not working in the current version.

Finally, Windows Live Photo Gallery will only work on Vista and Windows 7 machines while Picasa is available on XP as well as Linux and Mac.

Free Windows 7 RC Geniune Activation Keys

Windows 7 RC Build 7100 is now live for public download
... You must have a Windows live ID in order to download Windows 7 RC 1 Build 7100. If you have downloaded Windows 7 Release Candidate version, you will probably need an activation to extend its period more than 30 days. Various tricks were published on some blogs to get activation key for free but the URL provided didn’t work out. Microsoft is giving away some Windows Activation keys to its users so read on to know how to get it.
You can get unlimited number of Windows Seven genuine activation keys from microsoft immediately after reaching the provided URL.

   1. Visit Microsoft TechNet.
   2. Click on Sign In link on the top right corner, and login to Microsoft TechNet with a valid Windows Live ID. You can log in even if you’re not a TechNet subscriber.
   3. Copy and paste the following URL to the address bar of the web browser tab or window used to login to Microsoft TechNet:

List of Product Keys while installing Windows 7 RC which work on Both 32-bit and 64-bit versions :
P72QK-2Y3B8-YDHDV-29DQB-QKWWM
Q3VMJ-TMJ3M-99RF9-CVPJ3-Q7VF3
KBHBX-GP9P3-KH4H4-HKJP4-9VYKQ
6JQ32-Y9CGY-3Y986-HDQKT-BPFPG
9JBBV-7Q7P7-CTDB7-KYBKG-X8HHC
MVYTY-QP8R7-6G6WG-87MGT-CRH2P
MM7DF-G8XWM-J2VRG-4M3C4-GR27X
RGQ3V-MCMTC-6HP8R-98CDK-VP3FM
MT39G-9HYXX-J3V3Q-RPXJB-RQ6D7
MVBCQ-B3VPW-CT369-VM9TB-YFGBP
C43GM-DWWV8-V6MGY-G834Y-Y8QH3
KGMPT-GQ6XF-DM3VM-HW6PR-DX9G8
BCGX7-P3XWP-PPPCV-Q2H7C-FCGFR
6F4BB-YCB3T-WK763-3P6YJ-BVH24
MM7DF-G8XWM-J2VRG-4M3C4-GR27X
KGMPT-GQ6XF-DM3VM-HW6PR-DX9G8
MVBCQ-B3VPW-CT369-VM9TB-YFGBP
KBHBX-GP9P3-KH4H4-HKJP4-9VYKQ
BCGX7-P3XWP-PPPCV-Q2H7C-FCGFR
RGQ3V-MCMTC-6HP8R-98CDK-VP3FM
Q3VMJ-TMJ3M-99RF9-CVPJ3-Q7VF3
6JQ32-Y9CGY-3Y986-HDQKT-BPFPG
P72QK-2Y3B8-YDHDV-29DQB-QKWWM
6F4BB-YCB3T-WK763-3P6YJ-BVH24
9JBBV-7Q7P7-CTDB7-KYBKG-X8HHC
C43GM-DWWV8-V6MGY-G834Y-Y8QH3
GPRG6-H3WBB-WJK6G-XX2C7-QGWQ9
MT39G-9HYXX-J3V3Q-RPXJB-RQ6D7
MVYTY-QP8R7-6G6WG-87MGT-CRH2P

Windows Live Essentials 2011 full setup

Windows Live Essentials 2011 is a collection of freeware programs from Microsoft. The WLE 2011 package includes Windows Live Writer 2011, Windows Messenger 2011, Windows Mail, Windows photo gallery, Windows Movie Maker 2011 and a few other useful applications. Currently there is no option to download these applications separately. Microsoft provides an online web  installer for Windows Live Essentials 2011 at the official web page that you need to connect the internet and download the full setup. If you have more than one PC or laptop it’s better to download the standalone Windows Live Essentials 2011 installer to save bandwidth and time.
Windows Live Essentials 2011 full setup:

Windows Live Movie Maker 2011:  With Movie Maker  in Windows Live Essentials 2011, you can create movies from your photos, video collections and customize it with sounds, and effects and transitions.  Windows Movie maker lets you import photos and video files from an external storage device or from you hard disk and edit them in a wizard driven process. You can split or join videos, edit or and sounds and animation using the tools provided. The created movie files can be uploaded Windows Live SkyDrive and share it with Facebook, Messenger or YouTube friends.

Windows Messenger 2011:  Windows Live Essential 2011 offline installer includes the latest Windows Live Messenger with social network integration. The new Messenger has a redesigned interface  which includes MSN services and social sections in one single window. In Windows Live social, you can add Facebook, Flickr, MySpace, LinkedIn, WordPress, Digg, Blogger and several other services and get live update from friends and read the feed of their activities. Windows Live Messenger 2011 lets you  chat with Yahoo Messenger, Facebook friends and make HD video calls with contacts. There is an MSN tab where you can read news and weather updates  from Microsoft MSN web portal.

Windows Live Writer 2011: The Windows Live Writer is one of the best features of the  Windows Live Essentials 2011 pack. It’s a desktop blogging software that  supports WordPress, Blogger, Typepad, and other blogging platforms. With Windows Live Writer, you can create, draft and publish blog posts without opening the web interface. The Word like ribbon interface in Windows Live Writer is  pretty familiar and easy to use. Apart from this, Microsoft has a web library, where we can find several plugins that will improve the functionality and features of the Live Writer.

Windows Live Photo Gallery 2011: Photo gallery as the name indicates is a photo management application includes in Windows Live Essentials 2011. You can import your photos from a digital camera or any external store device, organize and edit them with effects and corrections. There is also an option to publish selected photos directly to social networking websites.

Windows Mail 2011: The new version of the WLE helps users to manage their multiple mail accounts from the desktop using Windows Mail.  The Facebook and  Live integration in Windows Mail will load contact email IDs directly from online profile of friends.   Windows Live Mail also has Calendar, Feed and Newsgroup management tools.

Download Windows Live Essentials 2011 standalone installer here (direct link).

Other important software tools in WLE package are Windows Live Family Safety 2011 (Parental Controls), Windows Live Mesh (Free backup and sync), and Microsoft Sliverlight (Flash alternative).

Creating a panoramic image of the Hugin : Windows Live

create a panoramic image of the Hugin

Win;

Mac;

Linux

seem to be
panoramic images and more frequently these days, as the people carry cameras with them wherever they are. In the past we have shown you the tools, like Windows Live Photo Gallery Autostitch and that the effort to make panoramic photos of the assembly, but free Hugin is much more configurable.
Hugin attempt to points on the photos to find the match, you can also manually define control points. This may take some time to get used to because all the available settings for manual configuration, but with these exercises and some free time this weekend should be all set.
are over 8,000 photos on Flickr that are used for mounting Hugin breathtaking images. If you use the program, you can hang the pictures with Hugin so, which began with a typical create.
Download Hugin for Windows, Mac or

Via: create a panoramic image of the Hugin
cyber notes: Easily create Panorama-Photos
save time Tuesday only Windows, I always felt it was not there an ideal tool for the …

panoramas create animations and movies
Windows only Panoramic tried to do something more, and make many, because of how easy it mesh toge …

As an automatic correction of color images is free
Windows only if Äôve ever played around with all the digital camera for five minutes, you know, it often …

Yahoo Mail or Gmail e-mail files and pictures br /> Windows, only a few weeks ago I received an email from the combination of Windows application name gatta …

automatically rename files and photos
Windows only sometimes can rename it a constant pain in the new file and / or transfer images and …

Hi, I’m fans of Technology’s So I blog about Fresh Android I like cars … Follow the Fresh Tech

article from Windows Live Article

Windows Live : Watch the new HTC HD7

Check out the new HTC HD7! The phone’s conversations with an HD-VCR and access to an equalizer application, which helps the phone to provide super-rich audio experience based. The HD7 is a big blow with his heavy packaging 1GHz processor and the brand new Windows 7 Mobile OS in place users will find it exclusively Smartphone experience to be rich in information and online integration.
super 4.3inch screen touch capacitive and resources it uses multi-touch input method, it is extremely appealing and actions will be executed immediately. The on-screen images from one pixel to 480 x 800 pixels, which can handle very competently rich color and video games produced set. As with most pieces of the latest HTC, the HD7 frames his screen with a very narrow case of the phone feels like a raw, electronically advanced. WP7 on-screen keyboard is well sized and a powerful tool for messaging users, the screen technology also consists of an accelerometer, which users can use the phones and widescreen landscape features. The HTC HUB allows full access to many useful applications, while more can be downloaded from the Internet. The device is socially aware with integrated support for Web sites such as Facebook, Windows Live, Twitter and Flickr, there are sufficient funds for messaging and e-mail and online support all phones aspects of super-fast connectivity. The HTC HD7 is equipped with 3G, EDGE, GPRS and Wi-Fi, the connection to the Internet or a cellular network is almost effortless on the phones section. 5MP digital camera meets the requirements of an aspiring filmmaker comfortable, with the possibility of beautiful HD video in 720p and precise still images shot with the support of the auto focus and LED flash of the HD7 is clearly designed for those with fun gives the phone as a portable entertainment device. Accompanying the visual experience have installed HTC Mobile Dolby Surround Sound and SRS, to provide users with the best possible listening experience. The HTC Media Hub supports a Zune-powered video and music player that supports turn-in FM radio, and special facilities for the downloading of music. HTC also has a 3.5mm AV connector for headset and tossed in Europe we can from an internal 8 GB memory, the 16GB version is unfortunately limited to Asia will benefit. The HD7 is loaded with the latest Bluetooth technology and supports a very wide range of audio and video formats. more features that users can benefit, the location services such as Virtual Earth, which supports A-GPS. It is a stand for a desktop theater experience and a fully customizable user interface, which includes the tile-based Home screen. Another cool factor to offer the HD7 has is its integration XBOX Live to play the game console quality games in hand shape possible. HTC’s latest series of phones is nothing less impressive, with some contending for mobile phone of the year. The new Windows Mobile OS 7 is a galaxy apart from the older version clunky and delivers a smooth user experience in all aspects of the mobile phone interface. The HTC HD7 is the largest WP7 phone to date, so if size matters should be your first choice.

World’s Most Popular Online Video Chat service provides next generation of software with superimposed – Enabling IM sessions with ten users around the world of voice and video chats Conduct

Paltalk (www.paltalk.com), the largest online video chat community with more than four million active members, today is the next generation of its popular communications software release 9.0 Paltalk. Paltalk is the only program in the world, with the user through video, voice and text in chat rooms they create to communicate and keep thousands of people allowed at once. can Paltalk 9.0 includes features such as Super IMTM, a patented feature that allows users up to nine friends from around the world move to an Instant Messenger window for a live video and voice chat session. Paltalk 9.0 offers improved video streaming in near broadcast-level quality, full-duplex audio, multi-player gaming and music through a special partnership with Real Rhapsody provided.

Today, the company also re-launching the popular HearMe web conferencing service, a Web-based application, the user in real-time meetings over the Internet with video, voice and document sharing can do. With its low price and easy to use features, HearMe is to small to medium sized businesses, traveling to live meetings without the cost of staff or incur expensive long distance calls aligned.

“For nearly a decade, we have quietly changing the way people communicate online, care of the most passionate user base on the web. Today, we are not quiet,” said Joel Smernoff, President and COO, Paltalk. “Both Paltalk and HearMe are at the leading edge of online communications for the next generation of live chat and instant messaging.”

New York Paltalk was founded over 8 years and survived the first Internet bubble into a profitable business by supplying high quality communications for personal and professional use. Paltalk was the first company to an Instant Messenger with video and voice capability with an online buddy list, start combined.

Paltalk Messenger

Paltalk is the wish of users who communicate a way beyond text and long one-on-one discussions on most online communication programs available. Over the years, Paltalk has grown into one of the most popular online services with more than 50 million downloads accounted for eight billion minutes of calls per year become. Each of syndicated York shock jocks Opie & Anthony on the Big Brother reality series to best-selling author Dan Burstein have used Paltalk to hold group discussions online. Paltalk functions have to be seen with the control and to hear through live, real-time video in chat rooms that use patented technology to allow thousands of people simultaneously hold talks. Use their own chat rooms on topics they choose where room members not only communicate with the host, but also with each other.

With more than four million active members around the world, people using the Paltalk Messenger to socialize, talk politics, pick stocks, learn languages and even sing karaoke. Users a complete suite of tools that can control them moderation released to the environment decide who talks, shows videos, and stays in the room. The Paltalk community takes great care in an intact, clean and well lit “environment with more than 250 trained volunteer moderators. Earlier this year, also Paltalk Paltalk People 2.0, a social networking site called linking searchable user profiles and adding video, voice and text chat on the fundamental expression and connection to life.

Primary Paltalk 9.0 features

Paltalk Messenger 9.0 will offer new features that further enhance online discussions, including:

superimposed – the next generation of instant messaging, of Paltalk developed that allows each user pull, immediately in up to nine friends in one Instant Messenger window and chat with text, audio and video
Improved video – Improved video streaming for improved picture quality, seamless motion and color,

Audio Upgrades – Paltalk 9.0 now offers handsfree mode to facilitate conversations

.

games – built-in multi-player games such as pool, chess, gin rummy and backgammon, which allow users to chat in real time with audio and video while playing

music – through a special partnership with Real Rhapsody, that the users download and listen to their favorite artist

allowed.

HearMe

Paltalk is also re-launch the popular HearMe service, the next generation of browser-based video conferencing. Focused on small businesses reduce costs and to use a high quality solution, HearMe allows users online meetings at a reasonable price to keep and avoid expensive travel and long distance calls. A need easy to use web-based application, without a program to download, customers and colleagues in real time via video, voice and text directly from their computer to communicate and share their documents or their entire desktop. HearMe meetings are held in a secure web environment with CD-quality, live, TV quality video. HearMe was holding using the same technology as the Paltalk user a meeting or conference at a click of a button.

About Paltalk

Paltalk (www.paltalk.com) is the largest video chat community on the Internet with over four million active members participating in live voice-and video-enabled chat rooms. Our patented technology allows thousands of simultaneous users to communicate via video and audio all in the same chat room. The Paltalk Messenger is compatible with leading instant messaging (IM) services, enabling users to transfer existing buddy lists, to combine all their contacts and talk with friends who use other IM programs. Founded in 1998, Paltalk is a privately held company in New York. Paltalk also owns and operates HearMe (www.hearme.com), a B2B Web conferencing service. Paltalk was the first company to video and voice with an online buddy list, start combined in one package.

Windows Starter Kit Ultimate

Windows Ultimate Starter Kit

The Ultimate Windows Starter Kit is a set of powerful and yet freeware applications that allow you the potential of your computer.
Anti Virus

Avast Anti Virus 5

Avast a really solid protection against threats. It is to protect against anti-spyware and anti-root kit. With its range of shields the computer against browser hijacking, infected e-mails, instant messaging and P2P threats to be protected. It also features a gaming Silent Mode, which you will play without any notification window.
Avira AntiVir

AntiVir is capable of dealing with protecting its own AHEAD (Advanced Heuristic Analysis and Detection) technology, in the computer, infected e-mails, spyware and e- mail threats. AntiVir is also compatible with Netbook computers.
Other alternatives such as AVG, Comodo Internet Security

Anti Spyware

can Malwarebytes’ Anti-Malware

Anti-Malware is one of the two Tools to good to be true. Apart from a simple and easy to use interface, it features an extensive database that allows to detect and remove almost any threat on the Web

.

Ad-Aware

Firewall
Comodo Firewall Internet Security

Comodo Internet Security firewall, antivirus, anti-spyware, anti-rootkit and botnet protection features in one package. The anti virus is good, but the firewall is even better. During installation, you can choose to install only the firewall. What’s so good about it? Comodo is able to stop threats way before they reach your computer. It is constantly guarding the memory, network, and all computer activity.
Another free and good firewall is Outpost Firewall

Web-browser

Chrome

Chrome is a Google creation. Its fast, packed with enhancements and it is quite compatible with most of the websites. The biggest drawback is the lack of an ad / pop-up blockers.

Firefox

Firefox features provide very similar Chrome. It is fast and compatible with most of the sites and it also has a very rich library. It also features multi-tab browsing, and has similar options to deal with the history and temporary files. By default, it will not be possible with all the ads and pop-ups a lot but can work around this problem with extensions

.

Why Chrome and Firefox instead of Internet Explorer? Both browsers are faster than Internet Explorer and they offer increased security. If you want better performance and a better experience, Chrome and Firefox are the way to go.
Another notable

Flock browser, which runs on the Chrome Engine. Flock is a social network based browser.

Email Client

Thunderbird

If you have been looking for an alternative MS Outlook, Thunderbird will be up to the task. Thunderbird is an easy-to-use, lightweight and fully featured e-mail client. As a stand-alone mail client Thunderbird does your daily needs. The calendar functions through an extension called Lighting. be
added

multimedia player

VLC

If you enjoy music and videos Kantaris to meet your needs. With its range of integrated codecs that Media Player can almost any file you throw it to play. Play MP3, WMV makes, Real Audio, AVI, DivX, MKV, and many other formats that player a real solid contender.
GOM Player
GOM Player is a different media player that has a lot of compatibility with audio and video files. What makes it a unique tool is the ability to search and find for codecs needed to play a particular file. Each time you want a file that can not handle the player, you get a message that it can not play the file, but that for the required codec search

.
fuels Software

CDBurnerXP

CDBurnerXP is a free burning program that allow you to burn CDs, DVDs and Blu-Ray disc. You can also burn and create ISOs and bootable discs.

File Archiver

7-Zip

7-Zip is an open source compression utility that provides a high compression ratio. It is capable of opening all popular compression formats (zip, ace zip, gzip, ARJ), and many others. The compressed files can be password protected and encrypted.

System Maintenance

CCleaner

When it comes to clean your system, CCleaner the right application for the job. CCleaner is able, over every aspect of you clean your system, Windows, Internet Explorer, the Registry and many of your installed programs. For the registry cleaner, it will create a restore point before cleaning / fixing the registry. This is very useful if something goes wrong after the cleaning of the system.

Defraggler

If you are not satisfied with windows defragmenter Defraggler application then considered as the solution. Defraggler Defrag is not only the hard drive, but it will also improve, so that the computer runs faster.

Image Processing

Paint.net

Paint.net makes it easier to edit and create images. It has a range of basic tools and effects for the beginning, but all his force can be extended with extensions. There are a lot of support from the community and a lot of plugins and extensions. This makes it a powerful image editing software. You can increase the effects, tools and expand their editing and creation utilities with add-on extensions.

Office Suite

OpenOffice.org

If you can not afford Microsoft Office can give to try this freeware OpenOffice.org office suite is compatible with MS Office suite. The suite includes a word processor, spreadsheet, presentation, schedule, and a database program. All of them are compatible with MS Office suite. The advantage is that for many operating systems, Windows, Mac, Linux and others. It also has an extension that allows you to give more power to the suite.
Social Networking

Seesmic

If you visit various social networking sites Seesmic could be right for you. With Seesmic Manage Twitter, Facebook, Buzz, LinkedIn and Four Square and many other social sites through the ping.fm plugin. You can comment, share pictures, view status changes, and much more.
If you do not want to install software to do this task, there are alternatives that allow web-based task. HootSuite and Netvibes will do more, and dealing with your social network needs.

Instant Messaging

meebo

Using Meebo Messenger you can talk to friends using different IM clients. Please friends, Windows Live Messenger, MySpace Messenger, Facebook, Google Talk Talk and use other popular clients, all with the use of Meebo.
Another popular alternative is Pidgin. Pidgin still brings together more customers, AIM, Google Talk, IRC, MySpace, MSN, Yahoo, Bonjour, and many more. Other functions can be added via plugins. There are other programs available for free for the same purpose, dedicated, but the ones listed here are among the best and most popular. With them the power to extend a new computer, and allow the most free of common tasks

Twitter Delicious Facebook Digg Stumbleupon Favorites More