Sign In
Robert McMurray's Blog [MSFT]
IIS, FTP, WebDAV, FPSE, WMI, ADSI, ISAPI, ASP, FastCGI, etc. ;-)
Options
About
Email Blog Author
RSS for posts
Atom
OK
Search Blogs
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
BlogEngine.NET
FrontPage
FTP
IIS
IIS News Item
LogParser
Macros
Random Thoughts
Scripting
SharePoint
SSL
WebDAV
Windows Phone 7
Archive
Archives
February 2012
(2)
January 2012
(2)
December 2011
(2)
November 2011
(2)
October 2011
(4)
September 2011
(3)
August 2011
(1)
July 2011
(2)
June 2011
(2)
May 2011
(2)
April 2011
(2)
February 2011
(4)
January 2011
(2)
December 2010
(2)
October 2010
(1)
September 2010
(3)
August 2010
(3)
July 2010
(1)
May 2010
(3)
April 2010
(2)
March 2010
(3)
February 2010
(3)
January 2010
(1)
December 2009
(1)
November 2009
(1)
October 2009
(2)
September 2009
(6)
August 2009
(2)
July 2009
(4)
June 2009
(1)
May 2009
(1)
April 2009
(3)
March 2009
(1)
February 2009
(1)
January 2009
(2)
December 2008
(2)
November 2008
(1)
October 2008
(3)
September 2008
(3)
August 2008
(1)
June 2008
(1)
May 2008
(1)
April 2008
(2)
March 2008
(4)
February 2008
(2)
January 2008
(1)
December 2007
(2)
October 2007
(3)
September 2007
(1)
August 2007
(1)
July 2007
(2)
May 2007
(1)
April 2007
(2)
February 2007
(1)
January 2007
(1)
December 2006
(1)
November 2006
(6)
October 2006
(1)
September 2006
(1)
July 2006
(1)
May 2006
(1)
March 2006
(1)
February 2006
(2)
January 2006
(1)
December 2005
(1)
November 2005
(1)
MSDN Blogs
>
Robert McMurray's Blog [MSFT]
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Robert McMurray's Blog [MSFT]
Programmatically Flushing FTP Logs
Posted
5 days ago
by
robmcm
0
Comments
I had a great question from Scott Forsyth earlier today about programmatically flushing the logs for an FTP site. Scott had noticed that there was a FlushLog method listed on the following page in the IIS Configuration Reference: http://www.iis.net...
Robert McMurray's Blog [MSFT]
Using URL Rewrite to Insert Different Scripts Based on Browser Type
Posted
6 days ago
by
robmcm
0
Comments
I just stumbled across a piece of sample code that I had written several months ago for a coworker, and I thought that I'd share it with everyone. Here's the scenario: my coworker asked me if it was possible to have different client-side scripts inserted...
Robert McMurray's Blog [MSFT]
Advanced Log Parser Charts Part 2 - Using Gradient Colors for Area Charts
Posted
10 days ago
by
robmcm
0
Comments
In Part 2 of this series, I'll show you how to customize the area chart from Part 1 to show the chart area with a gradient. More specifically, there are three different chart gradient methods that we'll take a look at in this blog post: SetOneColorGradient...
Robert McMurray's Blog [MSFT]
Advanced Log Parser Charts Part 1 - Working With Configuration Scripts
Posted
11 days ago
by
robmcm
0
Comments
I recently had a situation where I wanted to customize the chart output from Log Parser, and after a bunch of research I eventually arrived at the conclusion that configuration scripts for create customized charts are probably the least-documented feature...
Robert McMurray's Blog [MSFT]
Storing IIS 7.5 WebDAV Properties in NTFS Alternate Data Streams
Posted
1 month ago
by
robmcm
0
Comments
Two months ago Microsoft published an update for the WebDAV module that shipped with IIS 7.5 in Windows 7 and Windows Server 2008 R2, and this update is documented in the Microsoft Knowledge Base article ID 2593591: FIX: A hotfix is available that...
Robert McMurray's Blog [MSFT]
Changing the Identity of the FTP 7 Extensibility Process
Posted
2 months ago
by
robmcm
0
Comments
Many IIS 7 FTP developers may not have noticed, but all custom FTP 7 extensibility providers execute through COM+ in a DLLHOST.exe process, which runs as NETWORK SERVICE by default. That being said, NETWORK SERVICE does not always have the right permissions...
Robert McMurray's Blog [MSFT]
FTP Clients - Recap
Posted
2 months ago
by
robmcm
0
Comments
Having written 10 blog posts in my series about FTP clients, I decided that it might be a good idea to recap some of the information that I have presented thus far. With that in mind, here is a quick recap of the entire series to date: Part 1: Web...
Robert McMurray's Blog [MSFT]
How to use Managed Code (C#) to create an FTP Home Directory Provider that is based on the Remote Client IP Address
Posted
3 months ago
by
robmcm
1
Comments
I recently had an interesting scenario that was presented to me by a customer: they had a business requirement where they needed to give the same username and password to a group of people, but they didn't want any two people to be able to see anyone...
Robert McMurray's Blog [MSFT]
FTP Clients - Part 10: FTP Voyager
Posted
3 months ago
by
robmcm
0
Comments
For this installment in my series about FTP Clients, I'd like to take a look at FTP Voyager from Rhino Software. For this blog I used FTP Voyager 15.2.0.17, and it is available from the following URL: http://www.ftpvoyager.com/ FTP Voyager is a...
Robert McMurray's Blog [MSFT]
Sending WebDAV Requests in .NET Revisited
Posted
3 months ago
by
robmcm
0
Comments
I recently spoke with a great customer in India, and he was experimenting with the code from my Sending WebDAV Requests in .NET blog post. He had a need to send the WebDAV LOCK/UNLOCK commands, so I wrote a quick addition to the code in my original blog...
Robert McMurray's Blog [MSFT]
How to create an HTML Application to configure your WebDAV Redirector settings
Posted
4 months ago
by
robmcm
0
Comments
I've mentioned in previous blog posts that I use the Windows WebDAV Redirector a lot. (And believe me, I use it a lot .) Having said that, there are a lot of registry settings that control how the Windows WebDAV Redirector operates, and I tend to tweak...
Robert McMurray's Blog [MSFT]
How to determine if FTP clients are using FTPS
Posted
4 months ago
by
robmcm
1
Comments
One of my colleagues here at Microsoft, Emmanuel Boersma , just reminded me of an email thread that we had several weeks ago, where a customer had asked him how they could tell if FTPS was being used on their FTP server. He had pointed out that when he...
Robert McMurray's Blog [MSFT]
How to Use Managed Code (C#) to Create an FTP Home Directory Provider for the Days of the Week
Posted
4 months ago
by
robmcm
0
Comments
I had a question from someone that had an interesting scenario: they had a series of reports that their manufacturing company generates on a daily basis, and they wanted to automate uploading those files over FTP from their factory to their headquarters...
Robert McMurray's Blog [MSFT]
FTP and LDAP - Part 2: How to Set Up an Active Directory Lightweight Directory Services (AD LDS) Server
Posted
4 months ago
by
robmcm
0
Comments
This blog is designed as a complement to my FTP and LDAP - Part 1: How to Use Managed Code (C#) to Create an FTP Authentication Provider that uses an LDAP Server blog post. In this second blog, I'll walk you through the steps to set up an Active Directory...
Robert McMurray's Blog [MSFT]
FTP and LDAP - Part 1: How to Use Managed Code (C#) to Create an FTP Authentication Provider that uses an LDAP Server
Posted
4 months ago
by
robmcm
0
Comments
Over the past few years I've created a series of authentication providers for the FTP 7.5 service that ships with Windows Server 2008 R2 and Windows 7, and is available for download for Windows Server 2008. Some of these authentication providers are available...
Robert McMurray's Blog [MSFT]
IIS 6: Setting up SSL - Appendix C: Processing a Certificate Request using Windows 2003 Certificate Services
Posted
6 months ago
by
robmcm
0
Comments
In this last appendix for my blog series about using SSL with IIS 6, I'll discuss processing a certificate request by using Windows 2003 Certificate Services. When you are running a certificate server for your network environment, you will need to physically...
Robert McMurray's Blog [MSFT]
IIS 6: Setting up SSL - Appendix B: Obtaining a Root Certificate from Windows Server 2003 Certificate Services
Posted
6 months ago
by
robmcm
0
Comments
In this second appendix for my blog series about using SSL with IIS 6, I'm going to discuss obtaining the root certificate from Windows Server 2003 Certificate Services. By way of explanation, obtaining a root certificate is one of the most important...
Robert McMurray's Blog [MSFT]
IIS 6: Setting up SSL - Appendix A: Installing Windows Server 2003 Certificate Services
Posted
6 months ago
by
robmcm
0
Comments
I needed to take a short break from my blog series about using SSL with IIS 6 in order to work on some other projects, but I wanted to finish the series by giving you a few appendices that give you some additional details that you might want to know if...
Robert McMurray's Blog [MSFT]
How to Create an Authentication Provider for FTP 7.5 using BlogEngine.NET's XML Membership Files
Posted
7 months ago
by
robmcm
3
Comments
I ran into an interesting situation recently with BlogEngine.NET that I thought would make a good blog post. Here's the background for the environment : I host several blog sites for friends of mine, and they BlogEngine.NET for their blogging engine...
Robert McMurray's Blog [MSFT]
How to add <clear/> or <remove/> Elements through Scripting
Posted
8 months ago
by
robmcm
0
Comments
I had a question recently where someone was trying to add < clear /> or < remove /> elements to a collection in their IIS 7 configuration settings. With that in mind, for today's blog I thought that I would discuss a couple of ways to add...
Robert McMurray's Blog [MSFT]
My SharePoint 2007 Custom Membership Provider Adventure
Posted
8 months ago
by
robmcm
0
Comments
Sometime last year I wanted to set up a SharePoint 2007 website for my family members to exchange information. That being said, I was using a custom membership provider, and I ran into a few issues while I was setting things up. I had kept detailed notes...
Robert McMurray's Blog [MSFT]
Cascading Style Sheet (CSS) Color Negatizing Script
Posted
8 months ago
by
robmcm
0
Comments
The Customer Scenario I ran into an interesting situation recently - I host a website for a friend of mine, and he was shopping around for a new website template. He found one that he liked, but he didn't like the colors. In fact, he wanted the exact...
Robert McMurray's Blog [MSFT]
Bad Characters to Use in Web-based Filenames
Posted
9 months ago
by
robmcm
0
Comments
My good friend Wade Hilmo recently posted an excellent blog titled " How IIS blocks characters in URLs " that discusses some of the internal workings for how IIS deals with several characters in file names that do not work well in URLs. Wade...
Robert McMurray's Blog [MSFT]
Credential Caching in FTP 7.0 and FTP 7.5
Posted
10 months ago
by
robmcm
0
Comments
I've seen a few situations where people that are using the FTP 7.0 and FTP 7.5 service have noticed that it takes a while for their password changes to be reflected by the FTP service. To put this another way, here are the typical symptoms that people...
Robert McMurray's Blog [MSFT]
IIS 6: Setting up SSL - Part 3: Installing the Certificate
Posted
11 months ago
by
robmcm
1
Comments
In part three of my series on setting up SSL on IIS 6, I'll describe the steps that are necessary to install an SSL certificate. Simply out of convenience I broke this process into two sections: Installing Your Certificate (Required) Verifying...
Page 1 of 6 (129 items)
1
2
3
4
5
»