private void btnGenerateInstructions_Click(object sender, EventArgs e)
 {
     try
     {
         ProcessStartInfo pInfo = new ProcessStartInfo();
         pInfo.FileName        = _TemplateGenerator.OutputDirectory + _TemplateGenerator.GetDeployInstructionFilename();
         pInfo.UseShellExecute = true;
         Process p = Process.Start(pInfo);
     }
     catch (System.ComponentModel.Win32Exception)
     {
         MessageBox.Show("MigAz was unable to launch an application on your system to open '" + _TemplateGenerator.OutputDirectory + _TemplateGenerator.GetTemplateFilename() + "'.\r\n\r\nThis commonly indicates there is no program registered with Windows to open this file type.\r\n\r\nIt is recommended you browser for this file using Windows Explorer.  Right-click on the file, select 'Open With' then 'Choose another program'.  Select the program you would like to open the filetype and ensure the checkbox for 'always use this application to open' is selected.");
     }
 }