views:

39

answers:

1

I have a sharepoint site. This contains site nubmer of sites and sub sites collections in it. There are few sites that are created and are not in use. Now my question is how can I find out these old sites and before going deleting it i need to archive it first.

Can any one tell me what is the best possible approach to do it?

+1  A: 

You could code up a Sitedeleting event handler that backs up and zips the site before deleting it. Another option is a timerjob that locks sites automatically after a certain period of not being used:

Site deleting event (part of MS's IT governance codeplex project)

timerjob

Colin