Как заставить BootStrapper.exe работать в Windows Azure? - PullRequest
0 голосов
/ 10 ноября 2011

Я загружаю bootstrapper.exe из http://bootstrap.codeplex.com/, Мне удается заставить его работать в локальном IIS.При Application_Start () и использовании Process.Start ()

Но в Windows Azure не работают вообще.Я уверен, что файл там, и нет сообщения об ошибке.

, но файл не загружен и разархивирован.Я пробовал и папку "локальный ресурс" или локальную папку

У кого-нибудь здесь есть рабочий код?

1 Ответ

1 голос
/ 11 ноября 2011

Прежде всего, вам нужно иметь bootstrapper.exe как часть вашего проекта (Add -> Existing Item -> перейдите к bootstrapper.exe & .config, включите их оба). Для свойств этих файлов вы должны установить «Build Action» на «None» и «Copy to output directory» на «Copy only».

Теперь вы можете использовать следующий код для запуска загрузчика (я делаю так, и он работает):

      internal void SomethingWithBootStrapper()
    {
        //
        Trace.TraceInformation("Trying to install agent...");
        ProcessStartInfo psi = new ProcessStartInfo();
        psi.FileName = System.IO.Path.Combine(System.IO.Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "bootstrapper.exe");
        psi.Arguments = @"-get http://some_url_to_download_something.com/path/to/file.zip -lr $lr(YourLocalResourceKeyHere) -unzip $lr(YourLocalResourceKeyHere)\extract -run $lr(YourLocalResourceKeyHere)\extract\Setup.exe  -args /some /args /for_the_setup.exe -block";
        Trace.WriteLine("Calling " + psi.FileName + " " + psi.Arguments + " ...");
        psi.CreateNoWindow = true;
        psi.ErrorDialog = false;
        psi.UseShellExecute = false;
        psi.WindowStyle = ProcessWindowStyle.Hidden;
        psi.RedirectStandardOutput = true;
        psi.RedirectStandardInput = false;
        psi.RedirectStandardError = true;
        // run elevated
        psi.Verb = "runas";
        try
        {
            // Start the process with the info we specified.
            // Call WaitForExit and then the using statement will close.
            using (Process exeProcess = Process.Start(psi))
            {
                exeProcess.PriorityClass = ProcessPriorityClass.High;
                string outString = string.Empty;
                // use ansynchronous reading for at least one of the streams
                // to avoid deadlock
                exeProcess.OutputDataReceived += (s, e) =>
                {
                    outString += e.Data;
                };
                exeProcess.BeginOutputReadLine();
                // now read the StandardError stream to the end
                // this will cause our main thread to wait for the
                // stream to close (which is when ffmpeg quits)
                string errString = exeProcess.StandardError.ReadToEnd();
                Trace.WriteLine(outString);
                Trace.TraceError(errString);
                this._isInitialized = true;
            }
        }
        catch (Exception e)
        {
            Trace.TraceError(e.Message);
            this._isInitialized = false;
        }
    }

Обратите внимание, что это 100% проверенный и рабочий код!

...