Had an interesting question on http://forums.iis.net regarding FTP 7.5. There was a requirement to allow both local and domain users on the same FTP site. Here is the posting with the details http://forums.iis.net/t/1178738.aspx Enjoy, Steve Schofield…(read more)
Steve Schofield's Blog
I used this script to read a few months worth of my IIS logs to create a single log file. I used the single file for load testing with Web Application Stress tool. $a = gci -Path C:\inetpub\iislogs3.com\wwwlogs\test -Filter *.log foreach($file in $a)…(read more)
Steve Schofield's Blog
Background This is one of those posts that has been “years in the making”. I’ve been working with SMS / ConfigMgr 2007 since version 2.0. In my IT career, I’ve used SMS / ConfigMgr 2007 on the server side exclusively. Traditionally SMS / ConfigMgr has…(read more)
Steve Schofield's Blog
I try to keep track of UNC based posts in my “UNC” tag if it’s something that would help the community. http://forums.iis.net/p/1180183/1990052.aspx If you can provide assistance, that would be great. My intention is to setup some Linux and FreeBSD boxes…(read more)
Steve Schofield's Blog
Here is a thread on http://forums.iis.net that discusses Stress testing tools. There is a wide variety tools available. I personally use a powershell script to create a single log file, then load test with Web Application Stress tool (retired by Microsoft…(read more)
Steve Schofield's Blog
Every now and then, a thread will get my interest doing something different with IIS on http://forums.iis.net . I’ve never setup PERL within IIS even though I knew it was possible to host PERL. I figured what the heck, lets see if I can get it working…(read more)
Steve Schofield's Blog
I’ve been blogging for years, mainly with community server. I’ve had a desire to switch my blog over to my own domain, which currently is www.iislogs.com (the domain which sells IIS Logs program). I selected Orchard as it seemed different, fresh and challenging…(read more)
Steve Schofield's Blog
I received a post on the forums that I was suggested to make a blog post. Here is the original post : http://forums.iis.net/t/1178739.aspx Question: We have an asp.net public facing web solution. The solution users SqlMembershipProvider to authenticate…(read more)
Steve Schofield's Blog
Rackspace, a leading provider of hosted IT services, has been ranked 32 on FORTUNE’s 11th annual “100 Best Companies to Work For” list. This company uses our software.
Here is a function I used to unzip several files using PowerShell. function UnZipMe($zipfilename,$destination) { $shellApplication = new-object -com shell.application $zipPackage = $shellApplication.NameSpace($zipfilename) $destinationFolder = $shellApplication…(read more)
Steve Schofield's Blog