views:

65

answers:

1

Our PC Tech's are having to go around our company and write down information about every PC within the company (OS, CPU Speed, Memory).

Is there any way to gather this information through ASP.Net? I know you can do it using Winforms, and i know there is also a security risk, but all that aside is it still possible?

+1  A: 

As I said in the comment, I'd recommend doing a query with AD on your domain. I had to do something similar to see all computers on the domain and who logged in. We created a login script that set the description of the computer to the current user. Anyway, if you'd like to do this, you can try this link to get some more information on creating the query in AD. HTH

TheCloudlessSky