1

Is there some way, e.g. through WMI, that I can query a box running IIS what web applications has been deployed to it using web-deploy?

Thanks in advance.

Cumbayah
  • 111
  • 3

2 Answers2

1

You can use web-deploy to -sync -whatif the whole server against a "standard" one, and that'll show you a list of differences.

If the Event Log shows Web Deploy deployments (does it?), and WMI can query the event logs, that might be more the level of detail you're looking for?

TristanK
  • 8,953
  • 2
  • 27
  • 39
  • Thanks for your feedback. Actually, what I'm after is not a delta of what's been installed since a given time, or in a given time interval, but a snap shot of what web applications are, right now, installed on the IIS server. – Cumbayah Apr 29 '11 at 08:33
0

You did not mention what version of IIS, but have you checked out the MSDN documentation on managing IIS via WMI?

songei2f
  • 1,924
  • 1
  • 20
  • 30