Jeevan Bhatt
Jeevan Bhatt

Reputation: 6101

How to check whether a website deployed in IIS 7.5 is being access by user or not?

We have deployed 5 websites (read only data) in IIS 7.5 on last month now we want to remove those website which are not accessed/used by users. We have a total of 10 websites on IIS 7.5.

We don't want to make any setting changes on deployed site, those are deployed on last year and we want to remove them is no one access in last 4 months. We have onlu logfolder in Inetpub so is there any reliable way to get it done.

Upvotes: 1

Views: 2418

Answers (2)

Imran Rizvi
Imran Rizvi

Reputation: 7438

Run PowerShell Script

write-host Getting performance counters ...

$perfCounterString = "\asp.net applications(__total__)\sessions active" 
$counter = get-counter -counter $perfCounterString 
$rawValue = $counter.CounterSamples[0].CookedValue 

write-host Session Count is $rawValue

See the following link for more details: Get running session count from IIS for my hosted Asp.Net web site

Upvotes: 0

Bob The Janitor
Bob The Janitor

Reputation: 20792

on the web server turn on logging, and see how much traffic you get

Upvotes: 1

Related Questions