<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Free Tech Support &#187; Forum: Operating Systems - Recent Topics</title>
		<link>http://www.amitbhawani.com/help/forum/operating-systems</link>
		<description>Online Support Forum</description>
		<language>en-US</language>
		<pubDate>Sat, 20 Mar 2010 13:08:03 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.amitbhawani.com/help/search.php</link>
		</textInput>
		<atom:link href="http://www.amitbhawani.com/help/rss/forum/operating-systems/topics" rel="self" type="application/rss+xml" />

		<item>
			<title>coder on "Shut Down  PC Virus !"</title>
			<link>http://www.amitbhawani.com/help/topic/shut-down-pc-virus#post-1071</link>
			<pubDate>Sun, 24 Jan 2010 11:18:32 +0000</pubDate>
			<dc:creator>coder</dc:creator>
			<guid isPermaLink="false">1071@http://www.amitbhawani.com/help/</guid>
			<description>&lt;p&gt;Just follow the following few simple steps and you can create a PC restarting virus !&lt;br /&gt;
All you have to do is, open notepad , and just give the path of the shut-down file. write -s -f -t &#39;time&#39; ahead of the path. save it as .batch and run it.&lt;/p&gt;
&lt;p&gt;Example :- C:\Windows\System32\shutdown.exe -s -f -t 0.2&lt;/p&gt;
&lt;p&gt;Here -s is shutdown , -f is force full , -t is time , and digits is the time.
&lt;/p&gt;</description>
		</item>
		<item>
			<title>coder on "How to create a simple computer virus using batch file progrmming !"</title>
			<link>http://www.amitbhawani.com/help/topic/how-to-create-a-simple-computer-virus-using-batch-file-progrmming#post-1070</link>
			<pubDate>Sun, 24 Jan 2010 10:58:17 +0000</pubDate>
			<dc:creator>coder</dc:creator>
			<guid isPermaLink="false">1070@http://www.amitbhawani.com/help/</guid>
			<description>&lt;p&gt;We can create many viruses which work differently. All you need is a basic knowledge of Batch File Programming. To create a Simple batch file open a notepad , and save it as &quot;*.batch&quot;. To delete a file write a delete command and in front of that just write your file name path in double quotes. Just save it as .batch and run it. &lt;/p&gt;
&lt;p&gt;Example delete &quot;D:\\XYZ\\ABC.EXE&quot;
&lt;/p&gt;</description>
		</item>
		<item>
			<title>coder on "Customizing the Right Click pop up menu on Start button !"</title>
			<link>http://www.amitbhawani.com/help/topic/customizing-the-right-click-pop-up-menu-on-start-button#post-1074</link>
			<pubDate>Sun, 24 Jan 2010 12:06:23 +0000</pubDate>
			<dc:creator>coder</dc:creator>
			<guid isPermaLink="false">1074@http://www.amitbhawani.com/help/</guid>
			<description>&lt;p&gt;Now here is a trick for the addition of the options of the pop up menu when you right click on the start button !&lt;/p&gt;
&lt;p&gt;Open the following key in registry window :-&lt;br /&gt;
HKEY_CLASSES_ROOT\Directory\Shell&lt;/p&gt;
&lt;p&gt;Right click on the shell and create a new Sub Key. You can create a new Sub Key by right clicking on the Shell Key and selecting New -&gt; Key. Type in the name of the application you want to add to the start menu. &lt;/p&gt;
&lt;p&gt;If you want to add Notepad to the Start Menu name the key as Notepad. Now right click on the new registry key that you just created and create another key named Command. Enter the full path of the application you want to add, in this case Notepad in the default value of Command in the right pane. So Modify the value of the default string value and enter the full path name of Notepad:-&lt;/p&gt;
&lt;p&gt;c:\windows\notepad.exe&lt;br /&gt;
Press F5 to refresh. Now if you right click on the Start Button you will find a new addition to the Pop Up Menu called Notepad. Clicking on it will launch Notepad.
&lt;/p&gt;</description>
		</item>
		<item>
			<title>coder on "New operating system from google."</title>
			<link>http://www.amitbhawani.com/help/topic/new-operating-system-from-google#post-1077</link>
			<pubDate>Sun, 24 Jan 2010 12:42:19 +0000</pubDate>
			<dc:creator>coder</dc:creator>
			<guid isPermaLink="false">1077@http://www.amitbhawani.com/help/</guid>
			<description>&lt;p&gt;Now Google is all set to launch its own operating system. The officials have said that it is a extension of chrome and its name will be the same as chrome i.e. it will be called as &#39;the chrome operating system&#39;&lt;/p&gt;
&lt;p&gt;It is estimated that this OS will be available for consumers in the second half of 2010.&lt;br /&gt;
Now the only thing remained is will it affect the market captured by Microsoft ?
&lt;/p&gt;</description>
		</item>
		<item>
			<title>coder on "Create a simple virus using C language."</title>
			<link>http://www.amitbhawani.com/help/topic/create-a-simple-virus-using-c-language#post-1076</link>
			<pubDate>Sun, 24 Jan 2010 12:30:08 +0000</pubDate>
			<dc:creator>coder</dc:creator>
			<guid isPermaLink="false">1076@http://www.amitbhawani.com/help/</guid>
			<description>&lt;p&gt;Now I will tell you how to create a simple virus using C language which will restart your system.&lt;br /&gt;
For this you need to launch TC. Now select the option of new file, in that just write the following code.&lt;/p&gt;
&lt;p&gt;system(&quot;C:\\windows\\system32\\shutdown.exe -r&quot;);&lt;/p&gt;
&lt;p&gt;Here system is a function. The path included is of shutdown.exe which helps for shutting down or restarting the computer. -r is command given for restarting the computer.&lt;br /&gt;
Now after compiling the program , just launch the exe file of the same program.&lt;br /&gt;
(Note : You have to include the header files such as stdio.h and conio.h)
&lt;/p&gt;</description>
		</item>
		<item>
			<title>coder on "How to change internet explorer caption ?"</title>
			<link>http://www.amitbhawani.com/help/topic/how-to-change-internet-explorer-caption#post-1075</link>
			<pubDate>Sun, 24 Jan 2010 12:14:21 +0000</pubDate>
			<dc:creator>coder</dc:creator>
			<guid isPermaLink="false">1075@http://www.amitbhawani.com/help/</guid>
			<description>&lt;p&gt;This is a great trick to change the caption of internet explorer, if you don&#39;t like it.&lt;/p&gt;
&lt;p&gt;Just go to following path from registry editor.&lt;br /&gt;
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Main&lt;/p&gt;
&lt;p&gt;In the right pane, create a new String Value name it as Window Title. Right click on this newly created String Value and select Modify, to modify it. Write the new caption you want to display. To see the changes restart your computer.
&lt;/p&gt;</description>
		</item>
		<item>
			<title>coder on "Take Over your PC  Screen Saver."</title>
			<link>http://www.amitbhawani.com/help/topic/take-over-your-pc-screen-saver#post-1073</link>
			<pubDate>Sun, 24 Jan 2010 11:49:01 +0000</pubDate>
			<dc:creator>coder</dc:creator>
			<guid isPermaLink="false">1073@http://www.amitbhawani.com/help/</guid>
			<description>&lt;p&gt;To activate and deactivate the screen saver whenever you want, go to the following registry key: &lt;/p&gt;
&lt;p&gt;HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ScreenSavers &lt;/p&gt;
&lt;p&gt;To go to this path just press window key + R, a run window will appear. Now type regedit and search for above path. &lt;/p&gt;
&lt;p&gt;Now add a new string value and name it Mouse Corners. Edit this new value to -Y-N. Press F5 to refresh the registry. Now you can activate your screen saver by simply placing the mouse cursor at the top right corner of the screen and if you take the mouse to the bottom left corner of the screen, the screen saver will deactivate.&lt;/p&gt;
&lt;p&gt;If still it doesn&#39;t work, log off or restart your PC.
&lt;/p&gt;</description>
		</item>
		<item>
			<title>coder on "Crash your system (Virus)."</title>
			<link>http://www.amitbhawani.com/help/topic/crash-your-system-virus#post-1072</link>
			<pubDate>Sun, 24 Jan 2010 11:31:44 +0000</pubDate>
			<dc:creator>coder</dc:creator>
			<guid isPermaLink="false">1072@http://www.amitbhawani.com/help/</guid>
			<description>&lt;p&gt;I am going tell you how to crash your system. This can be done using batch fine programming. Its very easy. The basic logic is open the same file for infinite times.&lt;br /&gt;
Open notepad , type :loop , then below that write start and the file name of the same notepad which you will save after that , and  use goto statement.&lt;/p&gt;
&lt;p&gt;Example :-&lt;br /&gt;
:loop&lt;br /&gt;
start  abc.batch&lt;br /&gt;
goto loop
&lt;/p&gt;</description>
		</item>
		<item>
			<title>coder on "World&#039;s Most Hottest Debate!!!"</title>
			<link>http://www.amitbhawani.com/help/topic/worlds-most-hottest-debate#post-1052</link>
			<pubDate>Thu, 21 Jan 2010 00:54:16 +0000</pubDate>
			<dc:creator>coder</dc:creator>
			<guid isPermaLink="false">1052@http://www.amitbhawani.com/help/</guid>
			<description>&lt;p&gt;Let&#39;s have a world&#39;s hottest debate. Which is the best operating system according to you, Mac Os or Windows Os?&lt;br /&gt;
According to me, Mac is always best operating system. The OS is stable &amp; very less vulnerable to viruses.&lt;br /&gt;
It&#39;s boot time is very less compared to windows os.&lt;br /&gt;
What about you?
&lt;/p&gt;</description>
		</item>
		<item>
			<title>shyamdwd on "pen drive problem"</title>
			<link>http://www.amitbhawani.com/help/topic/pen-drive-problem#post-999</link>
			<pubDate>Sun, 17 Jan 2010 15:56:25 +0000</pubDate>
			<dc:creator>shyamdwd</dc:creator>
			<guid isPermaLink="false">999@http://www.amitbhawani.com/help/</guid>
			<description>&lt;p&gt;HP v155w 8GB flash drive- It is nor opeing,message appears&lt;/p&gt;
&lt;p&gt;&quot;windows-Delayed Write Failure&quot;&lt;br /&gt;
 Windows was unable to save all the data for the file F:. The data has been lost.This error may be caused by a failure of your computer hardware ot nerwork connection.Please try to save this file elsewhere.&lt;/p&gt;
&lt;p&gt;I have downloaded software &#39;cacheset&#39;for repair the flashdrive,but failed to repair it.Other pen drive are opening and working properly.What is the problem? how to solve this?
&lt;/p&gt;</description>
		</item>
		<item>
			<title>macgeek on ".exe files on mac works?"</title>
			<link>http://www.amitbhawani.com/help/topic/exe-files-on-mac-works#post-199</link>
			<pubDate>Mon, 09 Feb 2009 05:51:40 +0000</pubDate>
			<dc:creator>macgeek</dc:creator>
			<guid isPermaLink="false">199@http://www.amitbhawani.com/help/</guid>
			<description>&lt;p&gt;I want to know if there is any way with which i can view or use .exe files in my Mac OS based laptop?&lt;br /&gt;
I see .dmg files work usually with mac for installation of applications but want to know about the same with .exe&lt;br /&gt;
Any help appreciated.
&lt;/p&gt;</description>
		</item>
		<item>
			<title>anand12 on "Internet Explorer8 download available"</title>
			<link>http://www.amitbhawani.com/help/topic/ie8-on-for-download#post-260</link>
			<pubDate>Thu, 02 Apr 2009 06:12:01 +0000</pubDate>
			<dc:creator>anand12</dc:creator>
			<guid isPermaLink="false">260@http://www.amitbhawani.com/help/</guid>
			<description>&lt;p&gt;Now the Microsoft has launched its updated version of web browser IE8. Its a bit extended version of IE7 having some added features and nothing. I think they have tried it buiding IE8 more or less similar to Firefox
&lt;/p&gt;</description>
		</item>
		<item>
			<title>anand12 on "autorun.inf file error using Removable Disk..!"</title>
			<link>http://www.amitbhawani.com/help/topic/autoruninf-file-error-using-removable-disk#post-272</link>
			<pubDate>Thu, 02 Apr 2009 06:57:28 +0000</pubDate>
			<dc:creator>anand12</dc:creator>
			<guid isPermaLink="false">272@http://www.amitbhawani.com/help/</guid>
			<description>&lt;p&gt;I have been using Avast Home edition Free And each time i insert my Pen Drive to my USB port it promt me of the Autorun.inf virus. Its a bit irritating for me as it always keeps on prompting. PLZ help me out.
&lt;/p&gt;</description>
		</item>
		<item>
			<title>macgeek on "Firefox or Safari? Best for mac?"</title>
			<link>http://www.amitbhawani.com/help/topic/firefox-or-safari-best-for-mac#post-200</link>
			<pubDate>Mon, 09 Feb 2009 05:53:18 +0000</pubDate>
			<dc:creator>macgeek</dc:creator>
			<guid isPermaLink="false">200@http://www.amitbhawani.com/help/</guid>
			<description>&lt;p&gt;Which is better browser out of the two for mac?&lt;/p&gt;
&lt;p&gt;Firefox has always been good for Windows, but for mac does it produce the same features and user-friendliness?
&lt;/p&gt;</description>
		</item>
		<item>
			<title>venkat on "How  to block a website in limited user account  in XP"</title>
			<link>http://www.amitbhawani.com/help/topic/how-to-block-a-website-in-limited-user-account-in-xp#post-560</link>
			<pubDate>Tue, 04 Aug 2009 11:42:02 +0000</pubDate>
			<dc:creator>venkat</dc:creator>
			<guid isPermaLink="false">560@http://www.amitbhawani.com/help/</guid>
			<description>&lt;p&gt;If there are two accounts to operate Windows XP one is admin and another limited user account doesn&#039;t have admin previlages then how to block a website for limited user account, that website should not be blocked for admin account ,is it possible.
&lt;/p&gt;</description>
		</item>
		<item>
			<title>anand12 on "Vote for Linux or Windows.....!"</title>
			<link>http://www.amitbhawani.com/help/topic/vote-for-linux-or-windows#post-258</link>
			<pubDate>Thu, 02 Apr 2009 06:09:47 +0000</pubDate>
			<dc:creator>anand12</dc:creator>
			<guid isPermaLink="false">258@http://www.amitbhawani.com/help/</guid>
			<description>&lt;p&gt;Yes this has always been a debate and lets see what the visitors of this forum think. Plz reply, you like Linux or Windows OS.:)
&lt;/p&gt;</description>
		</item>
		<item>
			<title>macgeek on "Software for iPhone sync in windows?"</title>
			<link>http://www.amitbhawani.com/help/topic/software-for-iphone-sync-in-windows#post-201</link>
			<pubDate>Mon, 09 Feb 2009 05:54:57 +0000</pubDate>
			<dc:creator>macgeek</dc:creator>
			<guid isPermaLink="false">201@http://www.amitbhawani.com/help/</guid>
			<description>&lt;p&gt;Which software one can use to sync iPhone 3G with computer running Windows?&lt;br /&gt;
I have a mac so i use iTunes but don&#039;t know which one to use for Windows. Any suggestions?
&lt;/p&gt;</description>
		</item>
		<item>
			<title>akshay on "how to open ms office 2007 doc"</title>
			<link>http://www.amitbhawani.com/help/topic/how-to-open-ms-office-2007-doc#post-463</link>
			<pubDate>Tue, 23 Jun 2009 12:37:29 +0000</pubDate>
			<dc:creator>akshay</dc:creator>
			<guid isPermaLink="false">463@http://www.amitbhawani.com/help/</guid>
			<description>&lt;p&gt;hi,&lt;br /&gt;
i lost my MS office 2007 cd and all my docs are in 2007 format so currenlty am using office 2003 but it cant open .docx as its newer version,&lt;br /&gt;
is there any way i can open it.
&lt;/p&gt;</description>
		</item>
		<item>
			<title>Mehul on "How to backup Outlook mails"</title>
			<link>http://www.amitbhawani.com/help/topic/how-to-backup-outlook-mails#post-458</link>
			<pubDate>Thu, 18 Jun 2009 05:20:26 +0000</pubDate>
			<dc:creator>Mehul</dc:creator>
			<guid isPermaLink="false">458@http://www.amitbhawani.com/help/</guid>
			<description>&lt;p&gt;hi,&lt;br /&gt;
i wanted to backup my outlook mail,&lt;br /&gt;
can you tell how to back it up,&lt;br /&gt;
the outlook version is 2007
&lt;/p&gt;</description>
		</item>
		<item>
			<title>akshay on "Forgot vista password"</title>
			<link>http://www.amitbhawani.com/help/topic/forgot-vista-password#post-449</link>
			<pubDate>Tue, 16 Jun 2009 10:14:14 +0000</pubDate>
			<dc:creator>akshay</dc:creator>
			<guid isPermaLink="false">449@http://www.amitbhawani.com/help/</guid>
			<description>&lt;p&gt;hi,&lt;br /&gt;
i have forgot the admins password in my computer which is running vista ,&lt;br /&gt;
can you help me to retrive my password tried alot of combos but didnt work,i dont know if my bro or friend has changed it for fun.
&lt;/p&gt;</description>
		</item>
		<item>
			<title>Mehul on "copying protected Dvds"</title>
			<link>http://www.amitbhawani.com/help/topic/copying-protyected-dvds#post-443</link>
			<pubDate>Fri, 12 Jun 2009 12:32:54 +0000</pubDate>
			<dc:creator>Mehul</dc:creator>
			<guid isPermaLink="false">443@http://www.amitbhawani.com/help/</guid>
			<description>&lt;p&gt;hi,&lt;br /&gt;
i actually wanted to copy some movie dvds which are protected,&lt;br /&gt;
whenever i want to play them it plays smoothly but can copy them,&lt;br /&gt;
any way to copy them easily
&lt;/p&gt;</description>
		</item>
		<item>
			<title>akshay on "task manager disabled"</title>
			<link>http://www.amitbhawani.com/help/topic/task-maneger-diababled#post-442</link>
			<pubDate>Fri, 12 Jun 2009 12:07:32 +0000</pubDate>
			<dc:creator>akshay</dc:creator>
			<guid isPermaLink="false">442@http://www.amitbhawani.com/help/</guid>
			<description>&lt;p&gt;Recently my command prompt and taskmanager were disabled And when i make a folder let say Games then a new folder is made itself inside naming Games.exe.
&lt;/p&gt;</description>
		</item>
		<item>
			<title>anand12 on "How to restore IE to its default.......!"</title>
			<link>http://www.amitbhawani.com/help/topic/how-to-restore-ie-to-its-default#post-257</link>
			<pubDate>Thu, 02 Apr 2009 06:08:24 +0000</pubDate>
			<dc:creator>anand12</dc:creator>
			<guid isPermaLink="false">257@http://www.amitbhawani.com/help/</guid>
			<description>&lt;p&gt;Hi. i m having a regular IE crashes and i think the major culprit of this is the IE addons which i installed the previous day. But i m getting how to roll back IE to default stage. PLZ help.
&lt;/p&gt;</description>
		</item>
		<item>
			<title>Tattnkate on "Windows 95 Errors"</title>
			<link>http://www.amitbhawani.com/help/topic/windows-95-errors#post-348</link>
			<pubDate>Thu, 30 Apr 2009 15:26:08 +0000</pubDate>
			<dc:creator>Tattnkate</dc:creator>
			<guid isPermaLink="false">348@http://www.amitbhawani.com/help/</guid>
			<description>&lt;p&gt;I&#039;m working on a laptop that is running Windows 95&lt;br /&gt;
Error msgs: 161 &#38; 163&lt;/p&gt;
&lt;p&gt;I was told it was a cmos battery problem. &lt;/p&gt;
&lt;p&gt;I want a 2nd opinion. &lt;/p&gt;
&lt;p&gt;The only thing that will come up is the clock &#38; date. I can set both of these and they won&#039;t change. They stay the same even after rebooting the machine.&lt;/p&gt;
&lt;p&gt;I cannot get to windows. I need to save a file. But how can I if I can&#039;t get to DOS or Windows???&lt;/p&gt;
&lt;p&gt;Thanks!!!
&lt;/p&gt;</description>
		</item>
		<item>
			<title>anand12 on "Google Toolbar error"</title>
			<link>http://www.amitbhawani.com/help/topic/google-toolbar-error#post-261</link>
			<pubDate>Thu, 02 Apr 2009 06:15:43 +0000</pubDate>
			<dc:creator>anand12</dc:creator>
			<guid isPermaLink="false">261@http://www.amitbhawani.com/help/</guid>
			<description>&lt;p&gt;Has anyone tried installing Google Tolbar5 on IE8. It provided me and error saying that it is not compatible to it. Is the same for you also or have you got such an error while installing it?
&lt;/p&gt;</description>
		</item>
		<item>
			<title>anand12 on "Google Andreomeda to be used in HP laptops.!"</title>
			<link>http://www.amitbhawani.com/help/topic/google-andreomeda-to-be-used-in-hp-laptops#post-256</link>
			<pubDate>Thu, 02 Apr 2009 06:05:46 +0000</pubDate>
			<dc:creator>anand12</dc:creator>
			<guid isPermaLink="false">256@http://www.amitbhawani.com/help/</guid>
			<description>&lt;p&gt;Yesterday there was a news that HP is going to use Google&#039;s new OS Anderomeda for their Laptops. I m just waiting for it to arrive as the features of this new OS is very much cool.........!
&lt;/p&gt;</description>
		</item>
		<item>
			<title>macgeek on "Taking screenshot in mac?"</title>
			<link>http://www.amitbhawani.com/help/topic/taking-screenshot-in-mac#post-202</link>
			<pubDate>Mon, 09 Feb 2009 05:57:40 +0000</pubDate>
			<dc:creator>macgeek</dc:creator>
			<guid isPermaLink="false">202@http://www.amitbhawani.com/help/</guid>
			<description>&lt;p&gt;I want to know how to take screenshots of particular section in mac desktop or window?&lt;/p&gt;
&lt;p&gt;I have to use external applications like Jing to take screenshots. Please help.
&lt;/p&gt;</description>
		</item>
		<item>
			<title>reny mathew thomas on "IT @ SCHOOL"</title>
			<link>http://www.amitbhawani.com/help/topic/it-school#post-160</link>
			<pubDate>Thu, 15 Jan 2009 13:53:44 +0000</pubDate>
			<dc:creator>reny mathew thomas</dc:creator>
			<guid isPermaLink="false">160@http://www.amitbhawani.com/help/</guid>
			<description>&lt;p&gt;plz tell me how to installing school IT@ school
&lt;/p&gt;</description>
		</item>
		<item>
			<title>Mehul on "Drivers Needed"</title>
			<link>http://www.amitbhawani.com/help/topic/drivers-needed#post-67</link>
			<pubDate>Thu, 08 Jan 2009 10:40:37 +0000</pubDate>
			<dc:creator>Mehul</dc:creator>
			<guid isPermaLink="false">67@http://www.amitbhawani.com/help/</guid>
			<description>&lt;p&gt;I want to know,&lt;br /&gt;
how can i backup drivers,&lt;br /&gt;
i have a Hp laptop it has vista,&lt;br /&gt;
i want to change Vista To xp,&lt;br /&gt;
there are blutooth drivers i think so,&lt;br /&gt;
so where can i get all the drivers after i install xp
&lt;/p&gt;</description>
		</item>
		<item>
			<title>Mehul on "Blue Screen of Death Problem"</title>
			<link>http://www.amitbhawani.com/help/topic/blue-screen-of-death#post-102</link>
			<pubDate>Fri, 09 Jan 2009 06:08:25 +0000</pubDate>
			<dc:creator>Mehul</dc:creator>
			<guid isPermaLink="false">102@http://www.amitbhawani.com/help/</guid>
			<description>&lt;p&gt;Hi,&lt;br /&gt;
i m facing the problem Of Blue Screen Of death&lt;/p&gt;
&lt;p&gt;Example This,&lt;br /&gt;
&lt;a href=&quot;http://i15.photobucket.com/albums/a374/mustafahweidi/Wallpaper/3.jpg&quot; rel=&quot;nofollow&quot;&gt;http://i15.photobucket.com/albums/a374/mustafahweidi/Wallpaper/3.jpg&lt;/a&gt;&lt;br /&gt;
There was some problem dont know y,&lt;br /&gt;
after shutting down manully it shows me that kind of screen,&lt;br /&gt;
whats the problem,&lt;br /&gt;
Can i data be lost because of it,
&lt;/p&gt;</description>
		</item>

	</channel>
</rss>
