<?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>IT Professionals</title>
	<atom:link href="http://www.thenetworkadministrator.net/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thenetworkadministrator.net</link>
	<description>A website for Network Administrators and Computer Systems  Engineers</description>
	<lastBuildDate>Mon, 02 Aug 2010 19:34:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Change IIS 6 ASP.Net Version Without Restarting IIS</title>
		<link>http://www.thenetworkadministrator.net/index.php/2010/08/change-iis-6-asp-net-version-without-restarting-iis/</link>
		<comments>http://www.thenetworkadministrator.net/index.php/2010/08/change-iis-6-asp-net-version-without-restarting-iis/#comments</comments>
		<pubDate>Sun, 01 Aug 2010 16:39:47 +0000</pubDate>
		<dc:creator>MWahl</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.thenetworkadministrator.net/?p=742</guid>
		<description><![CDATA[Open a command prompt, browse to C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727, aspnet_regiis -lk will give a listing. C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis -lk W3SVC/  1.1.4322.2407 W3SVC/507495262/root/   2.0.50727.0 C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727&#62;aspnet_regiis -s w3svc/507495262/r oot -norestart Start registering ASP.NET scriptmap (2.0.50727) recursively at w3svc/507495262/r oot. Finished registering ASP.NET scriptmap (2.0.50727) recursively at w3svc/50749526 2/root.]]></description>
			<content:encoded><![CDATA[<p>Open a command prompt, browse to C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727,</p>
<p>aspnet_regiis -lk will give a listing.</p>
<p>C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis -lk<br />
W3SVC/  1.1.4322.2407<br />
W3SVC/507495262/root/   2.0.50727.0</p>
<p>C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727&gt;aspnet_regiis -s w3svc/507495262/r<br />
oot -norestart<br />
Start registering ASP.NET scriptmap (2.0.50727) recursively at w3svc/507495262/r<br />
oot.<br />
Finished registering ASP.NET scriptmap (2.0.50727) recursively at w3svc/50749526<br />
2/root.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thenetworkadministrator.net/index.php/2010/08/change-iis-6-asp-net-version-without-restarting-iis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Implementing A Reverse Proxy with IIS 6</title>
		<link>http://www.thenetworkadministrator.net/index.php/2010/07/windows-iis-6-implementing-a-reverse-proxy/</link>
		<comments>http://www.thenetworkadministrator.net/index.php/2010/07/windows-iis-6-implementing-a-reverse-proxy/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 23:21:30 +0000</pubDate>
		<dc:creator>MWahl</dc:creator>
				<category><![CDATA[Web Servers]]></category>

		<guid isPermaLink="false">http://www.thenetworkadministrator.net/?p=721</guid>
		<description><![CDATA[Windows server 2008 IIS7 has differnet proxy options, however IIS 6 does not have anything built in. So i found Managed Fusion URL Rewriter, which  is a powerful URL manipulation engine based on the Apache mod_rewrite extension. Here is a link to the Managed Fusion Documentation site http://www.managedfusion.com/products/url-rewriter/documentation.aspx I found the easiest way to get [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.thenetworkadministrator.net/wp-content/uploads/2010/07/settings12.jpg"></a>Windows server 2008 IIS7 has differnet proxy options, however IIS 6 does not have anything built in. So i found Managed Fusion URL Rewriter, which  is a powerful URL manipulation engine based on the <a href="http://httpd.apache.org/docs/2.0/mod/mod_rewrite.html">Apache mod_rewrite</a> extension. Here is a link to the Managed Fusion Documentation site <a href="http://www.managedfusion.com/products/url-rewriter/documentation.aspx">http://www.managedfusion.com/products/url-rewriter/documentation.aspx</a></p>
<p>I found the easiest way to get started was to do the following steps.</p>
<p>1. Download the core files from <a href="http://urlrewriter.codeplex.com/releases/36792/download/95504">http://urlrewriter.codeplex.com/releases/36792/download/95504</a></p>
<p>2. Extract the downloaded files to a directory such as C:\websites\Proxy</p>
<p>3. Create a new IIS site, which will act as your reverse proxy.</p>
<p>4. Under home directory of the new site, select configuration, insert a new wildcard app, browse to C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll, and uncheck the box to verify the file exists.</p>
<p>5. Browse to C:\websites\proxy or the name of the directory you created in step 2.</p>
<p>6. Open the ManagedFusion.Rewriter.txt file and delete everything in the file.</p>
<p>7. Insert the these two lines,</p>
<p><code>RewriteEngine On<br />
RewriteRule ^/(.*) http://website or ip address/$1 [NC,P]</code></p>
<p style="text-align: center;"><a href="http://www.thenetworkadministrator.net/wp-content/uploads/2010/07/settings2.jpg"><img class="aligncenter size-full wp-image-735" title="settings2" src="http://www.thenetworkadministrator.net/wp-content/uploads/2010/07/settings2.jpg" alt="" width="472" height="458" /></a><img title="settings1" src="http://www.thenetworkadministrator.net/wp-content/uploads/2010/07/settings12.jpg" alt="" width="472" height="458" /><a href="http://www.thenetworkadministrator.net/wp-content/uploads/2010/07/settings1.jpg"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thenetworkadministrator.net/index.php/2010/07/windows-iis-6-implementing-a-reverse-proxy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New to PowerShell? Try powergui!</title>
		<link>http://www.thenetworkadministrator.net/index.php/2010/07/new-to-powershell-try-powergui/</link>
		<comments>http://www.thenetworkadministrator.net/index.php/2010/07/new-to-powershell-try-powergui/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 03:59:02 +0000</pubDate>
		<dc:creator>MWahl</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.thenetworkadministrator.net/?p=715</guid>
		<description><![CDATA[Similar to the Exchange Management console it shows you the powershell script that was used! Here is the site, and there is a tab to download. http://powergui.org/index.jspa Dont forget to check out the PowerGUI Library for more add-ons http://powergui.org/kbcategory.jspa?categoryID=21 Tutorials Page http://powergui.org/tutorials.jspa]]></description>
			<content:encoded><![CDATA[<p>Similar to the Exchange Management console it shows you the powershell script that was used!</p>
<p><strong>Here is the site, and there is a tab to download.</strong><br />
<a href="http://powergui.org/index.jspa" target="_blank">http://powergui.org/index.jspa</a></p>
<p><strong>Dont forget to check out the PowerGUI Library for more add-ons</strong><br />
<a href="http://powergui.org/kbcategory.jspa?categoryID=21" target="_blank">http://powergui.org/kbcategory.jspa?categoryID=21</a></p>
<p><strong>Tutorials Page</strong><br />
<a href="http://powergui.org/tutorials.jspa" target="_blank">http://powergui.org/tutorials.jspa</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thenetworkadministrator.net/index.php/2010/07/new-to-powershell-try-powergui/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scan file shares on your network and view their security settings to close security holes with ShareEnum</title>
		<link>http://www.thenetworkadministrator.net/index.php/2010/07/scan-file-shares-on-your-network-and-view-their-security-settings-to-close-security-holes-with-shareenum/</link>
		<comments>http://www.thenetworkadministrator.net/index.php/2010/07/scan-file-shares-on-your-network-and-view-their-security-settings-to-close-security-holes-with-shareenum/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 03:42:59 +0000</pubDate>
		<dc:creator>MWahl</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.thenetworkadministrator.net/?p=713</guid>
		<description><![CDATA[This is pretty cool and gives you an idea of most shares and permissons off your servers. From http://technet.microsoft.com/en-us/sysinternals/default.aspx http://technet.microsoft.com/en-us/sysinternals/bb897442.aspx]]></description>
			<content:encoded><![CDATA[<p>This is pretty cool and gives you an idea of most shares and permissons off your servers. </p>
<p>From http://technet.microsoft.com/en-us/sysinternals/default.aspx</p>
<p>http://technet.microsoft.com/en-us/sysinternals/bb897442.aspx</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thenetworkadministrator.net/index.php/2010/07/scan-file-shares-on-your-network-and-view-their-security-settings-to-close-security-holes-with-shareenum/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>View The Security of an NTFS Folder</title>
		<link>http://www.thenetworkadministrator.net/index.php/2010/07/view-the-security-of-an-ntfs-folder/</link>
		<comments>http://www.thenetworkadministrator.net/index.php/2010/07/view-the-security-of-an-ntfs-folder/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 02:18:02 +0000</pubDate>
		<dc:creator>MWahl</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.thenetworkadministrator.net/?p=694</guid>
		<description><![CDATA[Often times this isnt a big deal if there are only a few people or groups, but when there are a lot of people and groups its nice to use the two commands to pump out the info, To List the security of a folder From a command prompt type the following, C:\&#62;cacls "D:\Business Development" [...]]]></description>
			<content:encoded><![CDATA[<p>Often times this isnt a big deal if there are only a few people or groups, but when there are a lot of people and groups its nice to use the two commands to pump out the info,</p>
<p><strong>To List the security of a folder</strong><br />
<code><br />
From a command prompt type the following,<br />
C:\&gt;cacls "D:\Business Development"<br />
D:\Business Development BUILTIN\Administrators:(OI)(CI)F<br />
DomainName.COM\UserName:(OI)(CI)C </code></p>
<p><strong>To List the security of a folder and all sub content.</strong><br />
<code><br />
From a command prompt type the following,</p>
<p>C:\&gt;cacls "D:\Business Development" /T </code></p>
<p><strong>If you need a list of the members of a Security Group</strong><br />
<code><br />
From a command prompt on a Domain Controller type the following,<br />
C:\&gt;net group "Business Development" &gt;Report.txt</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thenetworkadministrator.net/index.php/2010/07/view-the-security-of-an-ntfs-folder/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SharePoint Services 3.0 Site With Forms Based Authentication</title>
		<link>http://www.thenetworkadministrator.net/index.php/2010/07/sharepoint-services-3-0-site-with-forms-based-authentication/</link>
		<comments>http://www.thenetworkadministrator.net/index.php/2010/07/sharepoint-services-3-0-site-with-forms-based-authentication/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 18:40:23 +0000</pubDate>
		<dc:creator>MWahl</dc:creator>
				<category><![CDATA[Microsoft Sharepoint Services]]></category>

		<guid isPermaLink="false">http://www.thenetworkadministrator.net/?p=675</guid>
		<description><![CDATA[  The other day I needed to configure a new external partner sharePoint site with forms based authentication. I also need to give users the ability to change their passwords when they wanted to. In the past we had used Active directory accounts which was ok, just not the best for this situation.    You [...]]]></description>
			<content:encoded><![CDATA[<div><span style="font-size: small;"><a href="http://www.thenetworkadministrator.net/wp-content/uploads/2010/07/sharepointImg1.jpg"><img class="aligncenter size-full wp-image-679" title="sharepointImg1" src="http://www.thenetworkadministrator.net/wp-content/uploads/2010/07/sharepointImg1.jpg" alt="" width="230" height="275" /></a></span></div>
<div><span style="font-size: small;"> </span></div>
<div><span style="font-size: small;">The other day I needed to configure a new external partner sharePoint site with forms based authentication. I also need to give users the ability to change their passwords when they wanted to. In the past we had used Active directory accounts which was ok, just not the best for this situation.</span></div>
<p><span style="font-size: small;"> </span> </p>
<div><span style="font-size: small;">You will need to download the <span style="font-family: Times New Roman;">Visual Web Developer 2008 Express Edition </span><a href="http://go.microsoft.com/?linkid=7729281"><span style="text-decoration: underline;"><span style="font-family: Times New Roman; color: #0000ff;"><span style="font-family: Times New Roman; color: #0000ff;">H</span></span><span style="color: #0000ff; font-size: small;"><span style="color: #0000ff; font-size: small;">ttp://go.microsoft.com/?linkid=7729281</span></span></span></a> </span></div>
<div><span style="font-size: small;"> </span></div>
<div><span style="font-size: small;"> </span><span style="font-size: small;"><span style="font-size: small;"><span style="font-size: small;">Head to the sharePoint Administration page and create a new web application under SharePoint Web Application Management.</span></span></span>Authentication provider should be set to NTLM, allow anonymous set to Yes,</div>
<div><span style="font-size: small;"> </span></div>
<div>Once you have the new web app created, head to Application providers under Application Security. Make sure to select the correct web app from the drop down located on the upper right. For now you should see a default Zone and the membership provider name should be Windows.</div>
<div>Now access the url of the newly created web app from the step above, you may need to login as the primary admin of the site. once in, select site actions, site settings, advanced permissons, setting, Anonymous Access, select Entire Website.</div>
<div>Hopefully by now you have installed Visual Web Developer 2008 Express Edition on the server. First, create a directory called UserManagement and remember where you created it. Open the IIS manager, find the website site that  relates to the web app you created earlier, create a new virtual directory and point it to the UserManagement directory, select Read and Run Scripts. Make sure that this UserManagement directory run with the same app pool as the web app site. The rest of the configuration can be done by watching this video.</div>
<div><a href="http://channel9.msdn.com/shows/In+the+Office/Anonymous-Access-and-Forms-Authentication-with-WSS-30/">SharePoint Services 3.0 Forms Authentication</a></div>
<div> Make sure that the user identity running your under your web site app pool has access (data reader and writer) to the Aspnetdb. Also i added a user password reset control to the UserManagement default.aspx page so users can rest their passwords.</div>
<div><span style="font-size: x-small;"><span style="font-size: x-small;"> </span></span><span style="font-size: x-small;"><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">&lt;</span></span><span style="color: #a31515; font-size: x-small;"><span style="color: #a31515; font-size: x-small;">asp</span></span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">:</span></span><span style="color: #a31515; font-size: x-small;"><span style="color: #a31515; font-size: x-small;">changepassword</span></span><span style="font-size: x-small;"> </span><span style="color: #ff0000; font-size: x-small;"><span style="color: #ff0000; font-size: x-small;">runat</span></span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">=&#8221;server&#8221;&gt;&lt;/</span></span><span style="color: #a31515; font-size: x-small;"><span style="color: #a31515; font-size: x-small;">asp</span></span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">:</span></span><span style="color: #a31515; font-size: x-small;"><span style="color: #a31515; font-size: x-small;">changepassword</span></span><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;">&gt;</span></span></span></div>
<div><span style="font-size: x-small;"><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;"><a href="http://www.thenetworkadministrator.net/wp-content/uploads/2010/07/fbapassreset.png"><img class="aligncenter size-full wp-image-686" title="fbapassreset" src="http://www.thenetworkadministrator.net/wp-content/uploads/2010/07/fbapassreset.png" alt="" width="614" height="460" /></a></span></span></span></div>
<div><span style="font-size: x-small;"><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;"> </span></span></span></div>
<div><span style="font-size: x-small;"><span style="color: #0000ff; font-size: x-small;"><span style="color: #0000ff; font-size: x-small;"> </span></span></span>The last thing is to configure a second extranet Zone by extending your web App.</div>
<p> </p>
<div>I followed this post and I had no issues at all getting this to work.</div>
<div><a href="http://grounding.co.za/blogs/brett/archive/2008/01/09/setting-up-dual-authentication-on-windows-sharepoint-services-3-0-forms-and-ntlm.aspx">http://grounding.co.za/blogs/brett/archive/2008/01/09/setting-up-dual-authentication-on-windows-sharepoint-services-3-0-forms-and-ntlm.aspx</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.thenetworkadministrator.net/index.php/2010/07/sharepoint-services-3-0-site-with-forms-based-authentication/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Setup Secure FTP (SFTP) With OpenSSH on Windows Server</title>
		<link>http://www.thenetworkadministrator.net/index.php/2010/06/setup-secure-ftp-sftp-with-openssh-on-windows-server/</link>
		<comments>http://www.thenetworkadministrator.net/index.php/2010/06/setup-secure-ftp-sftp-with-openssh-on-windows-server/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 23:18:18 +0000</pubDate>
		<dc:creator>MWahl</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.thenetworkadministrator.net/?p=670</guid>
		<description><![CDATA[Windows Server 2008 IIS7 does have support for SFTP unlike IIS6. We are running Windows Server 2003 so IIS7 was not an option. I looked at Filezilla, the setup does not work work well with enterprise level firewalls, etc.  The most simplistic solution was to just use OpenSSH.  1. First open port 22 to the secure Secure FTP [...]]]></description>
			<content:encoded><![CDATA[<p>Windows Server 2008 IIS7 does have support for SFTP unlike IIS6. We are running Windows Server 2003 so IIS7 was not an option. I looked at Filezilla, the setup does not work work well with enterprise level firewalls, etc. </p>
<p>The most simplistic solution was to just use OpenSSH. </p>
<p>1. First open port 22 to the secure Secure FTP Server ip address and apply any needed access lists or static mappings.  </p>
<p>2. Download OpenSSH from <a title="http://sshwindows.sourceforge.net/download/" href="http://sshwindows.sourceforge.net/download/">http://sshwindows.sourceforge.net/download/</a>  and download the binary installer. Once the software is  downloaded, click on the executable file to launch the installer.</p>
<p>3. The installation wizard should come  up, select next, accept the license agreement, install the <strong>Client </strong>and <strong>Server</strong> components, select the destination path.</p>
<p>4.<strong> </strong> From your server <strong>computer Management Console </strong>create a user, and a group. add the user to the group. The User name could be sftp and the group be secftp.</p>
<p>5. Create a directory you want your sftp users to access. I created my on the following path:<br />
<code><br />
<strong>E:\sftp\sftp</strong><br />
</code><br />
Make sure the OpenSSH service is not running under services. if it is, stop it, otherwise leave it stopped</p>
<p>6. go to <strong>RUN </strong>and type <strong>Regedit </strong>and click <strong>OK.</strong><br />
<code><br />
<strong>navigate to the following registry folder: <em><strong>HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin</strong> </em>expand the <strong>Mounts v2 </strong>folder, and click on <strong>/home </strong>right click the <strong>native </strong>file, and click on <strong><em>modify</em></strong>, and add the path of the directory you want your users to have access to. mine is E:\sftp\sftp</strong><br />
</code><br />
<code><br />
7. Create a file named <strong>group </strong>and <strong>passwrd</strong> at the following location and don’t put any extension on them.<br />
</code><br />
C:\Program Files\OpenSSH\etc<br />
<code><br />
8. Click on <strong>RUN </strong>and type <strong>CMD </strong>and then OK.</p>
<p>type the following command on the command prompt:</p>
<p><strong><em>cd C:\Program Files\OpenSSH\bin</em></strong></p>
<p>once you switch to the BIN directory type the following commands:</p>
<p><strong>mkgroup -l &gt;&gt; ..\etc\group</strong></p>
<p>and then:</p>
<p><strong>mkpasswd -l -u username &gt;&gt; ..\etc\passwd</strong></p>
<p>on the username option, add the username we created above.<br />
</code><br />
<code><br />
9. From the command prompt, execute the following command to start the service</p>
<p><strong>net start opensshd</strong><br />
</code><br />
10. One last thing to do is modify the passwd file  C:\Program Files\OpenSSH\etc</p>
<p>Create home directories for your user</p>
<ol>
<li>In the passwd file, you will notice that the user’s home directory is set as /home/username. Change the location by editing the passwd file with notepad or any other text editor. Only edit the second last entry (/home/username), by replacing it with any directory that you wish to act as that user’s home directory,<br />
<code><br />
using the following syntax:</p>
<ol>
<li><em>/cygdrive/c/path_to_the_folder</em></li>
</ol>
</li>
</ol>
<p></code><br />
Below is an example of my passwd file entry.<br />
<code><br />
FTP:unused_by_nt/2000/xp:1003:513:SFTP</p>
<p>Testing,U-2K3FS01\SFTP,S-1-5-21-3837532754-3053635440-2016409431-1003:/cygdrive/c/sftp<br />
:/bin/switch</p>
<p></code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thenetworkadministrator.net/index.php/2010/06/setup-secure-ftp-sftp-with-openssh-on-windows-server/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A few iPhone Tips and Tricks</title>
		<link>http://www.thenetworkadministrator.net/index.php/2010/06/a-few-iphones-tips-and-tricks/</link>
		<comments>http://www.thenetworkadministrator.net/index.php/2010/06/a-few-iphones-tips-and-tricks/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 23:10:09 +0000</pubDate>
		<dc:creator>MWahl</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.thenetworkadministrator.net/?p=665</guid>
		<description><![CDATA[1. If you wish to go to the top of any screen without scrolling up just tap anywhere on the status bar. 2, Want a screen shot, just press the home and sleep buttons at the same time while you have the desired screen loaded. The screen shots show up in your camera roll as regular [...]]]></description>
			<content:encoded><![CDATA[<p>1. If you wish to go to the top of any screen without scrolling up just tap anywhere on the status bar.</p>
<p>2, Want a screen shot, just press the home and sleep buttons at the same time while you have the desired screen loaded. The screen shots show up in your camera roll as regular pics.</p>
<p>3. While in any screen you can shake to undo and redo</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thenetworkadministrator.net/index.php/2010/06/a-few-iphones-tips-and-tricks/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Must Have Tools For All IT Professionals</title>
		<link>http://www.thenetworkadministrator.net/index.php/2010/05/must-have-tools-for-all-it-professionals/</link>
		<comments>http://www.thenetworkadministrator.net/index.php/2010/05/must-have-tools-for-all-it-professionals/#comments</comments>
		<pubDate>Wed, 12 May 2010 03:23:26 +0000</pubDate>
		<dc:creator>MWahl</dc:creator>
				<category><![CDATA[Microsoft Apps]]></category>
		<category><![CDATA[Windows tools]]></category>

		<guid isPermaLink="false">http://www.thenetworkadministrator.net/?p=658</guid>
		<description><![CDATA[Virtual CloneDrive http://www.slysoft.com/en/download.html FileZilla http://filezilla-project.org/ ImgBurn http://www.imgburn.com/ VirtualBox http://www.virtualbox.org/ Sysinternals Suite http://download.sysinternals.com/Files/SysinternalsSuite.zip HWiNFO32 http://www.hwinfo.com/download32.html CCleaner http://www.piriform.com/ccleaner/download/standard Recuva http://www.piriform.com/recuva/download/standard]]></description>
			<content:encoded><![CDATA[<p><strong>Virtual CloneDrive</strong></p>
<p><strong><a href="http://www.slysoft.com/en/download.html">http://www.slysoft.com/en/download.html</a></strong></p>
<p><strong>FileZilla</strong></p>
<p><strong><a href="http://filezilla-project.org/">http://filezilla-project.org/</a></strong></p>
<p><strong>ImgBurn</strong></p>
<p><a href="http://www.imgburn.com/">http://www.imgburn.com/</a></p>
<p><strong>VirtualBox</strong></p>
<p><a href="http://www.virtualbox.org/">http://www.virtualbox.org/</a></p>
<p><strong>Sysinternals Suite</strong></p>
<p><a href="http://download.sysinternals.com/Files/SysinternalsSuite.zip">http://download.sysinternals.com/Files/SysinternalsSuite.zip</a></p>
<p><strong>HWiNFO32</strong></p>
<p><a href="http://www.hwinfo.com/download32.html">http://www.hwinfo.com/download32.html</a></p>
<p><strong>CCleaner</strong></p>
<p><a href="http://www.piriform.com/ccleaner/download/standard">http://www.piriform.com/ccleaner/download/standard</a></p>
<p><strong>Recuva</strong></p>
<p><a href="http://www.piriform.com/recuva/download/standard">http://www.piriform.com/recuva/download/standard</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thenetworkadministrator.net/index.php/2010/05/must-have-tools-for-all-it-professionals/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BlackBerry Enterprise Server Express is Free!!</title>
		<link>http://www.thenetworkadministrator.net/index.php/2010/05/blackberry-enterprise-server-express-is-free/</link>
		<comments>http://www.thenetworkadministrator.net/index.php/2010/05/blackberry-enterprise-server-express-is-free/#comments</comments>
		<pubDate>Wed, 12 May 2010 02:52:08 +0000</pubDate>
		<dc:creator>MWahl</dc:creator>
				<category><![CDATA[Blackberry]]></category>

		<guid isPermaLink="false">http://www.thenetworkadministrator.net/?p=654</guid>
		<description><![CDATA[I wrote an article a while back about BES 5.0.1 as we upgraded our BES 4.6 server after installing a new email server with MS Exchange 2010. However, today i learned that there is a free version of BES 5.0.1. I was thinking the express version would probably be very limited, but to my surprise it offers almost [...]]]></description>
			<content:encoded><![CDATA[<p>I wrote an article a while back about BES 5.0.1 as we upgraded our BES 4.6 server after installing a new email server with MS Exchange 2010. However, today i learned that there is a free version of BES 5.0.1. I was thinking the express version would probably be very limited, but to my surprise it offers almost all of same functiionality as the enterprise version. The express version is really designed for small to mid-size organizations and provides the same security, management, and push technologies of BlackBerry Enterprise Server. The only cost outside the blackberry software is the microsoft server(s) to run it.</p>
<p>I have come accross admins who use Express to manage personal BlackBerry phones that employees purchase and bring to work, while letting BES handle the corporate BlackBerry devices that are deployed in large numbers.</p>
<p>I should also note that both versions have the new BlackBerry Administration Service, which is a Web-based console. This is where most of the user, device and server management and configuration happen.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thenetworkadministrator.net/index.php/2010/05/blackberry-enterprise-server-express-is-free/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
