December 2006 - Posts

0
Comments

IIS7 - post #25 - Debugging Vista / IIS7 using Integrated Mode app pool by steve schofield

Here is how-to enable debugging on Vista / IIS7, using an application pool in Integrated Mode. You can either use Visual Web Developer or Visual Studio 2005. Thanks Scott Guthrie / Rick Strahl for providing the steps on how-to do this. Assume you installed...
Filed under:
0
Comments

IIS7 - post #24 - Curious about running Vista and IIS7? by steve schofield

Article by Rick Strahl - http://www.code-magazine.com/Article.aspx?quickid=060103 Good Read... Steve Schofield Microsoft MVP - IIS
Filed under:
1
Comments

Logparser and finding information 'between two times' by steve schofield

I'm finding working with Logparser and dates is a bit involved. Here is a query I used to extract files between two times stored in W3SVC logs. logparser "select date,time,cs-uri-stem,sc-status,count(*) into out.txt from \\Server\wwwlogs\w3svcXXXXX...
Filed under:
5
Comments

IIS7 - post #23 - Vista and SMTP server. Where is it? by steve schofield

Where is my SMTP server on Vista? I'm not sure why more developers haven't asked this question. Simple, it is not included - http://blogs.iis.net/bills/archive/2006/09/18/IIS7-_2D00_-Vista-vs.-Longhorn-Server.aspx Here are a couple I've used on Vista...
Filed under: ,
0
Comments

IIS7 - post #22 - IIS7 and Powershell info by steve schofield

I've been reading up on Powershell and found a few articles on IIS7 related material. Using Powershell will be handy with IIS7 because of the new WMI provider. Also, check out my blog post on Powershell reference links.. An Introduction to Windows...
Filed under: ,
1
Comments

Powershell references by steve schofield

For the last few years, every holiday season I 'geek' on a particular technology. This year, Powershell has been generating a lot of buzz in the admin community. I decided to jump on the bandwagon and check out what this Powershell thing is about...
Filed under:
0
Comments

Extract TOP 10 - '500 errors' from IISLogs using Logparser by steve schofield

SELECT TOP 10 cs-uri-stem, sc-status, count(*) INTO filename_top10_500.csv FROM \\ServerName\PathToWWWlogs\w3svcSITEID\exYYMMDD.log where sc-status=500 group by cs-uri-stem,sc-status order by count(*) DESC"
Filed under:
2
Comments

Find top 10 requests using Log Parser. by steve schofield

I've been using Logparser and posting some common used Queries. SELECT TOP 10 cs-uri-stem, COUNT(*)FROM "REPLACE_WITH_PATH_TO_LOGFILES_IIS_formats_logs_exYYMMDD.log" GROUP BY cs-uri-stem ORDER BY COUNT(*) DESC
Filed under:
0
Comments

Web-based management tool for sql 2005. by steve schofield

A co-worker passed this along. Looks interesting. The First Web-Based Management Tool Specially Designed For SQL Server 2005 http://www.mylittleadmin.com/en/welcome.aspx
0
Comments

IIS7 - post #21 by steve schofield

It has been a week or so since reading up on IIS7. Training, using up my remaining vacation time cut down on my IIS geek time. Here is a few additional resources on IIS7. 'The place to start learning IIS7. TechCENTER on http://www.IIS.net http://www...
Filed under:
More Posts Next page »