Reputation: 6101
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
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
Reputation: 20792
on the web server turn on logging, and see how much traffic you get
Upvotes: 1