<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>winspark.net &#187; Tips &amp; Tweaks</title>
	<atom:link href="http://winspark.net/category/tips-and-tweaks/feed/" rel="self" type="application/rss+xml" />
	<link>http://winspark.net</link>
	<description>&#124; Spark your Windows</description>
	<lastBuildDate>Wed, 14 Jul 2010 16:14:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Getting to know all about Windows Registry</title>
		<link>http://winspark.net/2010/04/04/getting-to-know-all-about-windows-registry/</link>
		<comments>http://winspark.net/2010/04/04/getting-to-know-all-about-windows-registry/#comments</comments>
		<pubDate>Sun, 04 Apr 2010 08:02:28 +0000</pubDate>
		<dc:creator>Mr. Spark (admin)</dc:creator>
				<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[Learning Resource]]></category>
		<category><![CDATA[Tips & Tweaks]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[reg]]></category>
		<category><![CDATA[regedit]]></category>
		<category><![CDATA[registry]]></category>
		<category><![CDATA[settings]]></category>

		<guid isPermaLink="false">http://winspark.net/?p=1614</guid>
		<description><![CDATA[I was going through the Book &#8220;Windows 7 UNLEASHED , SAMS publication&#8221; that sneaked my attraction on very interesting chapter which was all about the registry. So i thought it would be better to rip out some content for our blog readers. The Registry is a central repository Windows uses to store anything and everything that applies [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwinspark.net%2F2010%2F04%2F04%2Fgetting-to-know-all-about-windows-registry%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwinspark.net%2F2010%2F04%2F04%2Fgetting-to-know-all-about-windows-registry%2F&amp;source=manekari&amp;style=compact" height="61" width="50" /><br />
			</a>
		</div>
<p style="text-align: justify;"><img class="alignright size-full wp-image-1618" title="RegEdit Blue" src="http://winspark.net/wp-content/uploads/2010/04/RegEdit-Blue.png" alt="" width="111" height="111" />I was going through the Book &#8220;<em>Windows 7 UNLEASHED , SAMS publicatio</em>n&#8221; that sneaked my attraction on very interesting chapter which was all about the registry. So i thought it would be better to rip out some content for our blog readers.</p>
<p style="text-align: justify;">The Registry is a central repository Windows uses to store anything and everything that applies to the configuration of your system.</p>
<p style="text-align: justify;"><span id="more-1614"></span>This includes all the following:</p>
<ul style="text-align: justify;">
<li>Information about all the hardware installed on your computer</li>
<li>The resources those devices use</li>
<li>A list of the device drivers that Windows 7 loads at startup</li>
<li>Settings that Windows 7 uses internally</li>
<li>File type data that associates a particular type of file with a specific application</li>
<li>Backgrounds, color schemes, and other interface customization settings</li>
<li>Other customization settings for things such as the Start menu and the task bar</li>
<li>Internet and network connections and passwords</li>
<li>Settings for Windows 7 applications such as Windows Explorer and Internet Explorer</li>
<li>Settings and customization options for many third-party applications</li>
</ul>
<p style="text-align: justify;">To launch the Registry Editor, select <strong>Start</strong>, type <strong>regedit</strong> into the <strong>Search box</strong>, and then press <strong>Enter</strong>. When the User Account Control dialog box shows up, enter your credentialsto continue.</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-1615" title="registry" src="http://winspark.net/wp-content/uploads/2010/04/registry.png" alt="" width="584" height="241" /></p>
<h3 style="text-align: justify;">Understanding Registry settings</h3>
<p style="text-align: justify;">If the left side of the Registry Editor window is analogous to Explorer’s Folders pane, theright side is analogous to Explorer’s Contents pane. In this case, the right side of theRegistry Editor window displays the settings contained in each key (so I’ll call it theSettings pane). The Settings pane is divided into three columns:</p>
<ul style="text-align: justify;">
<li><strong>Name &#8211; </strong>This column tells you the name of each setting in the currently selected key(analogous to a filename in Explorer).</li>
<li><strong>Type &#8211; </strong>This column tells you the datatype of the setting. There are six possible datatypes :</li>
<p><strong>REG_SZ</strong> &#8211; This is a string value.</p>
<p><strong>REG_MULTI_SZ</strong> &#8211; This is a series of strings.</p>
<p><strong>REG_EXPAND_SZ</strong> &#8211; This is a string value that contains an environment variable name that gets “expanded” into the value of that variable.<br />
<em> For example</em>,the %SystemRoot% environment variable holds the folder in which Windows 7 was installed. So,if you see a Registry setting with the value %SystemRoot%\System32\, and Windows 7 is installed in C:\Windows, the setting’s expanded value is C:\Windows\System32\.</p>
<p><strong>REG_DWORD </strong>- This is a double word value: a 32-bit hexadecimal value arranged as eight digits.<br />
<em> For example</em>,11 hex is 17 decimal,so this number would be represented in DWORD form as 0&#215;00000011 (17). (Why “double word”? A 32-bit value represents four bytes of data,and because a word in programming circles is defined as two bytes,a four-byte value is a double word.)</p>
<p><strong>REG_QWORD</strong> &#8211; This is a quadruple word value: a 64-bit hexadecimal value arranged as 16 digits. Note that leading zeros are suppressed for the high 8 digits. Therefore,11 hex appears as 0&#215;00000011 (17),and 100000000 hex appears as 0&#215;1000000000(4294967296).</p>
<p><strong>REG_BINARY</strong> &#8211; This value is a series of hexadecimal digits.</p>
<li><strong>Data</strong>—This column displays the value of each setting.</li>
</ul>
<h3 style="text-align: justify;">Getting know the Registry&#8217;s&#8217; Root Keys :</h3>
<ul style="text-align: justify;">
<li><strong>HKEY_CLASSES_ROOT</strong> &#8211; usually abbreviated as <strong>HKCR</strong>—contains data related to file  extensions and their associated programs, the objects that exist in the Windows 7 system,  as well as applications and their automation information. There are also keys related to shortcuts and other interface features.</li>
<li><strong>HKEY_CURRENT_USE</strong>R &#8211; usually abbreviated as <strong>HKCU</strong>—contains data that applies to the user that’s currently logged on. It contains user-specific settings for Control Panel options, network connections, applications, and more. Note that if a user has group policies set on his account, his settings are stored in the HKEY_USERS\sid subkey (where sid is the user’s security ID). When that user logs on, these settings are copied to HKEY_CURRENT_USER. For all other users, HKEY_CURRENT_USER is built from the user’s profile file, ntuser.dat located in %UserProfile%).</li>
<li><strong>HKEY_LOCAL_MACHINE (HKLM)</strong> containsnon-user-specific configuration data for your system’s hardware and applications.</li>
<li><strong>HKEY_USERS (HKU)</strong> contains settings that are similar to those in HKEY_CURRENT_USER. HKEY_USERS is used to store the settings for users with group policies defined, as well as the default settings (in the .DEFAULT subkey) which get mapped to a new user’s profile.</li>
<li><strong>HKEY_CURRENT_CONFIG (HKCC)</strong> contains settings for the current hardware profile. If your machine uses only one hardware profile, HKEY_CURRENT_CONFIG is an alias for HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001. If your machine uses multiple hardware profiles, HKEY_CURRENT_CONFIG is an alias for HKEY_LOCAL_MACHINE\SYSTEM\ControlSetnnn, where nnn is the numeric identifier of the current hardware profile.</li>
</ul>
<p style="text-align: justify;">
<!--INFOLINKS_OFF-->]]></content:encoded>
			<wfw:commentRss>http://winspark.net/2010/04/04/getting-to-know-all-about-windows-registry/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How E-mail System works &#124; Concept of SMTP and POP3 server</title>
		<link>http://winspark.net/2010/03/31/how-e-mail-system-works-concept-of-smtp-and-pop3-server/</link>
		<comments>http://winspark.net/2010/03/31/how-e-mail-system-works-concept-of-smtp-and-pop3-server/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 19:37:42 +0000</pubDate>
		<dc:creator>Mr. Spark (admin)</dc:creator>
				<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[Learning Resource]]></category>
		<category><![CDATA[Tips & Tweaks]]></category>
		<category><![CDATA[e-mail]]></category>
		<category><![CDATA[Exchange server]]></category>
		<category><![CDATA[Hotmail]]></category>
		<category><![CDATA[Inbox]]></category>
		<category><![CDATA[Live]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Outlook Express]]></category>
		<category><![CDATA[POP3]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[SMTP]]></category>
		<category><![CDATA[windows Live mail]]></category>
		<category><![CDATA[WLM]]></category>

		<guid isPermaLink="false">http://winspark.net/?p=1607</guid>
		<description><![CDATA[For the vast majority of people right now, the real e-mail system consist of two different servers running on the main e-mail server machine. One is called the SMTP Server (Simple mail transfer protocol) which handles outgoing mail and the other is POP3 Server (Post Office Protocol) which takes the responsibility of incoming mail. The SMTP server [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwinspark.net%2F2010%2F03%2F31%2Fhow-e-mail-system-works-concept-of-smtp-and-pop3-server%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwinspark.net%2F2010%2F03%2F31%2Fhow-e-mail-system-works-concept-of-smtp-and-pop3-server%2F&amp;source=manekari&amp;style=compact" height="61" width="50" /><br />
			</a>
		</div>
<p style="text-align: justify;"><img class="alignleft size-full wp-image-1609" title="live-mail" src="http://winspark.net/wp-content/uploads/2010/03/live-mail1.png" alt="" width="129" height="100" />For the vast majority of people right now, the real e-mail system consist of two different servers running on the main e-mail server machine. One is called the <strong>SMTP Server</strong> (Simple mail transfer protocol) which handles outgoing mail and the other is <strong>POP3 Server</strong> (Post Office Protocol) which takes the responsibility of incoming mail. The SMTP server listens on well-known port number 25, while POP3 listens on port 110.</p>
<p style="text-align: justify;"><span id="more-1607"></span></p>
<p style="text-align: justify;"><strong>Sending the mail (Role of SMTP server)</strong></p>
<p style="text-align: justify;">Whenever you send a piece of e-mail, your e-mail client interacts with the SMTP server to handle the sending.</p>
<p style="text-align: justify;">Lets assume that i want to send a piece of e-mail. My e-mail ID is <strong>admin</strong> and having account on <strong>WinSpark.net</strong>. I want to send e-mail to <strong>manekari@live.com</strong> and i am using standalone e-mail client like <strong>Windows live mail or Outlook Express</strong>. lets see what happens when i compose a message and press the send button.</p>
<ol style="text-align: justify;">
<li>E-mail client connects to the SMTP server at <strong>mail.WinSpark.net</strong> using <strong>port 25</strong>.</li>
<li>E-mail client has a conversation with the SMTP server, telling the SMTP server the address of the sender and the address of the recipient, as well as the body of the message.</li>
<li>The SMTP server takes the <strong>&#8220;to&#8221;</strong> address (manekari@live.com) and breaks into two parts :
<ul>
<li>The recipient name (manekari)</li>
<li>The domain name (live.com)</li>
</ul>
</li>
<p>(If the <strong>&#8220;to&#8221;</strong> had been another user at WinSpark.net, the SMTP server would simply hand the message to POP3 server for <strong>WinSpark.net</strong> ) Since the recipent is at another domain, SMTP needs to communicate with the domain.</p>
<li>The SMTP server has a conversation with a <strong>Domain Name Server</strong>, or <strong>DNS</strong>. It says, &#8220;Can you give me the IP address of the SMTp server for <strong>live.com</strong>?&#8221; The DNS replies with the one or more IP address for the SMTP server(s) that <strong>live.com</strong> operates.</li>
<li>The SMTP server at <strong>WinSpark.net</strong> connects with the SMTP server at <strong>live.com</strong> using <strong>port 25</strong>. It has the same simple text conversation that my e-mail client had with the SMTP server for <strong>WinSpark</strong>, and gives the message to the <strong>live.com</strong> server. The <strong>Live.com</strong> server recognizes that the domain name for <strong>manekari </strong>is at <strong>Live.com</strong>, so it hands the message to yahoo POP3 server, which puts the message in manekari&#8217;s mailbox.</li>
</ol>
<p style="text-align: justify;">If, for some reason, the SMTP server at <strong>winspark.net</strong> cannot connect with the SMTP server at <strong>Live.com</strong>, then the message goes into queue. The SMTP server on most of machines uses a programe called <strong>sendmail</strong> to do the actual sending, so this queue is called the <strong>sendmail queue</strong>.</p>
<p style="text-align: justify;"><strong>Sendmail </strong>will periodically try to resend the message in its queue. for example, it might retry sending in every 5 to 15 mins.</p>
<p style="text-align: justify;"><strong>Receiving the mail (The POP3 server)</strong></p>
<p style="text-align: justify;">When a messege arrives, the POP3 server simply appends it to the bottom of the recipient&#8217;s file directory. When you check your e-mail, your e-mail client connects to the POP3 server using <strong>port 110</strong>. The POP3 server requires an <strong>Username</strong> and <strong>password</strong>.</p>
<p style="text-align: justify;">Once you have logged in, the POP3 server opens your text file and allows you to access it. Your e-mail client connects to the POP3 server and issues a series of commands to bring copies of your e-mail massage to your Local machine.</p>
<p style="text-align: justify;">You can see the POP3 server simply acts as an interface between the e-mail client and the text file containing your massage.</p>
<!--INFOLINKS_OFF-->]]></content:encoded>
			<wfw:commentRss>http://winspark.net/2010/03/31/how-e-mail-system-works-concept-of-smtp-and-pop3-server/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Share your videos on YouTube through Windows Live Movie Maker Beta</title>
		<link>http://winspark.net/2010/03/26/share-your-videos-on-youtube-through-windows-live-movie-maker-beta/</link>
		<comments>http://winspark.net/2010/03/26/share-your-videos-on-youtube-through-windows-live-movie-maker-beta/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 18:08:40 +0000</pubDate>
		<dc:creator>Mr. Spark (admin)</dc:creator>
				<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[Tips & Tweaks]]></category>
		<category><![CDATA[Wave 4]]></category>
		<category><![CDATA[Beta]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Movie Maker Wave 4]]></category>
		<category><![CDATA[Movie Maler]]></category>
		<category><![CDATA[Publish video]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Windows Live]]></category>
		<category><![CDATA[Windows Live Movie Maker Beta]]></category>
		<category><![CDATA[WL MM]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://winspark.net/?p=1596</guid>
		<description><![CDATA[Wave 4 is on the way beyond the expectation of users. Windows Live Movie Maker Beta Wave 4 contains the tremendous feature of sharing your videos on social networking sites or on SkyDrive. Indeed the new WL Movie Maker Wave 4 will gonna bundled with the awesome new AutoMovie Themes, Various Animation and Visual Effects. The movie [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwinspark.net%2F2010%2F03%2F26%2Fshare-your-videos-on-youtube-through-windows-live-movie-maker-beta%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwinspark.net%2F2010%2F03%2F26%2Fshare-your-videos-on-youtube-through-windows-live-movie-maker-beta%2F&amp;source=manekari&amp;style=compact" height="61" width="50" /><br />
			</a>
		</div>
<p style="text-align: justify;"><img class="alignleft size-full wp-image-1604" title="WLMovieMaker_128x128" src="http://winspark.net/wp-content/uploads/2010/03/WLMovieMaker_128x128.png" alt="" width="102" height="102" />Wave 4 is on the way beyond the expectation of users. Windows Live Movie Maker Beta Wave 4 contains the tremendous feature of sharing your videos on social networking sites or on SkyDrive. Indeed the new WL Movie Maker Wave 4 will gonna bundled with the awesome new AutoMovie Themes, Various Animation and Visual Effects.</p>
<p style="text-align: justify;"><span id="more-1596"></span></p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-1597" title="1moviemaker" src="http://winspark.net/wp-content/uploads/2010/03/1moviemaker.png" alt="" width="591" height="375" /></p>
<p style="text-align: justify;">The movie maker packed with Wave 3 was having the limited sharing feature rather you would have to upload your videos only into soapbox.</p>
<p style="text-align: justify;">At the Home Tab the two new subTabs &#8220;AutoMovie themes&#8221; and &#8220;Sharing&#8221; is included. Sharing tab provides user to share their own created videos on youtube, SkyDrive or in facebook too or they will have the option of saving the video in high resolution on the local drive.</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-1598" title="2sharing" src="http://winspark.net/wp-content/uploads/2010/03/2sharing.png" alt="" width="453" height="264" /></p>
<p style="text-align: justify;">After creating your video click on the YouTube icon present in Sharing Tab. You will be asked your YouTube ID and password.</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-1599" title="4youtubelogin" src="http://winspark.net/wp-content/uploads/2010/03/4youtubelogin.png" alt="" width="428" height="375" /></p>
<p style="text-align: justify;">After Entering Username and password you will be having the window to add the Movie details like its Title, Description, Tags, Category and Permission whether you want to publish your video to the public or private.</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-1600" title="5publish" src="http://winspark.net/wp-content/uploads/2010/03/5publish.png" alt="" width="506" height="525" /></p>
<p style="text-align: justify;">After clicking on the publish button your video will be saved in your local drive (<em>with default resolution settings</em>) and then it will be uploaded to your YouTube account.</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-1601" title="6savingmovie" src="http://winspark.net/wp-content/uploads/2010/03/6savingmovie.png" alt="" width="441" height="163" /><br />
<img class="aligncenter size-full wp-image-1602" title="7publishing" src="http://winspark.net/wp-content/uploads/2010/03/7publishing.png" alt="" width="441" height="163" /><br />
<img class="aligncenter size-full wp-image-1603" title="8published" src="http://winspark.net/wp-content/uploads/2010/03/8published.png" alt="" width="541" height="217" /></p>
<!--INFOLINKS_OFF-->]]></content:encoded>
			<wfw:commentRss>http://winspark.net/2010/03/26/share-your-videos-on-youtube-through-windows-live-movie-maker-beta/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to link Online IDs with Windows User Account</title>
		<link>http://winspark.net/2010/01/03/how-to-link-online-ids-with-windows-user-account/</link>
		<comments>http://winspark.net/2010/01/03/how-to-link-online-ids-with-windows-user-account/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 18:24:04 +0000</pubDate>
		<dc:creator>Mr. Spark (admin)</dc:creator>
				<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[Tips & Tweaks]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Live]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Online ID]]></category>
		<category><![CDATA[Password]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Sharing]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[User Account]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows 7 Server]]></category>
		<category><![CDATA[Windows Live]]></category>
		<category><![CDATA[Windows Vista]]></category>

		<guid isPermaLink="false">http://winspark.net/?p=1470</guid>
		<description><![CDATA[If you have an online account, such as an e?mail account, you can link that account with your Windows user account. Linking these accounts provides the following benefits: People can share files with you on a homegroup using your online ID instead of having to create a Windows user account for you on their computer. [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwinspark.net%2F2010%2F01%2F03%2Fhow-to-link-online-ids-with-windows-user-account%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwinspark.net%2F2010%2F01%2F03%2Fhow-to-link-online-ids-with-windows-user-account%2F&amp;source=manekari&amp;style=compact" height="61" width="50" /><br />
			</a>
		</div>
<p>If you have an online account, such as an e?mail account, you can  link that account with your Windows user  account. Linking these accounts provides the following benefits:</p>
<ul>
<li>People can share files with you on a homegroup using your online ID instead of having to create a Windows user account for you on their computer.</li>
<li>You can use your online ID to access your information on other  computers on a network, such as accessing files on a home computer from your  work computer.</li>
</ul>
<p><span id="more-1470"></span>Follow the Procedure to link Online IDs</p>
<ol>
<li>Open <strong>User accounts</strong> from <strong>Control panel</strong>.</li>
<li>Click <strong>Link online ID</strong>s from Left Menu.</li>
<li>Next to the online ID provider that you want to link your user account with,  click <strong>Link Online ID</strong>.</li>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-1471" title="Link Online IDs" src="http://winspark.net/wp-content/uploads/2010/01/1-3-2010-11-33-15-PM.png" alt="" width="586" height="379" /><br />
<img class="aligncenter size-full wp-image-1472" title="Link ID signin box" src="http://winspark.net/wp-content/uploads/2010/01/Link-ID-signin.png" alt="" width="416" height="468" /></p>
<li>Type your user name and password for the online ID, click <strong>Sign  in</strong>, and then click <strong>OK</strong>.</li>
</ol>
<!--INFOLINKS_OFF-->]]></content:encoded>
			<wfw:commentRss>http://winspark.net/2010/01/03/how-to-link-online-ids-with-windows-user-account/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Broadcast your PowerPoint Presentation over the web</title>
		<link>http://winspark.net/2009/12/20/broadcast-your-powerpoint-presentation-over-the-web/</link>
		<comments>http://winspark.net/2009/12/20/broadcast-your-powerpoint-presentation-over-the-web/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 15:47:14 +0000</pubDate>
		<dc:creator>Mr. Spark (admin)</dc:creator>
				<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[Office 2010]]></category>
		<category><![CDATA[Tips & Tweaks]]></category>
		<category><![CDATA[Broadcast]]></category>
		<category><![CDATA[Live]]></category>
		<category><![CDATA[Office Web]]></category>
		<category><![CDATA[PowerPoint]]></category>
		<category><![CDATA[Presentation]]></category>
		<category><![CDATA[Seminar]]></category>

		<guid isPermaLink="false">http://winspark.net/?p=1436</guid>
		<description><![CDATA[The Microsoft PowerPoint Broadcast Service makes it easy for PowerPoint 2010 users to share a presentation on the fly with anyone, anywhere, over the web. Just send a link, and in one click everyone you invite will be watching a synchronized view of your slide show in their browser, even if they don’t have PowerPoint [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwinspark.net%2F2009%2F12%2F20%2Fbroadcast-your-powerpoint-presentation-over-the-web%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwinspark.net%2F2009%2F12%2F20%2Fbroadcast-your-powerpoint-presentation-over-the-web%2F&amp;source=manekari&amp;style=compact" height="61" width="50" /><br />
			</a>
		</div>
<p style="text-align: justify;"><a name="_Toc215398451"></a><a name="_Toc204662450"></a>The Microsoft PowerPoint Broadcast Service makes it easy for PowerPoint 2010 users to share a presentation on the fly with anyone, anywhere, over the web.</p>
<p style="text-align: justify;">Just send a link, and in one click everyone you invite will be watching a synchronized view of your slide show in their browser, even if they don’t have PowerPoint 2010 installed.</p>
<p style="text-align: justify;">To broadcast your slides to an audience, follow the directions below.</p>
<p style="text-align: justify;"><span id="more-1436"></span></p>
<p style="text-align: justify;"><strong>Step 1 </strong>: If you don’t have PowerPoint 2010 installed, <a href="http://winspark.net/2009/11/19/office-2010-beta-available-to-public-download-now/" target="_blank">download the Office 2010</a> today.</p>
<p style="text-align: justify;"><strong>Step 2</strong> : To start a broadcast from PowerPoint 2010, on the <strong>Slide Show</strong> tab, click <strong>Broadcast Slide Show</strong>.</p>
<p style="text-align: justify;">
<p style="text-align: center;"><img class="size-full wp-image-1437  aligncenter" title="Broadcast button" src="http://winspark.net/wp-content/uploads/2009/12/Broadcast-button.png" alt="" width="577" height="95" /></p>
<p style="text-align: justify;">
<p style="text-align: justify;">U will get the Broadcast window just like the example below.</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-1438" title="broadcast1" src="http://winspark.net/wp-content/uploads/2009/12/broadcast1.png" alt="" width="550" height="388" /></p>
<p style="text-align: justify;">Step 3 : Click on <strong>Start Broadcast</strong> (It will connect to the PowerPoint Broadcast service)</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-1441" title="broadcastconnect" src="http://winspark.net/wp-content/uploads/2009/12/broadcastconnect.png" alt="" width="440" height="430" /></p>
<p style="text-align: justify;">
<p style="text-align: justify;">After that the Sign in box will appear. <strong>Sign in</strong> with your Windows Live ID. (If you use Hotmail, Live Messenger, or Xbox LIVE.</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-1442" title="login" src="http://winspark.net/wp-content/uploads/2009/12/login.png" alt="" width="439" height="261" /></p>
<p style="text-align: justify;">
<p style="text-align: justify;">PowerPoint will provide a public link that you can send to remote attendees. Anyone who receives a link to the broadcast may watch it.  Keep in mind that if an attendee forwards the link to someone else, that person can also use the link to view your broadcast.</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-1443" title="broadcast3slide link" src="http://winspark.net/wp-content/uploads/2009/12/broadcast3slide-link.png" alt="" width="440" height="430" /></p>
<p style="text-align: justify;">
<p style="text-align: justify;">You can invite more attendees with send Invite button.</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-1444" title="invitation" src="http://winspark.net/wp-content/uploads/2009/12/invitation.png" alt="" width="124" height="85" /></p>
<p style="text-align: justify;">To view a broadcast, just open the Broadcast link (All you need is the latest version of Internet Explorer, Firefox, or Safari for Mac.)</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-1445" title="broadcast5enteraddress" src="http://winspark.net/wp-content/uploads/2009/12/broadcast5enteraddress.png" alt="" width="480" height="351" /></p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-1446" title="broadcast6final" src="http://winspark.net/wp-content/uploads/2009/12/broadcast6final.png" alt="" width="560" height="400" /></p>
<!--INFOLINKS_OFF-->]]></content:encoded>
			<wfw:commentRss>http://winspark.net/2009/12/20/broadcast-your-powerpoint-presentation-over-the-web/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>All about Microsoft Indic Language Input Tool</title>
		<link>http://winspark.net/2009/12/16/all-about-microsoft-indic-language-input-tool/</link>
		<comments>http://winspark.net/2009/12/16/all-about-microsoft-indic-language-input-tool/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 14:05:02 +0000</pubDate>
		<dc:creator>Mr. Spark (admin)</dc:creator>
				<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Microsoft News]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Tech news]]></category>
		<category><![CDATA[Tips & Tweaks]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Hindi]]></category>
		<category><![CDATA[Input tool]]></category>
		<category><![CDATA[Language]]></category>
		<category><![CDATA[Language conversion]]></category>
		<category><![CDATA[Language tool]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Tamil]]></category>

		<guid isPermaLink="false">http://winspark.net/?p=1417</guid>
		<description><![CDATA[Now a days we feel that for many languages like Hindi, entering text on PC is difficult. And there are many products and tools in market out there today through which we can enter text in hindi by any translation widget. But most products have some barrier – e.g. some require users to know a fixed [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwinspark.net%2F2009%2F12%2F16%2Fall-about-microsoft-indic-language-input-tool%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwinspark.net%2F2009%2F12%2F16%2Fall-about-microsoft-indic-language-input-tool%2F&amp;source=manekari&amp;style=compact" height="61" width="50" /><br />
			</a>
		</div>
<p style="text-align: justify;"><strong><img class="alignright size-full wp-image-1428" title="ILITWebpage_Title_394x112" src="http://winspark.net/wp-content/uploads/2009/12/ILITWebpage_Title_394x112.png" alt="ILITWebpage_Title_394x112" width="394" height="112" /></strong>Now a days we feel that for many languages like Hindi, entering text on PC is difficult. And there are many products and tools in market out there today through which we can enter text in hindi by any translation widget. But most products have some barrier – e.g. some require users to know a fixed transliteration scheme; some others allow free form transliteration, but work only on webpages etc.</p>
<p style="text-align: justify;">But Microsoft peoples has made their efforts to create a tool that can bring translations to the desktop such that it can be used to enter text in any application on the PC, and that is a key focus of the Indic Language Input Tool.</p>
<p style="text-align: justify;"><span id="more-1417"></span></p>
<p style="text-align: justify;">Currently it support six languages – Bengali, Hindi, Kannada, Malayalam, Tamil and Telugu.</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-1418" title="language support" src="http://winspark.net/wp-content/uploads/2009/12/language-support.png" alt="language support" width="597" height="51" /></p>
<p style="text-align: justify;">By using this tool you can enter text in Indic language in any webpages, Take an example below.</p>
<div class="mceTemp mceIEcenter" style="text-align: justify;">
<dl id="attachment_1419" class="wp-caption aligncenter" style="width: 525px;">
<dt class="wp-caption-dt"><img class="size-full wp-image-1419" title="comment box" src="http://winspark.net/wp-content/uploads/2009/12/comment-box.png" alt="Add a comment in Hindi Language" width="515" height="471" /></dt>
<dd class="wp-caption-dd">Add a comment in Hindi Language</dd>
</dl>
</div>
<p style="text-align: justify;">You can download this tool in two different versions through <a href="http://msn.co.in/ilit" target="_blank">Indic Language tool Homepage</a>.</p>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-1420" title="twoversions" src="http://winspark.net/wp-content/uploads/2009/12/twoversions.png" alt="twoversions" width="567" height="126" /></p>
<h4 style="text-align: justify;">Some FAQ regarding Indic Language tool.</h4>
<p style="text-align: justify;"><strong>Q1 : How to Install Web version ?</strong></p>
<p style="text-align: justify;">Ans :</p>
<ol style="text-align: justify;">
<li>Select <strong>Language</strong>. <img class="aligncenter size-full wp-image-1421" title="language support" src="http://winspark.net/wp-content/uploads/2009/12/language-support1.png" alt="language support" width="418" height="36" /></li>
<li>click on <strong>Install Web version</strong> Button . <img class="aligncenter size-full wp-image-1422" title="install web version" src="http://winspark.net/wp-content/uploads/2009/12/install-web-version.png" alt="install web version" width="161" height="35" /></li>
<li>Follow the instructions according to your browser.</li>
</ol>
<ul style="text-align: justify;">
<li><strong>Internet Explorer. </strong>
<ul>
<li><strong>Right-click</strong> on the language name above and select <strong>Add to Favorites</strong>&#8230;</li>
<li>Click <strong>Yes</strong> on the <strong>security alert dialog</strong>.</li>
<li>On <strong>IE8</strong>: Select Favorites Bar from the Create in drop down.</li>
<li>On<strong> IE7</strong> or <strong>IE6</strong>: Select Links from the Create in drop down. Make sure the Links</li>
<li>toolbar is visible.</li>
<li>Click <strong>OK</strong>.</li>
</ul>
</li>
<li><strong>Mozilla Firefox </strong>
<ul>
<li><strong>Drag </strong>the language name above to the <strong>Bookmarks toolbar</strong>.</li>
</ul>
</li>
<li><strong>Safari</strong>
<ul>
<li><strong>Drag </strong>the language name above to the <strong>Bookmarks toolbar</strong>.</li>
</ul>
</li>
<li><strong>Google Chrome </strong>
<ul>
<li>Make sure the Bookmarks toolbar is visible.</li>
<li> <strong>Drag </strong>the language name above to the<strong> Bookmarks toolbar</strong>.</li>
</ul>
</li>
<li><strong>Opera</strong>
<ul>
<li><strong>Right-click</strong> on the<strong> language</strong> name above and select <strong>Bookmark Link</strong>&#8230;<br />
Click <strong>OK </strong>on the <strong>Add Bookmark dialog</strong>.</li>
</ul>
</li>
</ul>
<p style="text-align: justify;"><strong>Q2 : How to install Desktop version ?</strong></p>
<p style="text-align: justify;">Ans :</p>
<ol style="text-align: justify;">
<li>Select <strong>Language</strong>.</li>
<li>Click on <strong>Install desktop version</strong>.<img class="aligncenter size-full wp-image-1423" title="install desktop version" src="http://winspark.net/wp-content/uploads/2009/12/install-desktop-version.png" alt="install desktop version" width="185" height="35" /></li>
<li>Click on <strong>Install </strong>button and download the Setup.<img class="aligncenter size-full wp-image-1424" title="install now" src="http://winspark.net/wp-content/uploads/2009/12/install-now.png" alt="install now" width="139" height="37" /></li>
</ol>
<p style="text-align: justify;"><strong>Q3 : How to use it on desktop application.</strong></p>
<p style="text-align: justify;">Ans :</p>
<p style="text-align: justify;">Do the following to use Microsoft ILIT in any application, such as Microsoft Wordpad or Windows Live messenger.</p>
<ol style="text-align: justify;">
<li>Open the application in which you would like to enter Indic text.</li>
<li>Change the language using the language bar, which typically appears in the      taskbar as follows.
<p><div id="attachment_1425" class="wp-caption aligncenter" style="width: 257px"><img class="size-full wp-image-1425" title="language settings" src="http://winspark.net/wp-content/uploads/2009/12/language-settings.png" alt="Language Bar" width="247" height="135" /><p class="wp-caption-text">Language Bar</p></div></li>
<li> You can now start typing in English and whatever you type      automatically gets transliterated after a word-breaking character like a space, comma, etc. is      entered.</li>
<li>Note that this language setting is per application. You may have to repeat the steps above for each      application you want to use Microsoft ILIT in.
<p><div id="attachment_1426" class="wp-caption aligncenter" style="width: 307px"><img class="size-full wp-image-1426" title="example in Live messenger" src="http://winspark.net/wp-content/uploads/2009/12/example-in-Live-messenger.png" alt="Live Messenger Chat Box" width="297" height="265" /><p class="wp-caption-text">Live Messenger Chat Box</p></div></li>
<p style="text-align: center;"><img class="size-full wp-image-1427 aligncenter" title="application example" src="http://winspark.net/wp-content/uploads/2009/12/application-example.png" alt="Wordpad" width="533" height="291" /></p>
</ol>
<h3>Links :</h3>
<ul>
<li><a href="http://msn.co.in/ilit" target="_blank">Microsoft Indic tool Homepage</a></li>
<li><a href="http://blogs.msdn.com/indicinput/default.aspx" target="_blank">MSDN support blog</a></li>
</ul>
<!--INFOLINKS_OFF-->]]></content:encoded>
			<wfw:commentRss>http://winspark.net/2009/12/16/all-about-microsoft-indic-language-input-tool/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>10 tips for improving your wireless network</title>
		<link>http://winspark.net/2009/10/15/10-tips-for-improving-your-wireless-network/</link>
		<comments>http://winspark.net/2009/10/15/10-tips-for-improving-your-wireless-network/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 03:56:37 +0000</pubDate>
		<dc:creator>Mr. Spark (admin)</dc:creator>
				<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[Tips & Tweaks]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Wireless]]></category>

		<guid isPermaLink="false">http://winspark.net/?p=1345</guid>
		<description><![CDATA[If Windows ever notifies you about a weak signal, it probably means your connection isn&#8217;t as fast or as reliable as it could be. Worse, you might lose your connection entirely in some parts of your home. If you&#8217;re looking to improve the signal for your wireless network, try some of these tips for extending [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwinspark.net%2F2009%2F10%2F15%2F10-tips-for-improving-your-wireless-network%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwinspark.net%2F2009%2F10%2F15%2F10-tips-for-improving-your-wireless-network%2F&amp;source=manekari&amp;style=compact" height="61" width="50" /><br />
			</a>
		</div>
<p style="text-align: justify;"><img class="alignleft size-full wp-image-1346" title="2412348459_218e4d1b2a" src="http://winspark.net/wp-content/uploads/2009/10/2412348459_218e4d1b2a.jpg" alt="2412348459_218e4d1b2a" width="136" height="127" />If Windows ever notifies you about a weak signal, it probably means your connection isn&#8217;t as fast or as reliable as it could be. Worse, you might lose your connection entirely in some parts of your home. If you&#8217;re looking to improve the signal for your wireless network, try some of these tips for extending your wireless range and improving your wireless network performance. Microsoft has provided <a href="http://www.microsoft.com/athome/setup/wirelesstips.aspx" target="_blank">10 tips to improve your Wireless Network</a>.</p>
<!--INFOLINKS_OFF-->]]></content:encoded>
			<wfw:commentRss>http://winspark.net/2009/10/15/10-tips-for-improving-your-wireless-network/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Password checker from Microsoft Online Safety</title>
		<link>http://winspark.net/2009/10/15/password-checker-from-microsoft-online-safety/</link>
		<comments>http://winspark.net/2009/10/15/password-checker-from-microsoft-online-safety/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 03:46:10 +0000</pubDate>
		<dc:creator>Mr. Spark (admin)</dc:creator>
				<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Tips & Tweaks]]></category>
		<category><![CDATA[Account]]></category>
		<category><![CDATA[Hack]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Online]]></category>
		<category><![CDATA[Online Security]]></category>
		<category><![CDATA[Password]]></category>
		<category><![CDATA[Password checker]]></category>

		<guid isPermaLink="false">http://winspark.net/?p=1342</guid>
		<description><![CDATA[R u safe !!!! , Is your password secure or not, want to get new secure password??? Don&#8217;t worry here is the Password checker initiated by Microsoft Online Safety. Here you can check your password strength whether your password is able to protect your account or not. Or you can create your own secure password. [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwinspark.net%2F2009%2F10%2F15%2Fpassword-checker-from-microsoft-online-safety%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwinspark.net%2F2009%2F10%2F15%2Fpassword-checker-from-microsoft-online-safety%2F&amp;source=manekari&amp;style=compact" height="61" width="50" /><br />
			</a>
		</div>
<p style="text-align: justify;"><img class="alignleft size-full wp-image-1343" title="password-icon" src="http://winspark.net/wp-content/uploads/2009/10/password-icon.jpg" alt="password-icon" width="114" height="98" />R u safe !!!! , Is your password secure or not, want to get new secure password??? Don&#8217;t worry here is the Password checker initiated by Microsoft Online Safety. Here you can check your password strength whether your password is able to protect your account or not. Or you can create your own secure password. Microsoft has provided the detailed <a href="http://www.microsoft.com/protect/fraud/passwords/create.aspx" target="_blank">6 steps to build a strong password</a>.</p>
<p style="text-align: justify;">If someone steals your passwords, they can use your name to open new credit card accounts, apply for a mortgage, or pose as you in online transactions. To prevent this, you can do the following</p>
<ul style="text-align: justify;">
<li><a href="http://www.microsoft.com/protect/fraud/passwords/create.aspx" target="_blank">Follow 6 steps to build a strong password</a></li>
<li>Learn what makes strong passwords</li>
<li>Avoid common password strategies that fail.</li>
</ul>
<p style="text-align: justify;">Other links :</p>
<ul style="text-align: justify;">
<li><a href="https://www.microsoft.com/protect/fraud/passwords/checker.aspx?WT.mc_id=09Home_Password_Checker" target="_blank">Password Checker</a></li>
<li><a href="http://www.microsoft.com/protect/fraud/passwords/secret.aspx">5 tips to help keep your passwords secret</a></li>
<li><a href="http://www.microsoft.com/protect/fraud/passwords/create.aspx">Strong passwords: How to create and use them</a></li>
</ul>
<p style="text-align: justify;">
<!--INFOLINKS_OFF-->]]></content:encoded>
			<wfw:commentRss>http://winspark.net/2009/10/15/password-checker-from-microsoft-online-safety/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automatically scan your received file in Windows Live Messenger</title>
		<link>http://winspark.net/2009/07/05/automatically-scan-your-received-file-in-windows-live-messenger/</link>
		<comments>http://winspark.net/2009/07/05/automatically-scan-your-received-file-in-windows-live-messenger/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 20:03:05 +0000</pubDate>
		<dc:creator>Mr. Spark (admin)</dc:creator>
				<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Tips & Tweaks]]></category>
		<category><![CDATA[Windows Live]]></category>
		<category><![CDATA[Messenger]]></category>
		<category><![CDATA[Morro]]></category>
		<category><![CDATA[MSE]]></category>

		<guid isPermaLink="false">http://winspark.net/?p=1116</guid>
		<description><![CDATA[Windows Live messenger has inbuilt facility to set your virus scanner as a default file sharing virus scanner. Now receive files through live messenger safely. To set Microsoft Security Essential as your default virus scanner follow the simple steps described below. First of all you need to Install Microsoft Security Essential or any other virus [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwinspark.net%2F2009%2F07%2F05%2Fautomatically-scan-your-received-file-in-windows-live-messenger%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwinspark.net%2F2009%2F07%2F05%2Fautomatically-scan-your-received-file-in-windows-live-messenger%2F&amp;source=manekari&amp;style=compact" height="61" width="50" /><br />
			</a>
		</div>
<p style="text-align: justify;"><img class="size-full wp-image-1118 alignleft" title="Security" src="http://winspark.net/wp-content/uploads/2009/07/Security.png" alt="Security" width="74" height="74" />Windows Live messenger has inbuilt facility to set your virus scanner as a default file sharing virus scanner. Now receive files through live messenger safely.</p>
<p style="text-align: justify;">To set Microsoft Security Essential as your default virus scanner follow the simple steps described below. First of all you need to Install Microsoft Security Essential or any other virus scanner.</p>
<p><span id="more-1116"></span></p>
<ul>
<li>Go to <strong>Tools</strong> &gt; <strong>Option</strong> as described in image below</li>
</ul>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-1117" title="tools option" src="http://winspark.net/wp-content/uploads/2009/07/tools-option.png" alt="tools option" width="425" height="497" /></p>
<ul style="text-align: justify;">
<li>Select<strong> File Transfer</strong> from left sidemenu.</li>
<li>Check &#8220;<strong>Scan files for virus using :</strong>&#8220;</li>
<li>Click on browse and navigate &#8220;<strong>msseces.exe</strong>&#8221; (If you are going to use MSE as a default scanner) from &#8220;C:\Program Files\Microsoft Security Essentials&#8221; directory. (If you are using any other virus scanner than locate another scanner application.)</li>
</ul>
<p><img class="aligncenter size-full wp-image-1123" title="file transfer" src="http://winspark.net/wp-content/uploads/2009/07/file-transfer.png" alt="file transfer" width="539" height="302" /></p>
<ul style="text-align: justify;">
<li><strong>Apply</strong> it and click on <strong>OK</strong>.</li>
</ul>
<p style="text-align: justify;"><strong>Note : </strong></p>
<ul style="text-align: justify;">
<li>Scanned files that are infected should be deleted</li>
<li>Infected and potentially infected files that are found by the safety scanner can be accessed in a Hidden folder.</li>
<li>If you&#8217;re using Windows XP, the hidden folder can be found at the following location: &#8220;C:\Documents and Settings\<em>your username</em>\Local Settings\Application Data\Microsoft\QuarantinedFiles&#8221;.</li>
<li>If you&#8217;re using Windows Vista, the hidden folder can be found at the following location: &#8220;C:\users\<em>your username</em>\AppData\local\Microsoft\QuarantinedFiles&#8221;</li>
</ul>
<p style="text-align: justify;">
<p style="text-align: justify;">Be safe from Internet World <img src='http://winspark.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Happy Computing</p>
<!--INFOLINKS_OFF-->]]></content:encoded>
			<wfw:commentRss>http://winspark.net/2009/07/05/automatically-scan-your-received-file-in-windows-live-messenger/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to create your Own Power Plan in Windows 7</title>
		<link>http://winspark.net/2009/07/04/how-to-create-your-own-power-plan-in-windows-7/</link>
		<comments>http://winspark.net/2009/07/04/how-to-create-your-own-power-plan-in-windows-7/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 16:31:36 +0000</pubDate>
		<dc:creator>Mr. Spark (admin)</dc:creator>
				<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[Tips & Tweaks]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Power Plan]]></category>

		<guid isPermaLink="false">http://winspark.net/?p=1102</guid>
		<description><![CDATA[A power plan is a collection of hardware and system settings that manages how your computer uses and conserves power. Power plans can save energy, maximize system performance, or balance energy conservation with performance. Windows 7 has two default plans: Balanced. Offers full performance and display brightness when you need it, but conserves power when the [...]]]></description>
			<content:encoded><![CDATA[<!--INFOLINKS_ON--><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwinspark.net%2F2009%2F07%2F04%2Fhow-to-create-your-own-power-plan-in-windows-7%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwinspark.net%2F2009%2F07%2F04%2Fhow-to-create-your-own-power-plan-in-windows-7%2F&amp;source=manekari&amp;style=compact" height="61" width="50" /><br />
			</a>
		</div>
<p style="text-align: justify;">A power plan is a collection of hardware and system settings that manages how  your computer uses and conserves power. Power plans can save energy, maximize  system performance, or balance energy conservation with performance.</p>
<p style="text-align: justify;"><span>Windows 7</span> has two default plans:</p>
<ul style="text-align: justify;">
<li><span><strong>Balanced</strong>.</span> Offers full  performance and display brightness when you need it, but conserves power when  the computer is idle.</li>
<li><strong><span>Power saver.</span></strong> The best choice  for extending battery life. The cost? Slower performance and lower display  brightness.</li>
</ul>
<p style="text-align: justify;">You can create your own power plan by just following the steps described below.</p>
<p style="text-align: justify;"><span id="more-1102"></span></p>
<ul style="text-align: justify;">
<li>Go to <strong>Control panel</strong> through <strong>Start menu</strong> icon.</li>
<li>Select <strong>Hardware and Sound</strong> category.</li>
<li>Chose the <strong>Power Option.</strong></li>
<li>In the left sidebar select <strong>Create a Power Plan</strong>.</li>
</ul>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-1103" title="create a power Plan" src="http://winspark.net/wp-content/uploads/2009/07/create-a-power-Plan.png" alt="create a power Plan" width="208" height="272" /></p>
<ul style="text-align: justify;">
<li>In the <span>Plan name</span> box, type a name for the plan.</li>
</ul>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-1104" title="name the plan" src="http://winspark.net/wp-content/uploads/2009/07/name-the-plan.png" alt="name the plan" width="565" height="444" /></p>
<ul style="text-align: justify;">
<li>On the <span>Change settings for the plan</span> page, choose the  display and sleep settings that you want to use when your computer is running on  battery and when it&#8217;s plugged in.</li>
</ul>
<p style="text-align: justify;"><img class="aligncenter size-full wp-image-1105" title="change settings of plan" src="http://winspark.net/wp-content/uploads/2009/07/change-settings-of-plan.png" alt="change settings of plan" width="565" height="303" /></p>
<ul style="text-align: justify;">
<li>Click <strong>Create</strong>.</li>
</ul>
<p style="text-align: justify;">If you&#8217;re using a laptop, your plan appears under <strong><span>Plans shown on  the battery meter</span></strong>. If you&#8217;re using a desktop computer, your plan appears  under <strong><span>Preferred plans</span></strong>.</p>
<p style="text-align: justify;">To change power settings on a computer that you&#8217;re connected to by using Remote  Desktop Connection, you must be logged on as an administrator on the remote  computer.</p>
<!--INFOLINKS_OFF-->]]></content:encoded>
			<wfw:commentRss>http://winspark.net/2009/07/04/how-to-create-your-own-power-plan-in-windows-7/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
