I have a .Net 4.0 Windows application which requires access thru the firewall. I know about the netsh advfirewall firewall command, but I would like very much to have this program allowed at install time (the Click Once deployment).

How can I add this command to execute as a post install command, exectuing as Administrator - i.e. The person doing the install does not have to execute the netsh advfirewall command separately or does not have to go to the Firewall and manually add the program in the Allowed list.

I cannot find an area in Publish in Visual Studio 2010 to insert a post install command line execution.

link|improve this question
feedback

1 Answer

You can't have a post-install command. If you want to execute a command you'll need to do it from your application after it starts...

if (ApplicationDeployment.IsNetworkDeployed && ApplicationDeployment.CurrentDeployment.IsFirstRun)
{
    //run something    
}

There's no way you can force this to run as an Admin. It will run with the same privileges the user has.

link|improve this answer
Thanks Whatknott. So what you are saying is that ClickOnce deployment is limited, i.e. no way to configure an application install to add itself to the Firewall Allowed Programs list. – Rivers Edge Dec 22 '10 at 15:13
Correct. ClickOnce basically copies files from a server to a client and keeps them in sync when the server files are updated. That's it. There's a few limited things it can do (e.g. create a desktop shortcut), but beyond that it's limited. The simplicity of ClickOnce is both the best and the worst thing about it :). Unless your application changes regularly, you may just want to look at a tradition msi install. – whatknott Dec 23 '10 at 2:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.