Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 20th, 2012  |  syntax: None  |  size: 0.50 KB  |  hits: 10  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. ASP.NET MVC deployment in a form of distribution package
  2. Usage:
  3. --------------------------
  4. {0} [/T|/Y] [/M:ComputerName] [/U:UserName] [/P:Password] [/G:UseTempAgent] [Additional msdeploy.exe flags ...]
  5.        
  6. System.Diagnostics.Process proc = new System.Diagnostics.Process();
  7. const string filename = @"/*some file location*/";
  8. proc.StartInfo.FileName = filename;
  9. proc.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
  10. proc.StartInfo.CreateNoWindow = true;
  11. proc.Start();
  12. proc.WaitForExit();