Reputation:
I was told that we had an old virtual machine that had the same problem and it was fixed by downloading and installing an "iis develepor toolset". Any idea what that "IIS developer toolset" might actually be?
IIS 7.0
This is on a windows 7 box trying to remote to a webserver and setup IIS.
DirectoryEntry rvd = forms_website.Children.Cast<DirectoryEntry>().First();
rvd.Properties["AFName"].Value = "Default Application";
Upvotes: 0
Views: 788
Reputation: 37523
0x80005006 (2174763162) is a generic IIS property error that is thrown for a LOT of reasons. The installation of a toolkit may easily have corrected a permission setting on an extension, updated a property in the metabase, etc. This would not be a directed fix so much as a lucky one as it is possible that the error being thrown was completely unrelated to the tool set, but the update corrected an ancillary issue.
Upvotes: 1