.net - How do you validate an application's configuration? -
I want to run a system configuration check on an app machine where SQL connections, disk permissions for review of checks , And IP: Port access (i.e. the firewall is not blocking outgoing access) I am using Windows server machines and .NET framework if it makes a difference.
Can a standard way of verifying an application do all this? For example, maybe there is an app where I can specify each of these configuration files, drive the app, and get a position back.
Thank you! Ian
No, there is no standard method, you need to add a console application during the installation phase. Create a package that will step through this check phase and show a message in the console. I think this is the only way that is using .NET programming to embed custom steps in the installation package. Please tell me whether you will get any automation;)
Comments
Post a Comment