Tagged Questions
The servermanager tag has no wiki summary.
2
votes
4answers
195 views
Adding features in Windows 2008 Server R2 in Server Manager programmatically
I am writing a program that needs .NET to run.
When I run it on Windows 2008 Server R2 it fails upon .NET 3.5 installation.
This is because in this version of Windows you can only install .NET 3.5 via ...
2
votes
1answer
610 views
How to revert an HttpError ConfigurationElement back to “Inherited” using IIS 7 API
Suppose I have the following <httpErrors> collection in a web.config:
<httpErrors>
</httpErrors>
Yep, nice 'n empty.
And in IIS 7, my HTTP errors page looks like this:
...
1
vote
1answer
104 views
ServerManager CommitChanges makes changes with a slight delay
i have a little problem with the ServerManager class (from the Microsoft.Web.Administration assembly) and i hope some of you can help me out.
Basically I need to create a new application inside a ...
1
vote
1answer
85 views
Validating virtual directory UNC Connection
I need to validate that the UNC connection credentials are valid and pass through authentication, for each virtual directory.
I'm using Microsoft.Web.Administration API to manage my IIS ...
1
vote
0answers
189 views
ServerManger exception: value cannot be null. Parameter name: type
I try to create instance of ServerManager (Microsoft.Web.Administration.dll) to get IIS Web Applications list. Code is running on the Windows 2008 Server, ASP.NET, IIS7.
IIS located on the same ...
0
votes
0answers
46 views
Reading Site.state with NETWORKSERVICE appPoolIdentity throws unauthorizedAccessException
I have a IIS7 management class that creates, updates and deletes sites using ServerManager. The application is running on a WindowsServer2008 using the networkservice as the appPoolIdentity. ...
0
votes
1answer
127 views
Intercepting IIS 7.0 Http requests without HttpModule (and not ISAPI)
I am working on a project that is based on the ability to 'intercept' incoming HTTP requests in IIS 7.0.
I only need some basic information on what URL's are being requested within IIS at the current ...