<?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>mikedopp.com &#187; IIS</title>
	<atom:link href="http://mikedopp.com/index.php/category/iis/feed/" rel="self" type="application/rss+xml" />
	<link>http://mikedopp.com</link>
	<description>Code Monkey by Day, Unix/Windows Administrator by Night, Social Media Chump 24/7</description>
	<lastBuildDate>Wed, 09 Jun 2010 07:37:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Moving IIS Install from one system drive to another.</title>
		<link>http://mikedopp.com/index.php/2010/03/01/moving-iis-install-from-one-system-drive-to-another/</link>
		<comments>http://mikedopp.com/index.php/2010/03/01/moving-iis-install-from-one-system-drive-to-another/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 04:18:00 +0000</pubDate>
		<dc:creator>mikedopp</dc:creator>
				<category><![CDATA[IIS]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Moving IIS to another Drive]]></category>

		<guid isPermaLink="false">http://mikedopp.com/index.php/2010/03/01/moving-iis-install-from-one-system-drive-to-another/</guid>
		<description><![CDATA[So you have a beefy new server with multiple drives. Let’s just say you have a C, D and E Drives just for argument sake. You want to move “all”&#160; of your server based applications off the C drive since the operating system drive is typically the first to die crash or be at a [...]]]></description>
			<content:encoded><![CDATA[<p>So you have a beefy new server with multiple drives. Let’s just say you have a C, D and E Drives just for argument sake. You want to move “all”&#160; of your server based applications off the C drive since the operating system drive is typically the first to die crash or be at a loss for data.</p>
<p>IIS is typically by default installed and assigned on the system drive C:\inetpub. However you want to move it to D:\intepub. So you start down the whole copy and paste which may seem like it will work however you still have to touch multiple Registry keys and paths. Well here is a simple script to make your IIS moving a snap. <a href="http://mikedopp.com/wp-content/uploads/2010/03/sshot23.png" rel="lightbox[438]"><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="sshot23" border="0" alt="sshot23" align="right" src="http://mikedopp.com/wp-content/uploads/2010/03/sshot23_thumb.png" width="288" height="387" /></a></p>
<p>Also if you copy this make sure to name the file a .Bat file for Batch… Just in case.</p>
<blockquote><p>REM PLEASE BE AWARE: SERVICING (I.E. HOTFIXES AND SERVICE PACKS) WILL STILL REPLACE FILES      <br />REM IN THE ORIGINAL DIRECTORIES. THE LIKELIHOOD THAT FILES IN THE INETPUB DIRECTORIES HAVE       <br />REM TO BE REPLACED BY SERVICING IS LOW BUT FOR THIS REASON DELETING THE ORIGINAL DIRECTORIES       <br />REM IS NOT POSSIBLE. </p>
<p>@echo off      <br />IF &quot;%1&quot; == &quot;&quot; goto err       <br />setlocal       <br />set MOVETO=%1:\ </p>
<p>REM simple error handling if drive does not exist or argument is wrong      <br />IF NOT EXIST %MOVETO% goto err </p>
<p>REM Backup IIS config before we start changing config to point to the new path      <br />%windir%\system32\inetsrv\appcmd add backup beforeRootMove </p>
<p>REM Stop all IIS services      <br />iisreset /stop </p>
<p>REM Copy all content      <br />REM /O &#8211; copy ACLs       <br />REM /E &#8211; copy sub directories including empty ones       <br />REM /I &#8211; assume destination is a directory       <br />REM /Q &#8211; quiet </p>
<p>REM echo on, because user will be prompted if content already exists.      <br />echo on       <br />xcopy %systemdrive%\inetpub %MOVETO%inetpub /O /E /I /Q       <br />@echo off       <br />REM Move AppPool isolation directory       <br />reg add HKLM\System\CurrentControlSet\Services\WAS\Parameters /v ConfigIsolationPath /t REG_SZ /d %MOVETO%inetpub\temp\appPools /f </p>
<p>REM Move logfile directories      <br />%windir%\system32\inetsrv\appcmd set config -section:system.applicationHost/sites -siteDefaults.traceFailedRequestsLogging.directory:&quot;%MOVETO%inetpub\logs\FailedReqLogFiles&quot;       <br />%windir%\system32\inetsrv\appcmd set config -section:system.applicationHost/sites -siteDefaults.logfile.directory:&quot;%MOVETO%inetpub\logs\logfiles&quot;       <br />%windir%\system32\inetsrv\appcmd set config -section:system.applicationHost/log -centralBinaryLogFile.directory:&quot;%MOVETO%inetpub\logs\logfiles&quot;       <br />%windir%\system32\inetsrv\appcmd set config -section:system.applicationHost/log -centralW3CLogFile.directory:&quot;%MOVETO%inetpub\logs\logfiles&quot; </p>
<p>REM Move config history location, temporary files, the path for the Default Web Site and the custom error locations      <br />%windir%\system32\inetsrv\appcmd set config -section:system.applicationhost/configHistory -path:%MOVETO%inetpub\history       <br />%windir%\system32\inetsrv\appcmd set config -section:system.webServer/asp -cache.disktemplateCacheDirectory:&quot;%MOVETO%inetpub\temp\ASP Compiled Templates&quot;       <br />%windir%\system32\inetsrv\appcmd set config -section:system.webServer/httpCompression -directory:&quot;%MOVETO%inetpub\temp\IIS Temporary Compressed Files&quot;       <br />%windir%\system32\inetsrv\appcmd set vdir &quot;Default Web Site/&quot; -physicalPath:%MOVETO%inetpub\wwwroot       <br />%windir%\system32\inetsrv\appcmd set config -section:httpErrors /[statusCode='401'].prefixLanguageFilePath:%MOVETO%inetpub\custerr       <br />%windir%\system32\inetsrv\appcmd set config -section:httpErrors /[statusCode='403'].prefixLanguageFilePath:%MOVETO%inetpub\custerr       <br />%windir%\system32\inetsrv\appcmd set config -section:httpErrors /[statusCode='404'].prefixLanguageFilePath:%MOVETO%inetpub\custerr       <br />%windir%\system32\inetsrv\appcmd set config -section:httpErrors /[statusCode='405'].prefixLanguageFilePath:%MOVETO%inetpub\custerr       <br />%windir%\system32\inetsrv\appcmd set config -section:httpErrors /[statusCode='406'].prefixLanguageFilePath:%MOVETO%inetpub\custerr       <br />%windir%\system32\inetsrv\appcmd set config -section:httpErrors /[statusCode='412'].prefixLanguageFilePath:%MOVETO%inetpub\custerr       <br />%windir%\system32\inetsrv\appcmd set config -section:httpErrors /[statusCode='500'].prefixLanguageFilePath:%MOVETO%inetpub\custerr       <br />%windir%\system32\inetsrv\appcmd set config -section:httpErrors /[statusCode='501'].prefixLanguageFilePath:%MOVETO%inetpub\custerr       <br />%windir%\system32\inetsrv\appcmd set config -section:httpErrors /[statusCode='502'].prefixLanguageFilePath:%MOVETO%inetpub\custerr </p>
<p>REM Make sure Service Pack and Hotfix Installers know where the IIS root directories are      <br />reg add HKLM\Software\Microsoft\inetstp /v PathWWWRoot /t REG_SZ /d %mOVETO%\inetpub\wwwroot /f       <br />reg add HKLM\Software\Microsoft\inetstp /v PathFTPRoot /t REG_SZ /d %MOVETO%\inetpub\ftproot /f       <br />REM Do the same for x64 directories       <br />if not &quot;%ProgramFiles(x86)%&quot; == &quot;&quot; reg add HKLM\Software\Wow6432Node\Microsoft\inetstp /v PathWWWRoot /t REG_EXPAND_SZ /d %MOVETO%inetpub\wwwroot /f       <br />if not &quot;%ProgramFiles(x86)%&quot; == &quot;&quot; reg add HKLM\Software\Wow6432Node\Microsoft\inetstp /v PathFTPRoot /t REG_EXPAND_SZ /d %MOVETO%inetpub\ftproot /f </p>
<p>REM Restart all IIS services      <br />iisreset /start       <br />echo.       <br />echo.       <br />echo ===============================================================================       <br />echo Moved IIS7 root directory from %systemdrive%\ to %MOVETO%.       <br />echo.       <br />echo Please verify if the move worked. If so you can delete the %systemdrive%\inetpub directory.       <br />echo If something went wrong you can restore the old settings via       <br />echo&#160;&#160;&#160;&#160; &quot;APPCMD restore backup beforeRootMove&quot;       <br />echo and       <br />echo&#160;&#160;&#160;&#160; &quot;REG delete HKLM\System\CurrentControlSet\Services\WAS\Parameters\ConfigIsolationPath&quot;       <br />echo You also have to reset the PathWWWRoot and PathFTPRoot registry values       <br />echo in HKEY_LOCAL_MACHINE\Software\Microsoft\InetStp.       <br />echo ===============================================================================       <br />echo.       <br />echo.       <br />endlocal       <br />goto success </p>
<p>REM error message if no argument or drive does not exist      <br />:err       <br />echo.       <br />echo New root drive letter required.       <br />echo Here an example how to move the IIS root to the F:\ drive:       <br />echo.       <br />echo MOVEIISROOT.BAT F       <br />echo.       <br />echo. </p>
<p>:success</p>
</blockquote>
<p>This should take care of your IIS moving needs. Do not forget to reboot to make sure settings are happy. </p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:246c2282-ee62-46cc-99e6-7d736e4cc393" class="wlWriterEditableSmartContent">Flickr Tags: <a href="http://flickr.com/photos/tags/IIS+moving" rel="tag">IIS moving</a>, <a href="http://flickr.com/photos/tags/Move+IIS+to+another+drive" rel="tag">Move IIS to another drive</a>, <a href="http://flickr.com/photos/tags/IIS+fun+in+movement" rel="tag">IIS fun in movement</a>, <a href="http://flickr.com/photos/tags/Happiness+in+IIS" rel="tag">Happiness in IIS</a></div>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:7a487528-88a1-4116-a74d-50e377fb829c" class="wlWriterEditableSmartContent">BuzzNet Tags: <a href="http://www.buzznet.com/tags/IIS+moving/" rel="tag">IIS moving</a>, <a href="http://www.buzznet.com/tags/Move+IIS+to+another+drive/" rel="tag">Move IIS to another drive</a>, <a href="http://www.buzznet.com/tags/IIS+fun+in+movement/" rel="tag">IIS fun in movement</a>, <a href="http://www.buzznet.com/tags/Happiness+in+IIS/" rel="tag">Happiness in IIS</a></div>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:12cf7956-1250-49a2-8a73-65eac4fcd999" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/IIS+moving" rel="tag">IIS moving</a>, <a href="http://technorati.com/tags/Move+IIS+to+another+drive" rel="tag">Move IIS to another drive</a>, <a href="http://technorati.com/tags/IIS+fun+in+movement" rel="tag">IIS fun in movement</a>, <a href="http://technorati.com/tags/Happiness+in+IIS" rel="tag">Happiness in IIS</a></div>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:6d28ec0c-f559-4899-9a1c-bccb812677df" class="wlWriterEditableSmartContent">del.icio.us Tags: <a href="http://del.icio.us/popular/IIS+moving" rel="tag">IIS moving</a>, <a href="http://del.icio.us/popular/Move+IIS+to+another+drive" rel="tag">Move IIS to another drive</a>, <a href="http://del.icio.us/popular/IIS+fun+in+movement" rel="tag">IIS fun in movement</a>, <a href="http://del.icio.us/popular/Happiness+in+IIS" rel="tag">Happiness in IIS</a></div>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:9399b97a-0afa-4116-8ff9-6acffc4153ae" class="wlWriterEditableSmartContent">IceRocket Tags: <a href="http://blogs.icerocket.com/search?q=IIS+moving" rel="tag">IIS moving</a>, <a href="http://blogs.icerocket.com/search?q=Move+IIS+to+another+drive" rel="tag">Move IIS to another drive</a>, <a href="http://blogs.icerocket.com/search?q=IIS+fun+in+movement" rel="tag">IIS fun in movement</a>, <a href="http://blogs.icerocket.com/search?q=Happiness+in+IIS" rel="tag">Happiness in IIS</a></div>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:c040cd21-e374-4f76-9227-c174bdceb4d6" class="wlWriterEditableSmartContent">LiveJournal Tags: <a href="http://www.livejournal.com/interests.bml?int=IIS+moving" rel="tag">IIS moving</a>, <a href="http://www.livejournal.com/interests.bml?int=Move+IIS+to+another+drive" rel="tag">Move IIS to another drive</a>, <a href="http://www.livejournal.com/interests.bml?int=IIS+fun+in+movement" rel="tag">IIS fun in movement</a>, <a href="http://www.livejournal.com/interests.bml?int=Happiness+in+IIS" rel="tag">Happiness in IIS</a></div>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:0d704467-607c-4831-ab1f-066c201b00bb" class="wlWriterEditableSmartContent">43 Things Tags: <a href="http://www.43things.com/tag/IIS+moving" rel="tag">IIS moving</a>, <a href="http://www.43things.com/tag/Move+IIS+to+another+drive" rel="tag">Move IIS to another drive</a>, <a href="http://www.43things.com/tag/IIS+fun+in+movement" rel="tag">IIS fun in movement</a>, <a href="http://www.43things.com/tag/Happiness+in+IIS" rel="tag">Happiness in IIS</a></div>
]]></content:encoded>
			<wfw:commentRss>http://mikedopp.com/index.php/2010/03/01/moving-iis-install-from-one-system-drive-to-another/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Commerce Server 2007: Direct Mailer Is Not Working Please Help!</title>
		<link>http://mikedopp.com/index.php/2010/02/28/commerce-server-2007-direct-mailer-is-not-working-please-help/</link>
		<comments>http://mikedopp.com/index.php/2010/02/28/commerce-server-2007-direct-mailer-is-not-working-please-help/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 18:48:00 +0000</pubDate>
		<dc:creator>mikedopp</dc:creator>
				<category><![CDATA[IIS]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Commerce Server Direct Mailer]]></category>
		<category><![CDATA[Help with Direct Mailer]]></category>

		<guid isPermaLink="false">http://mikedopp.com/index.php/2010/02/28/commerce-server-2007-direct-mailer-is-not-working-please-help/</guid>
		<description><![CDATA[Cannot tell you how much fun this can be if it is not working correctly. First make sure SMTP is set up correctly in your IIS install (IIS6-IIS7.5(which uses IIS6 but thats for another story)) Direct Mailer Not working or not sending email or just needs to be configured correctly? First lets make sure the [...]]]></description>
			<content:encoded><![CDATA[<p>Cannot tell you how much fun this can be if it is not working correctly. First make sure SMTP is set up correctly in your IIS install (IIS6-IIS7.5(which uses IIS6 but thats for another story))</p>
<p>Direct Mailer Not working or not sending email or just needs to be configured correctly?</p>
<p><strong>First lets make sure the server and users/groups are created right.</strong></p>
<h2>To grant the Marketing Web Service access to the Direct Mailer Service</h2>
<p>1. Click Start, point to Programs, point to Administrative Tools, and then click Component Services.</p>
<p>2. In the Component Services window, expand Component Services, expand Computers, expand My Computer, expand DCOM Config, right-click Microsoft Commerce Server DirectMailer Service, and then click Properties.</p>
<p>3. In the Microsoft Commerce Server DirectMailer Service Properties dialog box, on the Security tab, in the Launch and Activation Permissions section, select Customize, and then click Edit.</p>
<p>4. In the Launch Permission dialog box, click Add.</p>
<p>5. In the Select Users, Computers, or Groups dialog box, in the Enter the object names to select box, type &lt;data domain&gt;\MarketingWebSvc, and then click OK.</p>
<p>6. In the Launch Permission dialog box, in the Permissions for &lt;data domain&gt;\MarketingWebSvc section, select the Local Launch and Local Activation check boxes for Allow, and then click OK.</p>
<p>7. In the Microsoft Commerce Server DirectMailer Service Properties dialog box, on the Security tab, in the Access Permissions section, select Customize, and then click Edit.</p>
<p>8. In the Access Permission dialog box, click Add.</p>
<p>9. In the Select Users, Computers, or Groups dialog box, in the Enter the object names to select box, type &lt;data domain&gt;\MarketingWebSvc, and then click OK.</p>
<p>10. In the Access Permission dialog box, in the Permissions for &lt;data domain&gt;\MarketingWebSvc section, select the Local Access check box for Allow, and then click OK.</p>
<p>11. In the Microsoft Commerce Server DirectMailer Service Properties dialog box, click OK</p>
<p><b>To grant the Marketing Web Service access to the Direct Mailer Service</b></p>
<p>1. Click Start, point to Programs, point to Administrative Tools, and then click Component Services.</p>
<p>2. In the Component Services window, expand Component Services, expand Computers, expand My Computer, expand DCOM Config, right-click Microsoft Commerce Server DirectMailer Service, and then click Properties.</p>
<p>3. In the Microsoft Commerce Server DirectMailer Service Properties dialog box, on the Security tab, in the Launch and Activation Permissions section, select Customize, and then click Edit.</p>
<p>4. In the Launch Permission dialog box, click Add.</p>
<p>5. In the Select Users, Computers, or Groups dialog box, in the Enter the object names to select box, type &lt;data domain&gt;\MarketingWebSvc, and then click OK.</p>
<p>6. In the Launch Permission dialog box, in the Permissions for &lt;data domain&gt;\MarketingWebSvc section, select the Local Launch and Local Activation check boxes for Allow, and then click OK.</p>
<p>7. In the Microsoft Commerce Server DirectMailer Service Properties dialog box, on the Security tab, in the Access Permissions section, select Customize, and then click Edit.</p>
<p>8. In the Access Permission dialog box, click Add.</p>
<p>9. In the Select Users, Computers, or Groups dialog box, in the Enter the object names to select box, type &lt;data domain&gt;\MarketingWebSvc, and then click OK.</p>
<p>10. In the Access Permission dialog box, in the Permissions for &lt;data domain&gt;\MarketingWebSvc section, select the Local Access check box for Allow, and then click OK.</p>
<p>11. In the Microsoft Commerce Server DirectMailer Service Properties dialog box, click OK</p>
<p>And verify that your web service identity is a member of the DML_SG group</p>
<p>&#160;</p>
<h2><strong>Prepare the Members and Groups for COM component Services</strong>: </h2>
<p>Member Manage: </p>
<p>Create the group DML_SG </p>
<p>Add the following users to the: </p>
<p>DML_SG </p>
<p>CSDMSvc </p>
<p>MarketingWebSvc </p>
<p>Add the following users to the: </p>
<p>MarketingAdminGroup </p>
<p>RunTimeUser </p>
<p>MarketingWebSvc </p>
<p>CSDMSvc </p>
<p>Add the following users to the: </p>
<p>Administrator </p>
<p>MarketingWebSvc </p>
<p><strong>Go into services and make sure commerce server direct mailer is running and set to automatic.</strong> </p>
<p>&#160;</p>
<h2>Trouble Shooting</h2>
<p>You can add the following registry change if these do not work. </p>
<p>Open Registry using regedit.exe. </p>
<blockquote><p>Navigate to HK_LOCAL_Machine\Software\Microsoft\SchedulingAgent and give full control to NT account under which marketing system is working (or add authenticate users).</p>
</blockquote>
<p>*Right click on the key and scroll down to permissions inside permissions add DML_SG and give full permissions. </p>
<p>Test Emailing by scheduling a DML run with dmlrun.exe: </p>
<blockquote><p>dmlrun.exe /create:type=final;site=&quot;Buylifetime.com&quot;;id=30 /execute</p>
</blockquote>
<p>If that doesn&#8217;t work, try using the DirectMailer COM object to test your direct mail: </p>
<blockquote><p>Dim dm </p>
<p>set dm = CreateObject(&quot;Commerce.DirectMailer&quot;, &quot;&lt;DML Server Name&gt;&quot;) </p>
<p>call dm.TestDirectMail(&quot;StarterSite&quot;, 30)</p>
</blockquote>
<p>save and do IIS reset</p>
<p><strong>Last and most effective:</strong></p>
<p>Open a Command Prompt go to (different for 32 and 64 bit servers(Provided is the 64bit version))) C:\Program Files (x86)\Microsoft Commerce Server 2007 Then run:</p>
<p>csconfig /r Feature.MS.CS.DirectMailer</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:2e691120-704b-4fb2-b53e-59ee9d145207" class="wlWriterEditableSmartContent">Flickr Tags: <a href="http://flickr.com/photos/tags/Commerce+Server+DirectMailer" rel="tag">Commerce Server DirectMailer</a>, <a href="http://flickr.com/photos/tags/Issues+with+Direct+Mailer" rel="tag">Issues with Direct Mailer</a>, <a href="http://flickr.com/photos/tags/Fix+Direct+Mailer+for+me" rel="tag">Fix Direct Mailer for me</a>, <a href="http://flickr.com/photos/tags/Why+Commerce+Server+Why%3f" rel="tag">Why Commerce Server Why?</a></div>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:80266620-e298-4847-9980-efa8b9a80d83" class="wlWriterEditableSmartContent">BuzzNet Tags: <a href="http://www.buzznet.com/tags/Commerce+Server+DirectMailer/" rel="tag">Commerce Server DirectMailer</a>, <a href="http://www.buzznet.com/tags/Issues+with+Direct+Mailer/" rel="tag">Issues with Direct Mailer</a>, <a href="http://www.buzznet.com/tags/Fix+Direct+Mailer+for+me/" rel="tag">Fix Direct Mailer for me</a>, <a href="http://www.buzznet.com/tags/Why+Commerce+Server+Why%3f/" rel="tag">Why Commerce Server Why?</a></div>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:b83449af-26d7-498f-90cf-edf456c9a4f8" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/Commerce+Server+DirectMailer" rel="tag">Commerce Server DirectMailer</a>, <a href="http://technorati.com/tags/Issues+with+Direct+Mailer" rel="tag">Issues with Direct Mailer</a>, <a href="http://technorati.com/tags/Fix+Direct+Mailer+for+me" rel="tag">Fix Direct Mailer for me</a>, <a href="http://technorati.com/tags/Why+Commerce+Server+Why%3f" rel="tag">Why Commerce Server Why?</a></div>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:2dc2f759-dfa2-4180-a260-74694cbc74bb" class="wlWriterEditableSmartContent">del.icio.us Tags: <a href="http://del.icio.us/popular/Commerce+Server+DirectMailer" rel="tag">Commerce Server DirectMailer</a>, <a href="http://del.icio.us/popular/Issues+with+Direct+Mailer" rel="tag">Issues with Direct Mailer</a>, <a href="http://del.icio.us/popular/Fix+Direct+Mailer+for+me" rel="tag">Fix Direct Mailer for me</a>, <a href="http://del.icio.us/popular/Why+Commerce+Server+Why%3f" rel="tag">Why Commerce Server Why?</a></div>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:a31a62cd-0093-4c32-b7e7-9ae061a0d548" class="wlWriterEditableSmartContent">IceRocket Tags: <a href="http://blogs.icerocket.com/search?q=Commerce+Server+DirectMailer" rel="tag">Commerce Server DirectMailer</a>, <a href="http://blogs.icerocket.com/search?q=Issues+with+Direct+Mailer" rel="tag">Issues with Direct Mailer</a>, <a href="http://blogs.icerocket.com/search?q=Fix+Direct+Mailer+for+me" rel="tag">Fix Direct Mailer for me</a>, <a href="http://blogs.icerocket.com/search?q=Why+Commerce+Server+Why%3f" rel="tag">Why Commerce Server Why?</a></div>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:fb1752a8-fe9c-4611-8a80-8b67a17ad426" class="wlWriterEditableSmartContent">LiveJournal Tags: <a href="http://www.livejournal.com/interests.bml?int=Commerce+Server+DirectMailer" rel="tag">Commerce Server DirectMailer</a>, <a href="http://www.livejournal.com/interests.bml?int=Issues+with+Direct+Mailer" rel="tag">Issues with Direct Mailer</a>, <a href="http://www.livejournal.com/interests.bml?int=Fix+Direct+Mailer+for+me" rel="tag">Fix Direct Mailer for me</a>, <a href="http://www.livejournal.com/interests.bml?int=Why+Commerce+Server+Why%3f" rel="tag">Why Commerce Server Why?</a></div>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:e0d8873c-3e9d-4050-be8e-84c0aaa6c9b8" class="wlWriterEditableSmartContent">43 Things Tags: <a href="http://www.43things.com/tag/Commerce+Server+DirectMailer" rel="tag">Commerce Server DirectMailer</a>, <a href="http://www.43things.com/tag/Issues+with+Direct+Mailer" rel="tag">Issues with Direct Mailer</a>, <a href="http://www.43things.com/tag/Fix+Direct+Mailer+for+me" rel="tag">Fix Direct Mailer for me</a>, <a href="http://www.43things.com/tag/Why+Commerce+Server+Why%3f" rel="tag">Why Commerce Server Why?</a></div>
]]></content:encoded>
			<wfw:commentRss>http://mikedopp.com/index.php/2010/02/28/commerce-server-2007-direct-mailer-is-not-working-please-help/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Commerce Server 2007 PUP Check.</title>
		<link>http://mikedopp.com/index.php/2010/02/24/commerce-server-2007-pup-check/</link>
		<comments>http://mikedopp.com/index.php/2010/02/24/commerce-server-2007-pup-check/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 05:51:00 +0000</pubDate>
		<dc:creator>mikedopp</dc:creator>
				<category><![CDATA[IIS]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Commerce Server 2007]]></category>
		<category><![CDATA[PUP]]></category>

		<guid isPermaLink="false">http://mikedopp.com/index.php/2010/02/24/commerce-server-2007-pup-check/</guid>
		<description><![CDATA[So as you all know I am a Non-MVP for Commerce Server 2007 however I have worked tirelessly with this server. I know a ton of the in’s and outs of the architecture and have written a good number of scripts and modified others scripts to work. Recently I have had the pleasure of making [...]]]></description>
			<content:encoded><![CDATA[<p>So as you all know I am a Non-MVP for Commerce Server 2007 however I have worked tirelessly with this server. I know a ton of the in’s and outs of the architecture and have written a good number of scripts and modified others scripts to work.</p>
<p>Recently I have had the pleasure of making Commerce Server 2007 run (play nice) with Windows Server 2008r2. This was interesting in many many ways to which I will document down the road. </p>
<p>For this post I wanted to share a great little script that helps with your own or the default “PUP” install.</p>
<p>As those of us that have installed Commerce Server 2007 on multiple machines architectures and what not know when installing the “PUP” it is important to keep the “default” web site intact. Also if you can help it, Not to have any other sites running or created in IIS6 &#8211; IIS7.5. However you may have some installed and the APP ID’s all randomized (default behavior for IIS (all versions)). The “PUP” installer may have issues with “other” web sites running in IIS. </p>
<p>So to check what may be causing these issues try running my happy little script.</p>
<p>Put the following code into a vbs and run.</p>
<p>&#160;</p>
<blockquote><p>&#8216;The code below simulates Commerce Server Site Packager checking IIS health.      <br />&#8216;This IIS checking happens when you click the &quot;next&quot; button at the first dialog of the Site Unpacking       <br />&#8216;This code helps you to find out where the checking fails </p>
<p>set oNet=CreateObject(&quot;WScript.Network&quot;) </p>
<p>sLocalMachine = oNet.ComputerName </p>
<p>Set webServer = GetObject(&quot;IIS://&quot; &amp; sLocalMachine &amp; &quot;/w3svc&quot;) </p>
<p>msgbox &quot;Web Server &quot;+ sLocalMachine +&quot; has the following Web Sites:&quot;      <br />For Each webSite In webServer       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; If IsNumeric(webSite.Name) Then </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; sName = webSite.Name      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; msgbox &quot;Web Instance Number: &quot;+sName </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; sComment = webSite.ServerComment      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; msgbox &quot;Web Site Name: &quot;+sComment </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Foo = webSite.ServerBindings      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; msgbox &quot;Port &quot;+Foo(0) </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Set vroot = webSite.GetObject(&quot;IIsWebVirtualDir&quot;, &quot;Root&quot;)      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; msgbox &quot;Root: &quot;+vroot.path       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; End If       <br />Next </p>
<p>set onet=nothing      <br />set webserver=nothing       <br />set webSite=nothing       <br />set vroot=nothing </p>
</blockquote>
<p>Enjoy! Let me know how it goes. </p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:62d00a12-eea3-4bcd-89ab-e6488f8d8a67" class="wlWriterEditableSmartContent">Flickr Tags: <a href="http://flickr.com/photos/tags/Commerce+Server+2007+PUP+Issues" rel="tag">Commerce Server 2007 PUP Issues</a>, <a href="http://flickr.com/photos/tags/PUP+install+questions%3f" rel="tag">PUP install questions?</a>, <a href="http://flickr.com/photos/tags/PUP+Check+for+IIS" rel="tag">PUP Check for IIS</a>, <a href="http://flickr.com/photos/tags/Making+your+install+of+Commerce+Server+as+Flawless+as+possible" rel="tag">Making your install of Commerce Server as Flawless as possible</a></div>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:cfb35a61-c0a1-4b3e-bb45-729bc2b4c9f5" class="wlWriterEditableSmartContent">BuzzNet Tags: <a href="http://www.buzznet.com/tags/Commerce+Server+2007+PUP+Issues/" rel="tag">Commerce Server 2007 PUP Issues</a>, <a href="http://www.buzznet.com/tags/PUP+install+questions%3f/" rel="tag">PUP install questions?</a>, <a href="http://www.buzznet.com/tags/PUP+Check+for+IIS/" rel="tag">PUP Check for IIS</a>, <a href="http://www.buzznet.com/tags/Making+your+install+of+Commerce+Server+as+Flawless+as+possible/" rel="tag">Making your install of Commerce Server as Flawless as possible</a></div>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:3a846715-e043-48a2-81f2-ae26c4b1c7b9" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/Commerce+Server+2007+PUP+Issues" rel="tag">Commerce Server 2007 PUP Issues</a>, <a href="http://technorati.com/tags/PUP+install+questions%3f" rel="tag">PUP install questions?</a>, <a href="http://technorati.com/tags/PUP+Check+for+IIS" rel="tag">PUP Check for IIS</a>, <a href="http://technorati.com/tags/Making+your+install+of+Commerce+Server+as+Flawless+as+possible" rel="tag">Making your install of Commerce Server as Flawless as possible</a></div>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:06497335-eba6-4c60-a3e4-0a4178d7b810" class="wlWriterEditableSmartContent">del.icio.us Tags: <a href="http://del.icio.us/popular/Commerce+Server+2007+PUP+Issues" rel="tag">Commerce Server 2007 PUP Issues</a>, <a href="http://del.icio.us/popular/PUP+install+questions%3f" rel="tag">PUP install questions?</a>, <a href="http://del.icio.us/popular/PUP+Check+for+IIS" rel="tag">PUP Check for IIS</a>, <a href="http://del.icio.us/popular/Making+your+install+of+Commerce+Server+as+Flawless+as+possible" rel="tag">Making your install of Commerce Server as Flawless as possible</a></div>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:7e013e50-845d-4517-89fb-07e00ddb4fc0" class="wlWriterEditableSmartContent">IceRocket Tags: <a href="http://blogs.icerocket.com/search?q=Commerce+Server+2007+PUP+Issues" rel="tag">Commerce Server 2007 PUP Issues</a>, <a href="http://blogs.icerocket.com/search?q=PUP+install+questions%3f" rel="tag">PUP install questions?</a>, <a href="http://blogs.icerocket.com/search?q=PUP+Check+for+IIS" rel="tag">PUP Check for IIS</a>, <a href="http://blogs.icerocket.com/search?q=Making+your+install+of+Commerce+Server+as+Flawless+as+possible" rel="tag">Making your install of Commerce Server as Flawless as possible</a></div>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:24a141ac-4acb-4efb-8089-70e501d1d159" class="wlWriterEditableSmartContent">LiveJournal Tags: <a href="http://www.livejournal.com/interests.bml?int=Commerce+Server+2007+PUP+Issues" rel="tag">Commerce Server 2007 PUP Issues</a>, <a href="http://www.livejournal.com/interests.bml?int=PUP+install+questions%3f" rel="tag">PUP install questions?</a>, <a href="http://www.livejournal.com/interests.bml?int=PUP+Check+for+IIS" rel="tag">PUP Check for IIS</a>, <a href="http://www.livejournal.com/interests.bml?int=Making+your+install+of+Commerce+Server+as+Flawless+as+possible" rel="tag">Making your install of Commerce Server as Flawless as possible</a></div>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:41120dda-67c5-4850-b58a-19416428d6e3" class="wlWriterEditableSmartContent">43 Things Tags: <a href="http://www.43things.com/tag/Commerce+Server+2007+PUP+Issues" rel="tag">Commerce Server 2007 PUP Issues</a>, <a href="http://www.43things.com/tag/PUP+install+questions%3f" rel="tag">PUP install questions?</a>, <a href="http://www.43things.com/tag/PUP+Check+for+IIS" rel="tag">PUP Check for IIS</a>, <a href="http://www.43things.com/tag/Making+your+install+of+Commerce+Server+as+Flawless+as+possible" rel="tag">Making your install of Commerce Server as Flawless as possible</a></div>
]]></content:encoded>
			<wfw:commentRss>http://mikedopp.com/index.php/2010/02/24/commerce-server-2007-pup-check/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FTP User Isolation IIS7.5</title>
		<link>http://mikedopp.com/index.php/2010/02/04/ftp-user-isolation-iis7-5/</link>
		<comments>http://mikedopp.com/index.php/2010/02/04/ftp-user-isolation-iis7-5/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 12:48:00 +0000</pubDate>
		<dc:creator>mikedopp</dc:creator>
				<category><![CDATA[IIS]]></category>
		<category><![CDATA[Interesting]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Web Security]]></category>
		<category><![CDATA[FTP]]></category>
		<category><![CDATA[IIS 7.5]]></category>
		<category><![CDATA[Isolate Users]]></category>

		<guid isPermaLink="false">http://mikedopp.com/index.php/2010/02/04/ftp-user-isolation-iis7-5/</guid>
		<description><![CDATA[I have been using FTP since before IIS was really a leader or even a thought over at the house of M$ (Gangster Geek Term for Microsoft). IIS has always offered a decent FTP server from windows NT to Windows 2003. So it should not have been a chore to install and run FTP on [...]]]></description>
			<content:encoded><![CDATA[<p>I have been using FTP since before IIS was really a leader or even a thought over at the house of M$ (Gangster Geek Term for <a href="http://www.microsoft.com" target="_blank">Microsoft</a>). IIS has always offered a decent FTP server from windows NT to Windows 2003. So it should not have been a chore to install and run FTP on IIS7.5</p>
<p>IIS7.5 is a beautiful web server. Not to the naked eye (gangster Geek term for Non-Geek) but for the web master that loves Apache, Tomcat or IIS * (anything for the non-geek) and of course we wont speak of those other wanna be web server software&#8217;s out there and you know who you are please go away.</p>
<p>*Now off the soap box* </p>
<p>Anyway the IIS7.5 Gui is pretty and fun. However looks don&#8217;t mean much unless you have brains. So back to the whole setup and why this post is being written.<a href="http://mikedopp.com/wp-content/uploads/2010/02/IISFTP1.jpg" rel="lightbox[414]"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; margin-left: 0px; border-left-width: 0px; margin-right: 0px" title="IISFTP1" border="0" alt="IISFTP1" src="http://mikedopp.com/wp-content/uploads/2010/02/IISFTP1_thumb.jpg" width="240" height="181" /></a></p>
<p>Setting up FTP is kind of a chore in IIS7.5. Why I say that is it offers some really awesome features (yes I will spare you the details) FTP has security features that allow it to be an easier setup than in any other IIS version.&#160; </p>
<p>Alright so the long and the short of this post is how to setup IIS7.5 to use Isolation mode.</p>
<p>First use a ftproot type folder: C:\inetpub\ftproot will do.<a href="http://mikedopp.com/wp-content/uploads/2010/02/IsolateUsers.jpg" rel="lightbox[414]"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Isolate Users" border="0" alt="Isolate Users" src="http://mikedopp.com/wp-content/uploads/2010/02/IsolateUsers_thumb.jpg" width="240" height="176" /></a> </p>
<p>Run this from the command line: “ICACLS “C:\inetpub\ftproot” /grant IUSR:R”</p>
<p>Now under that folder create a folder called LocalUser *make sure to pascal case sensitive (this according to M$)</p>
<p>Then Create a folder called “Public” then create a local user for example: Administrator</p>
<p>Now point your FTP root directory to the C:\inetpub\ftproot</p>
<p>FTP will then pick up and understand that is the directory and will use the appropriate folder setup</p>
<p>When you try to connect to the Ftp using a certain username FTP will Isolate the folder for you.</p>
<p>This is awesome. enjoy your new FTP site.</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:e6b02f2b-7f94-4000-aedf-2fbe1e00e702" class="wlWriterEditableSmartContent">Flickr Tags: <a href="http://flickr.com/photos/tags/FTP+Fun+and+Love" rel="tag">FTP Fun and Love</a>, <a href="http://flickr.com/photos/tags/IIS7.5+I+%3c3+you" rel="tag">IIS7.5 I &lt;3 you</a>, <a href="http://flickr.com/photos/tags/Sweet+something+works" rel="tag">Sweet something works</a>, <a href="http://flickr.com/photos/tags/Microsoft+is+funny" rel="tag">Microsoft is funny</a>, <a href="http://flickr.com/photos/tags/Gangsta-Geek" rel="tag">Gangsta-Geek</a></div>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:5f28ff28-3b58-474c-ac1e-e21d78cc731e" class="wlWriterEditableSmartContent">BuzzNet Tags: <a href="http://www.buzznet.com/tags/FTP+Fun+and+Love/" rel="tag">FTP Fun and Love</a>, <a href="http://www.buzznet.com/tags/IIS7.5+I+%3c3+you/" rel="tag">IIS7.5 I &lt;3 you</a>, <a href="http://www.buzznet.com/tags/Sweet+something+works/" rel="tag">Sweet something works</a>, <a href="http://www.buzznet.com/tags/Microsoft+is+funny/" rel="tag">Microsoft is funny</a>, <a href="http://www.buzznet.com/tags/Gangsta-Geek/" rel="tag">Gangsta-Geek</a></div>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:9fc773c2-5e78-44ea-b72f-5bdaddb2892a" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/FTP+Fun+and+Love" rel="tag">FTP Fun and Love</a>, <a href="http://technorati.com/tags/IIS7.5+I+%3c3+you" rel="tag">IIS7.5 I &lt;3 you</a>, <a href="http://technorati.com/tags/Sweet+something+works" rel="tag">Sweet something works</a>, <a href="http://technorati.com/tags/Microsoft+is+funny" rel="tag">Microsoft is funny</a>, <a href="http://technorati.com/tags/Gangsta-Geek" rel="tag">Gangsta-Geek</a></div>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:4bca4907-f5c7-4fe1-9e8d-d904f4ee0c95" class="wlWriterEditableSmartContent">del.icio.us Tags: <a href="http://del.icio.us/popular/FTP+Fun+and+Love" rel="tag">FTP Fun and Love</a>, <a href="http://del.icio.us/popular/IIS7.5+I+%3c3+you" rel="tag">IIS7.5 I &lt;3 you</a>, <a href="http://del.icio.us/popular/Sweet+something+works" rel="tag">Sweet something works</a>, <a href="http://del.icio.us/popular/Microsoft+is+funny" rel="tag">Microsoft is funny</a>, <a href="http://del.icio.us/popular/Gangsta-Geek" rel="tag">Gangsta-Geek</a></div>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:99d8bc97-dcf0-4b32-892d-4392a3b7e58e" class="wlWriterEditableSmartContent">IceRocket Tags: <a href="http://blogs.icerocket.com/search?q=FTP+Fun+and+Love" rel="tag">FTP Fun and Love</a>, <a href="http://blogs.icerocket.com/search?q=IIS7.5+I+%3c3+you" rel="tag">IIS7.5 I &lt;3 you</a>, <a href="http://blogs.icerocket.com/search?q=Sweet+something+works" rel="tag">Sweet something works</a>, <a href="http://blogs.icerocket.com/search?q=Microsoft+is+funny" rel="tag">Microsoft is funny</a>, <a href="http://blogs.icerocket.com/search?q=Gangsta-Geek" rel="tag">Gangsta-Geek</a></div>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:ef56319a-0dc2-49a5-a0e2-54c0ebf6f0dd" class="wlWriterEditableSmartContent">LiveJournal Tags: <a href="http://www.livejournal.com/interests.bml?int=FTP+Fun+and+Love" rel="tag">FTP Fun and Love</a>, <a href="http://www.livejournal.com/interests.bml?int=IIS7.5+I+%3c3+you" rel="tag">IIS7.5 I &lt;3 you</a>, <a href="http://www.livejournal.com/interests.bml?int=Sweet+something+works" rel="tag">Sweet something works</a>, <a href="http://www.livejournal.com/interests.bml?int=Microsoft+is+funny" rel="tag">Microsoft is funny</a>, <a href="http://www.livejournal.com/interests.bml?int=Gangsta-Geek" rel="tag">Gangsta-Geek</a></div>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:ec6df5f3-588f-4afa-8e1f-fceeb0ea0a45" class="wlWriterEditableSmartContent">43 Things Tags: <a href="http://www.43things.com/tag/FTP+Fun+and+Love" rel="tag">FTP Fun and Love</a>, <a href="http://www.43things.com/tag/IIS7.5+I+%3c3+you" rel="tag">IIS7.5 I &lt;3 you</a>, <a href="http://www.43things.com/tag/Sweet+something+works" rel="tag">Sweet something works</a>, <a href="http://www.43things.com/tag/Microsoft+is+funny" rel="tag">Microsoft is funny</a>, <a href="http://www.43things.com/tag/Gangsta-Geek" rel="tag">Gangsta-Geek</a></div>
]]></content:encoded>
			<wfw:commentRss>http://mikedopp.com/index.php/2010/02/04/ftp-user-isolation-iis7-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hosting Media on IIS6? You will need these MIME types.</title>
		<link>http://mikedopp.com/index.php/2009/10/02/hosting-media-on-iis6-you-will-need-these-mime-types/</link>
		<comments>http://mikedopp.com/index.php/2009/10/02/hosting-media-on-iis6-you-will-need-these-mime-types/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 09:47:00 +0000</pubDate>
		<dc:creator>mikedopp</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[Interesting]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Flv]]></category>
		<category><![CDATA[IIS MIME Types]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Streaming Media MIME Types]]></category>

		<guid isPermaLink="false">http://mikedopp.com/index.php/hosting-media-on-iis6-you-will-need-these-mime-types/</guid>
		<description><![CDATA[Here is how to add two popular types streaming media (Flash and Silverlight). Flash (flv) If you are a Adobe geek and use IIS6 and you cannot fiqure out why a .FLV file will not render or you get the evil 404.3 error. Try this: Flash Streaming MIME: flv extension: .flv MIME type: flv-application/octet-stream To [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Here is how to add two popular types streaming media (Flash and Silverlight).</strong></p>
<p><strong></strong></p>
<p><strong>Flash (flv)</strong></p>
<p>If you are a Adobe geek and use IIS6 and you cannot fiqure out why a .FLV file will not render or you get the evil 404.3 error. Try this:</p>
<p>Flash Streaming MIME:    <br />flv     <br />extension: .flv     <br />MIME type: flv-application/octet-stream</p>
<p><strong>To add the MIME types to IIS6:</strong> </p>
<blockquote><p>1. Choose your website in IIS      <br />2. Open the context menu and choose &quot;Properties&quot;       <br />3. Select the register &quot;HTTP-Header&quot;       <br />4. Click on the button labeled &quot;MIME Types&#8230;&quot;       <br />5. If .flv is not yet listed as a type, choose &quot;New&quot;       <br />6. Enter the following description:       <br />Extension: <strong>.flv</strong></p>
<p>MIME type: flv-application/octet-stream7. </p>
<p>7.Click &quot;Ok&quot;,      <br />8. Choose &quot;Apply&quot; and you&#8217;re set!</p>
</blockquote>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong></strong></p>
<p><strong>Silverlight</strong></p>
<p>If you want to host <a href="http://silverlight.net/">Silverlight</a> on a web server that isn&#8217;t IIS7, such as IIS6 which is the second best web server in the world (2nd to IIS7 <img src='http://mikedopp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ) you&#8217;ll need to add the MIME types to support the correct content type interpretation by the browser. In the case of <a href="http://silverlight.net/">Silverlight</a> this is the XAML content type &#8211; this also goes for WPF hosting as well. IIS7 has these MIME types already added but if they&#8217;re not there this will result in errors such as 404.3 and prompting to download etc.</p>
<p>There are 3 MIME types required</p>
<li>.xaml&#160;&#160;&#160; application/xaml+xml </li>
<li>.xap&#160;&#160;&#160;&#160; application/x-silverlight-app </li>
<li>.xbap&#160;&#160;&#160; application/x-ms-xbap
<p><strong>To add the MIME types to IIS6:</strong></p>
<blockquote><p>1. Choose your website in IIS        <br />2. Open the context menu and choose &quot;Properties&quot;         <br />3. Select the register &quot;HTTP-Header&quot;         <br />4. Click on the button labeled &quot;MIME Types&#8230;&quot;         <br />5. If .xaml is not yet listed as a type, choose &quot;New&quot;         <br />6. Enter the following description:         <br />Extension: <strong>.xaml</strong>         <br />MIME type: <strong>application/xaml+xml</strong>         <br />7. Click &quot;Ok&quot;,         <br />8. Got to 5 and add xap and xbap as above then goto 9 <img src='http://mikedopp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />          <br />9. Choose &quot;Apply&quot; and you&#8217;re set!</p>
</blockquote>
<p>As a bonus if your an Iphone user you can also add this to your Mime types so that your Iphone can get updates from an IIS6 web site:</p>
<p> 
<p>iPhone config file:      <br />extension:.mobileconfig       <br />MIME type: application/x-apple-aspen-config</p>
</li>
<p>&#160;</p>
<p>&#160;</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:98c2e836-1934-418a-84a7-caaff745628e" class="wlWriterEditableSmartContent">Flickr Tags: <a href="http://flickr.com/photos/tags/IIS6+MIME+types" rel="tag">IIS6 MIME types</a>, <a href="http://flickr.com/photos/tags/Streaming+Media+MIME+Types" rel="tag">Streaming Media MIME Types</a>, <a href="http://flickr.com/photos/tags/IIS6+needs+a+serious+service+pack+update" rel="tag">IIS6 needs a serious service pack update</a>, <a href="http://flickr.com/photos/tags/Woot+IIS6+MIME+Types" rel="tag">Woot IIS6 MIME Types</a></div>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:5e0f362c-f8e5-4b57-bc6b-f2bbedb2ee18" class="wlWriterEditableSmartContent">BuzzNet Tags: <a href="http://www.buzznet.com/tags/IIS6+MIME+types/" rel="tag">IIS6 MIME types</a>, <a href="http://www.buzznet.com/tags/Streaming+Media+MIME+Types/" rel="tag">Streaming Media MIME Types</a>, <a href="http://www.buzznet.com/tags/IIS6+needs+a+serious+service+pack+update/" rel="tag">IIS6 needs a serious service pack update</a>, <a href="http://www.buzznet.com/tags/Woot+IIS6+MIME+Types/" rel="tag">Woot IIS6 MIME Types</a></div>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:0fa7c8ad-f338-47e3-8585-b802a23c1e13" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/IIS6+MIME+types" rel="tag">IIS6 MIME types</a>, <a href="http://technorati.com/tags/Streaming+Media+MIME+Types" rel="tag">Streaming Media MIME Types</a>, <a href="http://technorati.com/tags/IIS6+needs+a+serious+service+pack+update" rel="tag">IIS6 needs a serious service pack update</a>, <a href="http://technorati.com/tags/Woot+IIS6+MIME+Types" rel="tag">Woot IIS6 MIME Types</a></div>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:5eff8f52-4fe9-4394-8eed-eac65f4a6b95" class="wlWriterEditableSmartContent">del.icio.us Tags: <a href="http://del.icio.us/popular/IIS6+MIME+types" rel="tag">IIS6 MIME types</a>, <a href="http://del.icio.us/popular/Streaming+Media+MIME+Types" rel="tag">Streaming Media MIME Types</a>, <a href="http://del.icio.us/popular/IIS6+needs+a+serious+service+pack+update" rel="tag">IIS6 needs a serious service pack update</a>, <a href="http://del.icio.us/popular/Woot+IIS6+MIME+Types" rel="tag">Woot IIS6 MIME Types</a></div>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:42e856b0-2866-4845-beac-dc1a058c0e7d" class="wlWriterEditableSmartContent">IceRocket Tags: <a href="http://blogs.icerocket.com/search?q=IIS6+MIME+types" rel="tag">IIS6 MIME types</a>, <a href="http://blogs.icerocket.com/search?q=Streaming+Media+MIME+Types" rel="tag">Streaming Media MIME Types</a>, <a href="http://blogs.icerocket.com/search?q=IIS6+needs+a+serious+service+pack+update" rel="tag">IIS6 needs a serious service pack update</a>, <a href="http://blogs.icerocket.com/search?q=Woot+IIS6+MIME+Types" rel="tag">Woot IIS6 MIME Types</a></div>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:3a28fb58-ccd0-487c-bf44-fbe267035f09" class="wlWriterEditableSmartContent">LiveJournal Tags: <a href="http://www.livejournal.com/interests.bml?int=IIS6+MIME+types" rel="tag">IIS6 MIME types</a>, <a href="http://www.livejournal.com/interests.bml?int=Streaming+Media+MIME+Types" rel="tag">Streaming Media MIME Types</a>, <a href="http://www.livejournal.com/interests.bml?int=IIS6+needs+a+serious+service+pack+update" rel="tag">IIS6 needs a serious service pack update</a>, <a href="http://www.livejournal.com/interests.bml?int=Woot+IIS6+MIME+Types" rel="tag">Woot IIS6 MIME Types</a></div>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:cb6c9700-d6c2-426c-b47d-68a92970b24b" class="wlWriterEditableSmartContent">43 Things Tags: <a href="http://www.43things.com/tag/IIS6+MIME+types" rel="tag">IIS6 MIME types</a>, <a href="http://www.43things.com/tag/Streaming+Media+MIME+Types" rel="tag">Streaming Media MIME Types</a>, <a href="http://www.43things.com/tag/IIS6+needs+a+serious+service+pack+update" rel="tag">IIS6 needs a serious service pack update</a>, <a href="http://www.43things.com/tag/Woot+IIS6+MIME+Types" rel="tag">Woot IIS6 MIME Types</a></div>
]]></content:encoded>
			<wfw:commentRss>http://mikedopp.com/index.php/2009/10/02/hosting-media-on-iis6-you-will-need-these-mime-types/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET Authentication, Authorization and Security Settings</title>
		<link>http://mikedopp.com/index.php/2009/06/19/asp-net-authentication-authorization-and-security-settings/</link>
		<comments>http://mikedopp.com/index.php/2009/06/19/asp-net-authentication-authorization-and-security-settings/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 09:07:00 +0000</pubDate>
		<dc:creator>mikedopp</dc:creator>
				<category><![CDATA[IIS]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://mikedopp.com/index.php/asp-net-authentication-authorization-and-security-settings/</guid>
		<description><![CDATA[ASP.NET Identity Matrix Summary: This document provides tables that illustrate, for a range of IIS authentication settings, the resultant identity that is obtained from each of the variables that maintain an IPrincipal and/or IIdentity object. (4 printed pages) Principal objects implement the IPrincipal interface and represent the security context of the user on whose behalf [...]]]></description>
			<content:encoded><![CDATA[<h5>ASP.NET Identity Matrix</h5>
<p><strong>Summary: </strong>This document provides tables that illustrate, for a range of IIS authentication settings, the resultant identity that is obtained from each of the variables that maintain an IPrincipal and/or IIdentity object. (4 printed pages)</p>
<p>Principal objects implement the <strong>IPrincipal</strong> interface and represent the security context of the user on whose behalf the code is running. The principal object includes the user&#8217;s identity (as a contained <strong>IIdentity</strong> object) and any roles to which the user belongs.</p>
<p>ASP.NET provides the following principal and identity object implementations: </p>
<ul>
<li><strong>WindowsPrincipal</strong> and <strong>WindowsIdentity</strong> objects represent users who have been authenticated with Windows authentication. With these objects, the role list is automatically obtained from the set of Windows groups to which the Windows user belongs. </li>
<li><strong>GenericPrincipal</strong> and <strong>GenericIdentity</strong> objects represent users who have been authenticated using Forms authentication or other custom authentication mechanisms. With these objects, the role list is obtained in a custom manner, typically from a database. </li>
<li><strong>FormsIdentity</strong> and <strong>PassportIdentity</strong> objects represent users who have been authenticated with Forms and Passport authentication respectively. </li>
</ul>
<p>The following tables illustrate, for a range of IIS authentication settings, the resultant identity that is obtained from each of the variables that maintain an <strong>IPrincipal</strong> and/or <strong>IIdentity</strong> object. The following abbreviations are used in the table: </p>
<ul>
<li><strong>HttpContext</strong> = <strong>HttpContext.Current.User</strong>, which<strong> </strong>returns an <strong>IPrincipal</strong> object that contains security information for the current Web request. This is the authenticated Web client. </li>
<li><strong>WindowsIdentity</strong> = <strong>WindowsIdentity.GetCurrent()</strong>, which returns the identity of the security context of the currently executing Win32 thread. </li>
<li><strong>Thread</strong> = <strong>Thread.CurrentPrincipal</strong> which returns the principal of the currently executing .NET thread which rides on top of the Win32 thread. </li>
</ul>
<blockquote><p><strong>Note</strong>&#160;&#160; With IIS 6.0 running on Windows Server 2003, the identity Matrix works except that the Machine\ASPNET identity is replaced with NT Authority\Network Service.</p>
</blockquote>
<p><strong> IIS anonymous authentication</strong></p>
<p><strong><a href="http://mikedopp.com/wp-content/uploads/2009/06/AnonymousAuthentication.png" rel="lightbox[374]"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="AnonymousAuthentication" border="0" alt="AnonymousAuthentication" src="http://mikedopp.com/wp-content/uploads/2009/06/AnonymousAuthentication_thumb.png" width="385" height="196" /></a> </strong></p>
<p><strong> IIS basic authentication</strong></p>
<p><strong><a href="http://mikedopp.com/wp-content/uploads/2009/06/IISbasicauthentication.png" rel="lightbox[374]"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="IIS basic authentication" border="0" alt="IIS basic authentication" src="http://mikedopp.com/wp-content/uploads/2009/06/IISbasicauthentication_thumb.png" width="388" height="207" /></a> </strong></p>
<p><strong> IIS digest authentication</strong></p>
<p><strong><a href="http://mikedopp.com/wp-content/uploads/2009/06/IISdigestauthentication.png" rel="lightbox[374]"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="IIS digest authentication" border="0" alt="IIS digest authentication" src="http://mikedopp.com/wp-content/uploads/2009/06/IISdigestauthentication_thumb.png" width="383" height="203" /></a> </strong></p>
<p><strong> IIS integrated Windows</strong></p>
<p><a href="http://mikedopp.com/wp-content/uploads/2009/06/IISIntegratedauthentications.png" rel="lightbox[374]"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="IIS Integrated authentications" border="0" alt="IIS Integrated authentications" src="http://mikedopp.com/wp-content/uploads/2009/06/IISIntegratedauthentications_thumb.png" width="389" height="197" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://mikedopp.com/index.php/2009/06/19/asp-net-authentication-authorization-and-security-settings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Commerce Server 2007: Determine the Service Pack (Lookup Script)</title>
		<link>http://mikedopp.com/index.php/2009/05/19/commerce-server-2007-determine-the-service-pack-lookup-script/</link>
		<comments>http://mikedopp.com/index.php/2009/05/19/commerce-server-2007-determine-the-service-pack-lookup-script/#comments</comments>
		<pubDate>Tue, 19 May 2009 11:36:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[Interesting]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[SQL/Database]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Commerce Server 2007]]></category>
		<category><![CDATA[Commerce Server 2007 Scripts]]></category>

		<guid isPermaLink="false">http://mikedopp.com/index.php/commerce-server-2007-determine-the-service-pack-lookup-script/</guid>
		<description><![CDATA[To those whom love Commerce Server 2007 as much as I do. Here is a little script to help you determine the Service Pack level of each database. use MSCS_Admin select s_PropertyName, s_Value From dbo.resourceProps .csharpcode, .csharpcode pre { font-size: small; color: black; font-family: consolas, "Courier New", courier, monospace; background-color: #ffffff; /*white-space: pre;*/ } .csharpcode [...]]]></description>
			<content:encoded><![CDATA[<p>To those whom love Commerce Server 2007 as much as I do. Here is a little script to help you determine the Service Pack level of each database.</p>
<pre class="csharpcode"><span class="kwrd">use</span> MSCS_Admin
<span class="kwrd">select</span> s_PropertyName, s_Value
<span class="kwrd">From</span> dbo.resourceProps</pre>
<style type="text/css">
<p>.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
</p>
<p>This will return multiple values. This is helpful in knowing if you have Commerce Server 2007 installed correctly as well as helping you to identify the correct service pack upgrade number per database.</p>
<h3>SP1</h3>
<p>Transaction Database = 7.0 </p>
<p>Transaction Config Database = 7.0</p>
<p>Product Catalog Database = 7.2</p>
<p>Inventory Database = 7.1</p>
<p>Direct Mailer Database = 6.0</p>
<p>&#160;</p>
<h3>SP2</h3>
<p>Transaction Database = 7.1 </p>
<p>Transaction Config Database = 7.1</p>
<p>Product Catalog Database = 7.3</p>
<p>Inventory Database = 7.2</p>
<p>Direct Mailer Database = 6.0</p>
<p>&#160;</p>
<p>Enjoy!</p>
<p>&#160;</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:81934b2f-f4e2-4da0-ad95-be2ca132d3b6" class="wlWriterEditableSmartContent">Flickr Tags: <a href="http://flickr.com/photos/tags/Commerce+Server+2007+Install+Scripts" rel="tag">Commerce Server 2007 Install Scripts</a>, <a href="http://flickr.com/photos/tags/Commerce+Server+2007" rel="tag">Commerce Server 2007</a>, <a href="http://flickr.com/photos/tags/Commerce+Server+2007+Scripts" rel="tag">Commerce Server 2007 Scripts</a></div>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:6702d677-47cc-454a-ada7-1dcecb1474a7" class="wlWriterEditableSmartContent">BuzzNet Tags: <a href="http://www.buzznet.com/tags/Commerce+Server+2007+Install+Scripts/" rel="tag">Commerce Server 2007 Install Scripts</a>, <a href="http://www.buzznet.com/tags/Commerce+Server+2007/" rel="tag">Commerce Server 2007</a>, <a href="http://www.buzznet.com/tags/Commerce+Server+2007+Scripts/" rel="tag">Commerce Server 2007 Scripts</a></div>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:358043c9-78d1-4f99-8be5-7d54ec9e927d" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/Commerce+Server+2007+Install+Scripts" rel="tag">Commerce Server 2007 Install Scripts</a>, <a href="http://technorati.com/tags/Commerce+Server+2007" rel="tag">Commerce Server 2007</a>, <a href="http://technorati.com/tags/Commerce+Server+2007+Scripts" rel="tag">Commerce Server 2007 Scripts</a></div>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:0645d003-5d2a-4ddf-a527-8645bd88b15c" class="wlWriterEditableSmartContent">del.icio.us Tags: <a href="http://del.icio.us/popular/Commerce+Server+2007+Install+Scripts" rel="tag">Commerce Server 2007 Install Scripts</a>, <a href="http://del.icio.us/popular/Commerce+Server+2007" rel="tag">Commerce Server 2007</a>, <a href="http://del.icio.us/popular/Commerce+Server+2007+Scripts" rel="tag">Commerce Server 2007 Scripts</a></div>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:3a198f3b-5392-4b57-acc1-a782271afdf4" class="wlWriterEditableSmartContent">IceRocket Tags: <a href="http://blogs.icerocket.com/search?q=Commerce+Server+2007+Install+Scripts" rel="tag">Commerce Server 2007 Install Scripts</a>, <a href="http://blogs.icerocket.com/search?q=Commerce+Server+2007" rel="tag">Commerce Server 2007</a>, <a href="http://blogs.icerocket.com/search?q=Commerce+Server+2007+Scripts" rel="tag">Commerce Server 2007 Scripts</a></div>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:4ab6b8e6-fd6a-4144-b8f1-4dfe64b67d81" class="wlWriterEditableSmartContent">LiveJournal Tags: <a href="http://www.livejournal.com/interests.bml?int=Commerce+Server+2007+Install+Scripts" rel="tag">Commerce Server 2007 Install Scripts</a>, <a href="http://www.livejournal.com/interests.bml?int=Commerce+Server+2007" rel="tag">Commerce Server 2007</a>, <a href="http://www.livejournal.com/interests.bml?int=Commerce+Server+2007+Scripts" rel="tag">Commerce Server 2007 Scripts</a></div>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:b3738269-0dec-482a-bae1-a9f28951bd39" class="wlWriterEditableSmartContent">43 Things Tags: <a href="http://www.43things.com/tag/Commerce+Server+2007+Install+Scripts" rel="tag">Commerce Server 2007 Install Scripts</a>, <a href="http://www.43things.com/tag/Commerce+Server+2007" rel="tag">Commerce Server 2007</a>, <a href="http://www.43things.com/tag/Commerce+Server+2007+Scripts" rel="tag">Commerce Server 2007 Scripts</a></div>
]]></content:encoded>
			<wfw:commentRss>http://mikedopp.com/index.php/2009/05/19/commerce-server-2007-determine-the-service-pack-lookup-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shutdown Server Services on your Server</title>
		<link>http://mikedopp.com/index.php/2009/05/15/shutdown-server-services-on-your-server/</link>
		<comments>http://mikedopp.com/index.php/2009/05/15/shutdown-server-services-on-your-server/#comments</comments>
		<pubDate>Fri, 15 May 2009 10:55:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IIS]]></category>
		<category><![CDATA[Interesting]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Web Services]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://mikedopp.com/index.php/shutdown-server-services-on-your-server/</guid>
		<description><![CDATA[Um&#160; so you know its your dream to use windows server 2003/2008 as your desktop Operating system right? So most of you just said no. However for the small amount that might just be curious here is a little script to stop installed server applications built into these server installs. &#160; @echo off :start set [...]]]></description>
			<content:encoded><![CDATA[<p>Um&nbsp; so you know its your dream to use windows server 2003/2008 as your desktop Operating system right? So most of you just said no. However for the small amount that might just be curious here is a little script to stop installed server applications built into these server installs.</p>
<p>&nbsp;</p>
<pre class="csharpcode">@echo off

    :start
    <span class="kwrd">set</span> /p _input=<span class="str">"Server? [y/n]"</span>

    <span class="kwrd">if</span> %_input% equ y (
        echo Starting server services…
        sc start HTTPFilter     <span class="rem">REM HTTP SSL</span>
        sc start IISADMIN        <span class="rem">REM IIS Admin</span>
        sc start lanmanserver    <span class="rem">REM Server</span>
        sc start MSSQLSERVER    <span class="rem">REM SQL Server</span>
        sc start SQLBrowser        <span class="rem">REM SQL Server Browser</span>
        sc start SQLWriter        <span class="rem">REM SQL Server VSS Writer</span>
        sc start W3SVC            <span class="rem">REM World Wide Web Publishing</span>
        sc start WebClient        <span class="rem">REM WebClient</span>

        <span class="kwrd">set</span> /p =<span class="str">"Hit any key to continue…"</span>
    ) <span class="kwrd">else</span> (
        echo STOPPING server services…
        sc <span class="kwrd">stop</span> HTTPFilter
        sc <span class="kwrd">stop</span> IISADMIN
        sc <span class="kwrd">stop</span> lanmanserver
        sc <span class="kwrd">stop</span> MSSQLSERVER
        sc <span class="kwrd">stop</span> SQLBrowser
        sc <span class="kwrd">stop</span> SQLWriter
        sc <span class="kwrd">stop</span> W3SVC
        sc <span class="kwrd">stop</span> WebClient

        <span class="kwrd">set</span> /p =<span class="str">"Hit any key to continue…"</span>
    )

    :end</pre>
<pre class="csharpcode">&nbsp;</pre>
<pre class="csharpcode">&nbsp;</pre>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:237cf689-06e6-4d0c-bd32-b0168c2bfcf1" class="wlWriterSmartContent">Flickr Tags: <a href="http://flickr.com/photos/tags/Shutdown+Server" rel="tag">Shutdown Server</a>, <a href="http://flickr.com/photos/tags/Turn+off+services" rel="tag">Turn off services</a>, <a href="http://flickr.com/photos/tags/Scripting+Fun" rel="tag">Scripting Fun</a></div>
<style type="text/css">
<p>.csharpcode, .csharpcode pre
{
	font-size: small;
	color: black;
	font-family: consolas, "Courier New", courier, monospace;
	background-color: #ffffff;
	/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt
{
	background-color: #f4f4f4;
	width: 100%;
	margin: 0em;
}
.csharpcode .lnum { color: #606060; }</style>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:235a547b-6257-4de0-9520-12ffac0d39db" class="wlWriterSmartContent">BuzzNet Tags: <a href="http://www.buzznet.com/tags/Shutdown+Server/" rel="tag">Shutdown Server</a>, <a href="http://www.buzznet.com/tags/Turn+off+services/" rel="tag">Turn off services</a>, <a href="http://www.buzznet.com/tags/Scripting+Fun/" rel="tag">Scripting Fun</a></div>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:80e2399a-d4d8-4d7c-92a6-543ae8e559c7" class="wlWriterSmartContent">Technorati Tags: <a href="http://technorati.com/tags/Shutdown+Server" rel="tag">Shutdown Server</a>, <a href="http://technorati.com/tags/Turn+off+services" rel="tag">Turn off services</a>, <a href="http://technorati.com/tags/Scripting+Fun" rel="tag">Scripting Fun</a></div>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:3bdc2922-9693-40d2-bc94-13eb1f179f46" class="wlWriterSmartContent">del.icio.us Tags: <a href="http://del.icio.us/popular/Shutdown+Server" rel="tag">Shutdown Server</a>, <a href="http://del.icio.us/popular/Turn+off+services" rel="tag">Turn off services</a>, <a href="http://del.icio.us/popular/Scripting+Fun" rel="tag">Scripting Fun</a></div>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:aad6b6fd-49ce-49ba-8acf-a842acc3e0e9" class="wlWriterSmartContent">IceRocket Tags: <a href="http://blogs.icerocket.com/search?q=Shutdown+Server" rel="tag">Shutdown Server</a>, <a href="http://blogs.icerocket.com/search?q=Turn+off+services" rel="tag">Turn off services</a>, <a href="http://blogs.icerocket.com/search?q=Scripting+Fun" rel="tag">Scripting Fun</a></div>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:f42768b9-e176-4db3-81d9-85c3c0c4a95f" class="wlWriterSmartContent">LiveJournal Tags: <a href="http://www.livejournal.com/interests.bml?int=Shutdown+Server" rel="tag">Shutdown Server</a>, <a href="http://www.livejournal.com/interests.bml?int=Turn+off+services" rel="tag">Turn off services</a>, <a href="http://www.livejournal.com/interests.bml?int=Scripting+Fun" rel="tag">Scripting Fun</a></div>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:c9811a34-ed10-4478-8b34-bfed0051f2d4" class="wlWriterSmartContent">43 Things Tags: <a href="http://www.43things.com/tag/Shutdown+Server" rel="tag">Shutdown Server</a>, <a href="http://www.43things.com/tag/Turn+off+services" rel="tag">Turn off services</a>, <a href="http://www.43things.com/tag/Scripting+Fun" rel="tag">Scripting Fun</a></div>
<div class="wlWriterHeaderFooter" style="text-align:right; margin:0px; padding:4px 0px 4px 0px;"><a href="http://digg.com/submit?url=http%3a%2f%2fmikedopp.com%2findex.php%2fshutdown-server-services-on-your-server%2f&amp;title=Shutdown+Server+Services+on+your+Server"><img src="http://digg.com/img/badges/16x16-digg-guy.png" width="16" height="16" alt="Digg This" title="Digg This" border="0" style="border: 0" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://mikedopp.com/index.php/2009/05/15/shutdown-server-services-on-your-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Testing and Editing SMTP Email without having a SMTP Server Running</title>
		<link>http://mikedopp.com/index.php/2009/04/06/testing-and-editing-smtp-email-without-having-a-smtp-server-running/</link>
		<comments>http://mikedopp.com/index.php/2009/04/06/testing-and-editing-smtp-email-without-having-a-smtp-server-running/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 04:53:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[Interesting]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Debug]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[SMTP]]></category>

		<guid isPermaLink="false">http://mikedopp.com/index.php/testing-and-editing-smtp-email-without-having-a-smtp-server-running/</guid>
		<description><![CDATA[Being a System Administrator as well as a Web Developer I run into issues with the Mail protocol SMTP. Things hang or people want their email better formatted. Or simply test out you spam messages you are going to blast before you well blast them. Of course you run into issues like is my ports [...]]]></description>
			<content:encoded><![CDATA[<p>Being a System Administrator as well as a Web Developer I run into issues with the Mail protocol SMTP. </p>
<p>Things hang or people want their email better formatted. Or simply test out you spam messages you are going to blast before you well blast them. </p>
<p>Of course you run into issues like is my ports open correctly, is the SMTP server setup to block relaying? Has my domain been blacklisted from spamming? </p>
<p>These kind of questions are important. While I can’t fix the blacklisting domain issue the rest is well my night job. </p>
<p>However during the day I develop lots and lots of web code and sometimes and most often these applications need a way to contact people via email, txt and so forth. </p>
<p>Being behind a great firewall and sending test email can be a long and drawn out process. I found a&#160; great application to do the SMTP testing for you inside you own localhost(127.0.0.1) Yes that is my localhost ip if you would like to “hack me” go ahead Ill wait.(if you don’t already know that is the IP of your pc).</p>
<h2><a href="http://invalidlogic.com/papercut/" target="_blank">PaperCut</a></h2>
<p>This little app allows you to send SMTP messages without sending them anywhere.</p>
<p><a href="http://mikedopp.com/wp-content/uploads/screenshot1.jpg" rel="lightbox[325]"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="screenshot1" border="0" alt="screenshot1" src="http://mikedopp.com/wp-content/uploads/screenshot1-thumb.jpg" width="482" height="269" /></a> </p>
<p>&#160;</p>
</p>
<p>Paper Cut is my favorite application for development. It allows me to debug the smtp messages without sending them to anyone.</p>
<p>&#160;</p>
<p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:f18fce62-acd2-4842-9c11-e1a94d629796" class="wlWriterSmartContent">Flickr Tags: <a href="http://flickr.com/photos/tags/Test+your+Email+without+emailing" rel="tag">Test your Email without emailing</a>, <a href="http://flickr.com/photos/tags/Cool+SMTP+hijacker" rel="tag">Cool SMTP hijacker</a>, <a href="http://flickr.com/photos/tags/PaperCut" rel="tag">PaperCut</a>, <a href="http://flickr.com/photos/tags/SMTP+Hijacker" rel="tag">SMTP Hijacker</a></div>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:ba367fa7-f82c-4dd4-8171-ba58fab129ec" class="wlWriterSmartContent">BuzzNet Tags: <a href="http://www.buzznet.com/tags/Test+your+Email+without+emailing/" rel="tag">Test your Email without emailing</a>, <a href="http://www.buzznet.com/tags/Cool+SMTP+hijacker/" rel="tag">Cool SMTP hijacker</a>, <a href="http://www.buzznet.com/tags/PaperCut/" rel="tag">PaperCut</a>, <a href="http://www.buzznet.com/tags/SMTP+Hijacker/" rel="tag">SMTP Hijacker</a></div>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:45aa4f24-82ea-47fc-ba30-23f667487df8" class="wlWriterSmartContent">Technorati Tags: <a href="http://technorati.com/tags/Test+your+Email+without+emailing" rel="tag">Test your Email without emailing</a>, <a href="http://technorati.com/tags/Cool+SMTP+hijacker" rel="tag">Cool SMTP hijacker</a>, <a href="http://technorati.com/tags/PaperCut" rel="tag">PaperCut</a>, <a href="http://technorati.com/tags/SMTP+Hijacker" rel="tag">SMTP Hijacker</a></div>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:c6c7297a-1335-459a-b7fb-644cb6722594" class="wlWriterSmartContent">del.icio.us Tags: <a href="http://del.icio.us/popular/Test+your+Email+without+emailing" rel="tag">Test your Email without emailing</a>, <a href="http://del.icio.us/popular/Cool+SMTP+hijacker" rel="tag">Cool SMTP hijacker</a>, <a href="http://del.icio.us/popular/PaperCut" rel="tag">PaperCut</a>, <a href="http://del.icio.us/popular/SMTP+Hijacker" rel="tag">SMTP Hijacker</a></div>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:d68c1cc5-c74c-45ce-89c1-b7771e703872" class="wlWriterSmartContent">IceRocket Tags: <a href="http://blogs.icerocket.com/search?q=Test+your+Email+without+emailing" rel="tag">Test your Email without emailing</a>, <a href="http://blogs.icerocket.com/search?q=Cool+SMTP+hijacker" rel="tag">Cool SMTP hijacker</a>, <a href="http://blogs.icerocket.com/search?q=PaperCut" rel="tag">PaperCut</a>, <a href="http://blogs.icerocket.com/search?q=SMTP+Hijacker" rel="tag">SMTP Hijacker</a></div>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:cf6246f8-44c2-4f07-8e7e-24583c395bee" class="wlWriterSmartContent">LiveJournal Tags: <a href="http://www.livejournal.com/interests.bml?int=Test+your+Email+without+emailing" rel="tag">Test your Email without emailing</a>, <a href="http://www.livejournal.com/interests.bml?int=Cool+SMTP+hijacker" rel="tag">Cool SMTP hijacker</a>, <a href="http://www.livejournal.com/interests.bml?int=PaperCut" rel="tag">PaperCut</a>, <a href="http://www.livejournal.com/interests.bml?int=SMTP+Hijacker" rel="tag">SMTP Hijacker</a></div>
</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:2439dacb-f6b7-47f8-97f5-1c48126b7c0a" class="wlWriterSmartContent">43 Things Tags: <a href="http://www.43things.com/tag/Test+your+Email+without+emailing" rel="tag">Test your Email without emailing</a>, <a href="http://www.43things.com/tag/Cool+SMTP+hijacker" rel="tag">Cool SMTP hijacker</a>, <a href="http://www.43things.com/tag/PaperCut" rel="tag">PaperCut</a>, <a href="http://www.43things.com/tag/SMTP+Hijacker" rel="tag">SMTP Hijacker</a></div>
<div class="wlWriterHeaderFooter" style="text-align:right; margin:0px; padding:4px 0px 4px 0px;"><a href="http://digg.com/submit?url=http%3a%2f%2fmikedopp.com%2findex.php%2ftesting-and-editing-smtp-email-without-having-a-smtp-server-running%2f&amp;title=Testing+and+Editing+SMTP+Email+without+having+a+SMTP+Server+Running"><img src="http://digg.com/img/badges/16x16-digg-guy.png" width="16" height="16" alt="Digg This" title="Digg This" border="0" style="border: 0" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://mikedopp.com/index.php/2009/04/06/testing-and-editing-smtp-email-without-having-a-smtp-server-running/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>niknak.org &#8211; IIsTrafficMonitor</title>
		<link>http://mikedopp.com/index.php/2007/07/19/niknakorg-iistrafficmonitor/</link>
		<comments>http://mikedopp.com/index.php/2007/07/19/niknakorg-iistrafficmonitor/#comments</comments>
		<pubDate>Thu, 19 Jul 2007 15:31:00 +0000</pubDate>
		<dc:creator>mikedopp</dc:creator>
				<category><![CDATA[Free]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[IIS Traffic Monitor]]></category>

		<guid isPermaLink="false">http://mikedopp.com/index.php/niknakorg-iistrafficmonitor/</guid>
		<description><![CDATA[Need to see how much bandwidth an IIS website has used in a given period of time? Do you want it now and free?&#160; Check this little app out. It comes from our friends at niknak.org. niknak.org &#8211; IIsTrafficMonitor &#160; Technorati Tags: IIS, IISTrafficMonitor, ASP.NET, WebServer, Microsoft Flickr Tags: IIS, IISTrafficMonitor, ASP.NET, WebServer, Microsoft BuzzNet [...]]]></description>
			<content:encoded><![CDATA[<p>Need to see how much bandwidth an IIS website has used in a given period of time?</p>
<p> Do you want it now and free?&#160; </p>
<p>Check this little app out.</p>
<p> It comes from our friends at niknak.org. </p>
<p><a href="http://weblogs.asp.net/pleloup/archive/2007/07/18/iis-traffic-monitor.aspx" target="_blank" rel="tag"></a><a href="http://mikedopp.com/wp-content/uploads/iistrafficmonitor-v100.png" rel="lightbox[125]"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="300" alt="IIsTrafficMonitor_v1.0.0.0" src="http://mikedopp.com/wp-content/uploads/iistrafficmonitor-v100-thumb.png" width="468" border="0" /></a>    </p>
<p>niknak.org &#8211; IIsTrafficMonitor </p>
</p>
<p>&#160;</p>
</p>
<p>
<div class="wlWriterSmartContent" id="0767317B-992E-4b12-91E0-4F059A8CECA8:d3148a33-8217-40d4-91cc-f23aae4587f1" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px">Technorati Tags: <a href="http://technorati.com/tags/IIS" rel="tag">IIS</a>, <a href="http://technorati.com/tags/IISTrafficMonitor" rel="tag">IISTrafficMonitor</a>, <a href="http://technorati.com/tags/ASP.NET" rel="tag">ASP.NET</a>, <a href="http://technorati.com/tags/WebServer" rel="tag">WebServer</a>, <a href="http://technorati.com/tags/Microsoft" rel="tag">Microsoft</a></div>
</p>
<div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:dccf4fc4-b36e-46c5-ba61-56e3a322aa65" style="padding-right: 0px; display: inline; padding-left: 0px; float: none; padding-bottom: 0px; margin: 0px; padding-top: 0px">Flickr Tags: <a href="http://flickr.com/photos/tags/IIS" rel="tag">IIS</a>, <a href="http://flickr.com/photos/tags/IISTrafficMonitor" rel="tag">IISTrafficMonitor</a>, <a href="http://flickr.com/photos/tags/ASP.NET" rel="tag">ASP.NET</a>, <a href="http://flickr.com/photos/tags/WebServer" rel="tag">WebServer</a>, <a href="http://flickr.com/photos/tags/Microsoft" rel="tag">Microsoft</a></div>
<div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:7bed2efa-588f-4d61-95c9-32f474d77258" style="padding-right: 0px; display: inline; padding-left: 0px; float: none; padding-bottom: 0px; margin: 0px; padding-top: 0px">BuzzNet Tags: <a href="http://www.buzznet.com/tags/IIS/" rel="tag">IIS</a>, <a href="http://www.buzznet.com/tags/IISTrafficMonitor/" rel="tag">IISTrafficMonitor</a>, <a href="http://www.buzznet.com/tags/ASP.NET/" rel="tag">ASP.NET</a>, <a href="http://www.buzznet.com/tags/WebServer/" rel="tag">WebServer</a>, <a href="http://www.buzznet.com/tags/Microsoft/" rel="tag">Microsoft</a></div>
<div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:a395f760-f045-42cf-be62-1a1c1cbc5a17" style="padding-right: 0px; display: inline; padding-left: 0px; float: none; padding-bottom: 0px; margin: 0px; padding-top: 0px">del.icio.us Tags: <a href="http://del.icio.us/popular/IIS" rel="tag">IIS</a>, <a href="http://del.icio.us/popular/IISTrafficMonitor" rel="tag">IISTrafficMonitor</a>, <a href="http://del.icio.us/popular/ASP.NET" rel="tag">ASP.NET</a>, <a href="http://del.icio.us/popular/WebServer" rel="tag">WebServer</a>, <a href="http://del.icio.us/popular/Microsoft" rel="tag">Microsoft</a></div>
<div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:5c410b00-6a90-4144-aad1-def9b24a4909" style="padding-right: 0px; display: inline; padding-left: 0px; float: none; padding-bottom: 0px; margin: 0px; padding-top: 0px">IceRocket Tags: <a href="http://blogs.icerocket.com/search?q=IIS" rel="tag">IIS</a>, <a href="http://blogs.icerocket.com/search?q=IISTrafficMonitor" rel="tag">IISTrafficMonitor</a>, <a href="http://blogs.icerocket.com/search?q=ASP.NET" rel="tag">ASP.NET</a>, <a href="http://blogs.icerocket.com/search?q=WebServer" rel="tag">WebServer</a>, <a href="http://blogs.icerocket.com/search?q=Microsoft" rel="tag">Microsoft</a></div>
<div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:471ea63d-3bee-4290-8bdd-8f451375d819" style="padding-right: 0px; display: inline; padding-left: 0px; float: none; padding-bottom: 0px; margin: 0px; padding-top: 0px">LiveJournal Tags: <a href="http://www.livejournal.com/interests.bml?int=IIS" rel="tag">IIS</a>, <a href="http://www.livejournal.com/interests.bml?int=IISTrafficMonitor" rel="tag">IISTrafficMonitor</a>, <a href="http://www.livejournal.com/interests.bml?int=ASP.NET" rel="tag">ASP.NET</a>, <a href="http://www.livejournal.com/interests.bml?int=WebServer" rel="tag">WebServer</a>, <a href="http://www.livejournal.com/interests.bml?int=Microsoft" rel="tag">Microsoft</a></div>
<div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:ff28c060-bf1a-43aa-8b5c-cb7d7908cda8" style="padding-right: 0px; display: inline; padding-left: 0px; float: none; padding-bottom: 0px; margin: 0px; padding-top: 0px">43 Things Tags: <a href="http://www.43things.com/tag/IIS" rel="tag">IIS</a>, <a href="http://www.43things.com/tag/IISTrafficMonitor" rel="tag">IISTrafficMonitor</a>, <a href="http://www.43things.com/tag/ASP.NET" rel="tag">ASP.NET</a>, <a href="http://www.43things.com/tag/WebServer" rel="tag">WebServer</a>, <a href="http://www.43things.com/tag/Microsoft" rel="tag">Microsoft</a></div>
<div class="wlWriterHeaderFooter" style="text-align:right; margin:0px; padding:4px 0px 4px 0px;"><a href="http://digg.com/submit?url=http%3a%2f%2fmikedopp.com%2findex.php%2fniknakorg-iistrafficmonitor%2f&amp;title=niknak.org+-+IIsTrafficMonitor"><img src="http://digg.com/img/badges/16x16-digg-guy.png" width="16" height="16" alt="Digg This" title="Digg This" border="0" style="border: 0" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://mikedopp.com/index.php/2007/07/19/niknakorg-iistrafficmonitor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
