<?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>Aerrow</title>
	<atom:link href="http://pdhewaju.com.np/feed/" rel="self" type="application/rss+xml" />
	<link>http://pdhewaju.com.np</link>
	<description>Sharing Windows realted experiences...</description>
	<lastBuildDate>Mon, 07 May 2012 12:41:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>[Solved] Run any program with Elevated Privilege using Script (RUN AS).</title>
		<link>http://pdhewaju.com.np/blog/solved-run-any-program-with-elevated-privilege-using-script-run-as/</link>
		<comments>http://pdhewaju.com.np/blog/solved-run-any-program-with-elevated-privilege-using-script-run-as/#comments</comments>
		<pubDate>Mon, 07 May 2012 12:38:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Command]]></category>
		<category><![CDATA[credential]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[Permission]]></category>
		<category><![CDATA[Run as]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://pdhewaju.com.np/?p=715</guid>
		<description><![CDATA[In my previous blog I have mentioned some issue with WDS while Implementing DC-AD on my college and had also shared the solved issue with you all through this blog. Similarly this time also here I have faced the issue with WAMP…a server which run apache essential for PHP. I was almost corner of the [...]]]></description>
			<content:encoded><![CDATA[<p>In my previous blog I have mentioned some issue with WDS while Implementing DC-AD on my college and had also shared the solved issue with you all through this blog. Similarly this time also here I have faced the issue with WAMP…a server which run apache essential for PHP. I was almost corner of the deployment and about to wrap up the project but suddenly I got the call saying WAMP is not able to run in client machine… I had gone thought the Google and Bing for the solution yet not able to get it, But just got a clue of the Issue.</p>
<p><span id="more-715"></span></p>
<p><strong><span style="text-decoration: underline;">Cause:</span></strong></p>
<p>To get Run WAMP Server Completely it requires the two essential services to get run with administrative privilege. Those are</p>
<p><a href="http://pdhewaju.com.np/blog/solved-run-any-program-with-elevated-privilege-using-script-run-as/attachment/services/" rel="attachment wp-att-718"><img class="aligncenter size-full wp-image-718" title="services" src="http://pdhewaju.com.np/wp-content/uploads/2012/05/services.png" alt="" width="275" height="38" /></a></p>
<p><strong><span style="text-decoration: underline;">Solution:</span></strong></p>
<p>To get this solved what I did was…. Firstly I get login in to the client machine with local administrative privilege. And then went to the services with using services.msc command line.</p>
<p>Then what I did was went to the properties of the both the services that requires WAMP to get function properly and made it logon type with local Administrative user ID as well the services type automatic.</p>
<p><a href="http://pdhewaju.com.np/blog/solved-run-any-program-with-elevated-privilege-using-script-run-as/attachment/login/" rel="attachment wp-att-716"><img class="aligncenter" title="login" src="http://pdhewaju.com.np/wp-content/uploads/2012/05/login-265x300.png" alt="" width="265" height="300" /></a></p>
<p>&nbsp;</p>
<p><a href="http://pdhewaju.com.np/blog/solved-run-any-program-with-elevated-privilege-using-script-run-as/attachment/services-with-username/" rel="attachment wp-att-717"><img class="aligncenter" title="services with username" src="http://pdhewaju.com.np/wp-content/uploads/2012/05/services-with-username-300x24.png" alt="" width="300" height="24" /></a></p>
<p>But after doing all these things whenever I tried to run the WAMP with standard user Privilege I always got the issue of the Administrative password with dim background, to get sort this out what I did was wrote the script and make it run….. bingo… it works… here is the script which you can use.</p>
<p>&nbsp;</p>
<blockquote><p>set WshShell = WScript.CreateObject(&#8220;WScript.Shell&#8221;)</p>
<p>WshShell.run &#8220;runas /user:computername or domainname\username %comspec%&#8221;  ‘Open command prompt</p>
<p>WScript.Sleep 1000</p>
<p>WshShell.SendKeys &#8220;password&#8221; &#8216;send password</p>
<p>WshShell.SendKeys &#8220;{ENTER}&#8221;</p>
<p>WScript.Sleep 1000</p>
<p>WshShell.SendKeys Chr(34) + &#8220;c:\wamp\wampmanager.exe&#8221; + Chr(34)</p>
<p>WshShell.SendKeys &#8220;{ENTER}&#8221;</p>
<p>&nbsp;</p>
<p>WshShell.SendKeys &#8220;exit&#8221;  &#8216;Close command prompt</p>
<p>WshShell.SendKeys &#8220;{ENTER}&#8221;</p>
<p>WScript.Sleep 1000</p>
<p>set wshshell = nothing</p></blockquote>
<p>Hoping to get your response on this.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://pdhewaju.com.np/blog/solved-run-any-program-with-elevated-privilege-using-script-run-as/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>[Solution] Transfer Content of One live ID to another Live ID</title>
		<link>http://pdhewaju.com.np/blog/solution-transfer-content-of-one-live-id-to-another-live-id/</link>
		<comments>http://pdhewaju.com.np/blog/solution-transfer-content-of-one-live-id-to-another-live-id/#comments</comments>
		<pubDate>Tue, 24 Apr 2012 08:43:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://pdhewaju.com.np/?p=707</guid>
		<description><![CDATA[Due to some crisis on my Professional life, I needed to shift my email ID I.e. to change my email ID. But I couldn’t leave my old email ID too, coz It do have a lot of contents, a lot of emails that were important to me and the worst part was it was around [...]]]></description>
			<content:encoded><![CDATA[<p>Due to some crisis on my Professional life, I needed to shift my email ID I.e. to change my email ID. But I couldn’t leave my old email ID too, coz It do have a lot of contents, a lot of emails that were important to me and the worst part was it was around 12 years old Email ID that I was using previously. It seems like a lot of pain to me. But somehow I need to change my Emails and transfer all my Email from old live ID to the new one. So I went of surfing Google and Bing if there is any way to get me transfers all the emails. But later on I too realized that I need to get my sync Sky Drive too. As it too contain few GB’s of data. That means I need to sync my Contacts, Emails and SKY Drive now, that’s the real pain for me. Yet still I was not confident that I could leave that old email. So here is the procedure what I did to my old email to transform on new one….. <img src='http://pdhewaju.com.np/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Hope this will work to you all.<span id="more-707"></span></p>
<p><strong><span style="text-decoration: underline;">For Contact</span></strong></p>
<p>It was quite easy part for me since Hotmail itself do have the facility of importing contact and exporting contact. I did as the way it was facilitated for me on Hotmail. So there was no issue on this part. Just simply look on the left bottom of your Hotmail you can see the contact. Click on it and export all the contacts from old email id and get it import on the new one.</p>
<p><strong><span style="text-decoration: underline;">For Emails</span></strong></p>
<p>This was one of the worst part I didn’t know how do I transfer all those emails. Somehow I found one site on the Google it name <a href="https://secure5.trueswitch.com/hotmail/">trueswitch</a> with help of which I have transferred all the emails on my old account to the new one. It took me around 24 hours to get settle down. But unfortunately my email gets partially blocked due to high amount of email flow (around 3000 per day). And caught as suspicious for Spam, hence to get over ride of it. I took a help of my friend on US and get activated my email using phone no. Next thing was about the rules that I have created on my old ID, it didn’t transfer so I have to create same rules on my new email ID manually. It was not the tough part as the worst part was easily solved by trueswitch. J And for the further email id just added new rule of forwarding a copy of email to my new email ID.</p>
<p><a href="http://pdhewaju.com.np/blog/solution-transfer-content-of-one-live-id-to-another-live-id/attachment/onlineemailtransfer/" rel="attachment wp-att-708"><img class="aligncenter  wp-image-708" title="onlineemailtransfer" src="http://pdhewaju.com.np/wp-content/uploads/2012/04/onlineemailtransfer-300x193.png" alt="" width="300" height="193" /></a></p>
<p>&nbsp;</p>
<p><a href="http://pdhewaju.com.np/blog/solution-transfer-content-of-one-live-id-to-another-live-id/attachment/true-switch/" rel="attachment wp-att-709"><img class="aligncenter size-medium wp-image-709" title="true switch" src="http://pdhewaju.com.np/wp-content/uploads/2012/04/true-switch-300x163.png" alt="" width="300" height="163" /></a></p>
<p align="center">
<p align="center">
<p align="center"><strong><span style="text-decoration: underline;"> </span></strong></p>
<p><strong><span style="text-decoration: underline;">For SKY Drive</span></strong></p>
<p>Now the toughest part was to SYNC my SKY Drive, I didn’t know how to do this… whether to download all the content of my SKY Drive of old account and upload on new one…. But this manual process could take me a lot of days to go on. So one day I was going through some blog of the msdn.com, I got the bingo. I found the tool that will sync my machine with the content of the SKY Drive. This is an app for the local machine can get download <a href="https://apps.live.com/skydrive">here</a>. I first linked this app with my old account once the transfer was complete, I then unlinked my old account and then link up the new account to the same folder. Awesome it works…. It started to SYNC my old account folder that I had stored on my machine to my new account SKY Drive. I was so happy to get this done.</p>
<p>&nbsp;</p>
<p>Finally still I am not able to transfer all my contacts of Messenger to the new one, Still looking for it. But I think this could not be done because you need to be accepted your request from your friend else you cannot add them Hence you need to manually add Contacts on you Messenger manually.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://pdhewaju.com.np/blog/solution-transfer-content-of-one-live-id-to-another-live-id/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>[FIX] WDS PXE-E32: TFTP open timeout</title>
		<link>http://pdhewaju.com.np/blog/fix-wds-pxe-e32-tftp-open-timeout/</link>
		<comments>http://pdhewaju.com.np/blog/fix-wds-pxe-e32-tftp-open-timeout/#comments</comments>
		<pubDate>Sun, 01 Apr 2012 17:39:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[WDS]]></category>
		<category><![CDATA[Windows Server 2008 R2]]></category>

		<guid isPermaLink="false">http://pdhewaju.com.np/?p=703</guid>
		<description><![CDATA[Recently, I was deploying Windows 7 on my College Lab. Previously the WDS function was working perfectly on server and deploying Client OS on the machines, but later on suddenly it stopped to worked. It started to give the issue with &#8220;TFTP open timeout&#8221;.  Now the problem began to me. I tried different option but [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, I was deploying Windows 7 on my College Lab. Previously the WDS function was working perfectly on server and deploying Client OS on the machines, but later on suddenly it stopped to worked. It started to give the issue with &#8220;TFTP open timeout&#8221;.  Now the problem began to me. I tried different option but still it didn&#8217;t work but finally at last after 1 hour of struggle i found out the casue. This can be caused by the DNS service binding to WDS UDP ports on the server.  This will generally occur after security update MS08-037 is installed on the server.</p>
<p>Fix WDS PXE-E32: TFTP open timeout<span id="more-703"></span></p>
<p>To do this, follow these steps:</p>
<ol type="1">
<li value="1">Start Registry Editor. To do this, click Start , type regedit in the Start Search box, and then press ENTER.</li>
</ol>
<ol type="1">
<li value="2">Navigate through the regisrty to find the key:<br />
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\WDSServer\Parameters</li>
</ol>
<ol type="1">
<li value="3">Right-click UdpPortPolicy, and then click Modify.</li>
<li>In the Value data box, type 0, and then click OK.</li>
<li>Close the registry editor</li>
<li>Open the Windows Deployment Services (WDS) snap-in and restart the WDS server</li>
</ol>
<p>Else if it seems you to be messy you can just uninstall the Services and install it again, this will also make you work.</p>
]]></content:encoded>
			<wfw:commentRss>http://pdhewaju.com.np/blog/fix-wds-pxe-e32-tftp-open-timeout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[How to] install SMTP on Windows 8 Developer Preview&#8230;</title>
		<link>http://pdhewaju.com.np/blog/how-to-install-smtp-on-windows-8-developer-preview/</link>
		<comments>http://pdhewaju.com.np/blog/how-to-install-smtp-on-windows-8-developer-preview/#comments</comments>
		<pubDate>Tue, 14 Feb 2012 20:50:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://pdhewaju.com.np/?p=681</guid>
		<description><![CDATA[Previously on my last article ‘ how to install SMTP on windows 7’ was highly traffic, and considering the same problem on newly launched OS of Microsoft, Windows 8 I have thought to write same blog for it. As windows 8 developer preview has just been released few months ago, it consists of IIS 8. [...]]]></description>
			<content:encoded><![CDATA[<p>Previously on my last article ‘ how to install SMTP on windows 7’ was highly traffic, and considering the same problem on newly launched OS of Microsoft, Windows 8 I have thought to write same blog for it. As windows 8 developer preview has just been released few months ago, it consists of IIS 8. This is entirely new platform. Let me go with how to install or work with SMTP on windows 8.</p>
<p><span id="more-681"></span><br />
<a href="http://pdhewaju.com.np/blog/how-to-install-smtp-on-windows-8-developer-preview/attachment/localhost/" rel="attachment wp-att-682"><img class="aligncenter size-medium wp-image-682" title="localhost" src="http://pdhewaju.com.np/wp-content/uploads/2012/02/localhost-300x187.png" alt="" width="300" height="187" /></a></p>
<p>In windows 8 it is quite simple to get start with your SMTP Server. First of all you need to do some work with your ‘Program and Features’ on Control Panel.</p>
<ol>
<li>Click on Program and Features on Control Panel.</li>
<li>Go to click on ‘Turn on windows Features on or off’, which is on the left side of the panel.</li>
</ol>
<p>Once this is open make sure that you have enabled the IIS  and Microsoft  .net Platform too on your machine just making check mark as shown in given snap.</p>
<p><a href="http://pdhewaju.com.np/blog/how-to-install-smtp-on-windows-8-developer-preview/attachment/features/" rel="attachment wp-att-685"><img class="aligncenter size-medium wp-image-685" title="features" src="http://pdhewaju.com.np/wp-content/uploads/2012/02/features-300x260.png" alt="" width="300" height="260" /></a></p>
<p>Once the procedure of enabling IIS and Microsoft .net Platform now you need to go on IIS manager. It is quite easy to get reach there. Here are the steps.</p>
<p><strong>To open IIS Manager from the Start menu </strong></p>
<ol>
<li>Click <strong>Start</strong>, and then click <strong>Control Panel</strong>.</li>
<li>Do one of the following:</li>
</ol>
<ul>
<li>If you are using Windows Vista® or Windows Server® 2008, click <strong>System and Maintenance</strong>, and then click <strong>Administrative Tools</strong>.</li>
<li>If you are using Windows® 7 or Windows Server® 2008 R2, click <strong>System and Security</strong>, and then click <strong>Administrative Tools</strong>.</li>
</ul>
<ol>
<li>In the <strong>Administrative Tools</strong> window, double-click <strong>Internet Information Services (IIS) Manager</strong>.</li>
</ol>
<p><strong>To open IIS Manager from the Search box </strong></p>
<ol>
<li>Click <strong>Start</strong>.</li>
<li>In the <strong>Start Search</strong> box, type <strong>inetmgr</strong> and press ENTER.</li>
</ol>
<p><a href="http://pdhewaju.com.np/blog/how-to-install-smtp-on-windows-8-developer-preview/attachment/iis-manager/" rel="attachment wp-att-686"><img class="aligncenter size-medium wp-image-686" title="iis manager" src="http://pdhewaju.com.np/wp-content/uploads/2012/02/iis-manager-282x300.png" alt="" width="282" height="300" /></a></p>
<p>Here the above steps lead you up to the IIS manager now it requires you to configure the IIS Manager. The further process to configure your SMTP is as follows.</p>
<p><strong>To configure SMTP e-mail for a Web application</strong></p>
<p>You can perform this procedure by using the user interface (UI), by running Appcmd.exe commands in a command-line window, by editing configuration files directly, or by writing WMI scripts.</p>
<p><strong>User Interface</strong></p>
<p><strong>To Use the UI</strong></p>
<ol>
<li>Open IIS Manager and navigate to the level you want to manage. For information about opening IIS Manager, see Open IIS Manager (IIS 7). For information about navigating to locations in the UI, see Navigation in IIS Manager (IIS 7).</li>
<li>In <strong>Features View</strong>, double-click <strong>SMTP E-mail</strong>.</li>
<li>On the <strong>SMTP E-mail</strong> page, type the e-mail address of the sender in the <strong>E-mail address</strong> text box.</li>
<li>On the <strong>SMTP E-mail</strong> page, select one of the following delivery methods:</li>
<li><strong>1.       </strong><strong>Deliver e-mail to SMTP server:</strong> to deliver e-mail messages immediately. This requires an operational SMTP server for which the user has credentials.<strong></strong></li>
<li><strong>2.       </strong><strong>Store e-mail in pickup directory:</strong> to store e-mails in a file location on disk for later delivery by an application such as an ASP.NET application, or by a user, such as an administrator.<strong></strong></li>
<li>If <strong>Deliver e-mail to SMTP server</strong> is selected, do the following:</li>
<li>Type the unique name of your SMTP server in the <strong>SMTP Server</strong> text box or select the <strong>Use localhost</strong> box to set the name to <strong>LocalHost</strong>. Setting the name to <strong>LocalHost</strong> means that ASP.NET will use an SMTP server on the local computer. Typically, this is the default SMTP virtual server.</li>
<li>Enter a TCP port in the <strong>Port</strong> text box. Port 25 is the SMTP standard TCP port and is the default setting. More than one virtual server can use the same TCP port if all servers are configured by using different IP addresses.</li>
<li>Under <strong>Authentication Settings</strong>, specify the authentication mode and credentials if your SMTP server requires these.</li>
<li>If <strong>Store e-mail in pickup directory</strong> is selected, type the batch e-mail location in the <strong>Store e-mail in pickup directory</strong> text box.</li>
<li>Click <strong>Apply</strong> in the <strong>Actions</strong> pane.</li>
</ol>
<p><a href="http://pdhewaju.com.np/blog/how-to-install-smtp-on-windows-8-developer-preview/attachment/smpt/" rel="attachment wp-att-683"><img class="alignnone size-medium wp-image-683" title="smpt" src="http://pdhewaju.com.np/wp-content/uploads/2012/02/smpt-300x183.png" alt="" width="300" height="183" /></a>                             <a href="http://pdhewaju.com.np/blog/how-to-install-smtp-on-windows-8-developer-preview/attachment/smpt01/" rel="attachment wp-att-684"><img class="alignnone size-medium wp-image-684" title="smpt01" src="http://pdhewaju.com.np/wp-content/uploads/2012/02/smpt01-300x178.png" alt="" width="300" height="178" /></a></p>
<p>I hope you enjoyed this blog and get the knowledge of enabling SMTP on your machine. Stay Tuned with Aerrow….  <img src='http://pdhewaju.com.np/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://pdhewaju.com.np/blog/how-to-install-smtp-on-windows-8-developer-preview/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Blue Sky&#8230;</title>
		<link>http://pdhewaju.com.np/gallery/blue-sky/</link>
		<comments>http://pdhewaju.com.np/gallery/blue-sky/#comments</comments>
		<pubDate>Tue, 14 Feb 2012 19:40:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[gallery]]></category>

		<guid isPermaLink="false">http://pdhewaju.com.np/?p=675</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://pdhewaju.com.np/gallery/blue-sky/attachment/blue-sky/" rel="attachment wp-att-676"><img class="alignnone size-medium wp-image-676" title="Blue Sky" src="http://pdhewaju.com.np/wp-content/uploads/2012/02/Blue-Sky-300x198.jpg" alt="" width="300" height="198" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://pdhewaju.com.np/gallery/blue-sky/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 Hills&#8230;</title>
		<link>http://pdhewaju.com.np/gallery/3-hills/</link>
		<comments>http://pdhewaju.com.np/gallery/3-hills/#comments</comments>
		<pubDate>Tue, 14 Feb 2012 19:35:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[gallery]]></category>

		<guid isPermaLink="false">http://pdhewaju.com.np/?p=661</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://pdhewaju.com.np/gallery/3-hills/attachment/3-hills/" rel="attachment wp-att-662"><img class="alignnone size-medium wp-image-662" title="3 Hills" src="http://pdhewaju.com.np/wp-content/uploads/2012/02/3-Hills-300x198.jpg" alt="" width="300" height="198" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://pdhewaju.com.np/gallery/3-hills/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Home..</title>
		<link>http://pdhewaju.com.np/gallery/1/</link>
		<comments>http://pdhewaju.com.np/gallery/1/#comments</comments>
		<pubDate>Sat, 24 Sep 2011 14:39:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[gallery]]></category>

		<guid isPermaLink="false">http://pdhewaju.com.np/?p=640</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://pdhewaju.com.np/gallery/1/attachment/dsc_0027m/" rel="attachment wp-att-652"><img class="alignnone size-medium wp-image-652" title="DSC_0027m" src="http://pdhewaju.com.np/wp-content/uploads/2011/09/DSC_0027m-300x198.jpg" alt="" width="300" height="198" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://pdhewaju.com.np/gallery/1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Passage&#8230;</title>
		<link>http://pdhewaju.com.np/gallery/passage/</link>
		<comments>http://pdhewaju.com.np/gallery/passage/#comments</comments>
		<pubDate>Sat, 24 Sep 2011 14:14:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[gallery]]></category>

		<guid isPermaLink="false">http://pdhewaju.com.np/?p=604</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://pdhewaju.com.np/gallery/passage/attachment/dsc_0025/" rel="attachment wp-att-605"><img class="alignnone size-medium wp-image-605" title="DSC_0025" src="http://pdhewaju.com.np/wp-content/uploads/2011/09/DSC_0025-300x198.jpg" alt="" width="300" height="198" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://pdhewaju.com.np/gallery/passage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flower&#8230;</title>
		<link>http://pdhewaju.com.np/gallery/flower/</link>
		<comments>http://pdhewaju.com.np/gallery/flower/#comments</comments>
		<pubDate>Sat, 24 Sep 2011 14:12:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[gallery]]></category>

		<guid isPermaLink="false">http://pdhewaju.com.np/?p=600</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://pdhewaju.com.np/gallery/flower/attachment/dsc_0018/" rel="attachment wp-att-601"><img class="alignnone size-medium wp-image-601" title="DSC_0018" src="http://pdhewaju.com.np/wp-content/uploads/2011/09/DSC_0018-300x198.jpg" alt="" width="300" height="198" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://pdhewaju.com.np/gallery/flower/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ant Cave&#8230;</title>
		<link>http://pdhewaju.com.np/gallery/ant-cave/</link>
		<comments>http://pdhewaju.com.np/gallery/ant-cave/#comments</comments>
		<pubDate>Sat, 24 Sep 2011 14:10:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[gallery]]></category>

		<guid isPermaLink="false">http://pdhewaju.com.np/?p=597</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://pdhewaju.com.np/?attachment_id=596" rel="attachment wp-att-596"><img class="alignnone size-medium wp-image-596" title="DSC_0014" src="http://pdhewaju.com.np/wp-content/uploads/2011/09/DSC_0014-300x198.jpg" alt="" width="300" height="198" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://pdhewaju.com.np/gallery/ant-cave/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

