I download bootstrapper.exe from http://bootstrap.codeplex.com/, I manage to get it work in local IIS. At Application_Start() and use Process.Start()
But at Windows Azure, not work at all. I am sure file is there and no error message.
but no file download and unzipped. I tried both "local resource" folder or local folder
Does anyone here have a working code?
First of all you need to have the bootstrapper.exe as part of your project (Add -> Existing Item -> browse to the bootstrapper.exe & .config include both of them). For the properties of these files, you must set "Build Action" to "None" and "Copy to output directory" to "Copy always".
Now you can use following code to run the bootstrapper (I do it like that and it works):
Please note, that this is 100% tested and working code!