private void button3_Click(object sender, EventArgs e) { IISInformation rd = new IISInformation(); rd.Show(); this.Close(); }
private void lbliis_Click(object sender, EventArgs e) { IISInformation iis = new IISInformation(); iis.Show(); this.Close(); }
public void Execute(bool isNormalExecution = true) { try { bool blnapperr = false; //do the code when bgv completes its work var _rootpath = Path.Combine(System.IO.Path.GetDirectoryName(Application.ExecutablePath), "Resources"); string script = Path.Combine(_rootpath, scriptName + ".ps1"); string scriptText = File.ReadAllText(script); StringBuilder sb = new StringBuilder(); var powershell = new PowerShellHelper(); var runspace = powershell.CreateRunSpace(Application.ExecutablePath, scriptName); runspace.Open(); Pipeline pipeline = runspace.CreatePipeline(); Command myCommand = new Command(scriptText, true); var hostName = new CommandParameter(null, FormElements.Credential.MachineHostName); var port = new CommandParameter(null, FormElements.Credential.MachinePortNumber); var sqlWindowsAuthParam = new CommandParameter(null, FormElements.Credential.SqlAuthMode); var sqlServerParam = new CommandParameter(null, FormElements.Credential.SqlInstanceName); var sqlUserName = new CommandParameter(null, FormElements.Credential.SqlUserName); var sqlPwd = new CommandParameter(null, FormElements.Credential.SqlPassword); myCommand.Parameters.Add(hostName); myCommand.Parameters.Add(port); if (FormElements.Credential.SqlAuthMode != "w") { sqlWindowsAuthParam = new CommandParameter(null, "network"); } myCommand.Parameters.Add(sqlWindowsAuthParam); myCommand.Parameters.Add(sqlServerParam); myCommand.Parameters.Add(sqlUserName); myCommand.Parameters.Add(sqlPwd); foreach (var item in FormElements.ApplicationInformation) { if (chklstApp.CheckedIndices.Contains(item.id)) { var param5 = new CommandParameter(null, 1); myCommand.Parameters.Add(param5); } else { var param5 = new CommandParameter(null, 0); myCommand.Parameters.Add(param5); } } pipeline.Commands.Add(myCommand); Collection <PSObject> results = pipeline.Invoke(); var errors = pipeline.Error; // CSV or Error file Generation code var generateCSV = new Csvhelper(); generateCSV.WriteOutput(Application.ExecutablePath, scriptName, results, pipeline, this.timeStamp, out blnapperr); // CSV or Error file Generation code if (blnapperr) { //MessageBox.Show("Error Occured.for more detail kindly check Application Log!!\r\n", "Error Message"); //return; } else { var profileHelper = new ProfileHelper(); profileHelper.SetBaseClassValues(FormElements); if (isNormalExecution) { profileHelper.SetProfileData <ApplicationModel>(Application.ExecutablePath, scriptName, FormElements, chklstApp); } } runspace.Close(); if (isNormalExecution) { Applicationlogs frmapplog = new Applicationlogs(); DialogResult dr = frmapplog.ShowDialog(this); if (dr == DialogResult.Cancel) { //this.Enabled = true; //ApplicationInformation objapp = new ApplicationInformation(); //objapp.Show(); //this.Close(); //frmapplog.Close(); } else if (dr == DialogResult.OK) { this.Enabled = true; IISInformation objfrm = new IISInformation(); objfrm.Show(); this.Close(); } } } catch (Exception ex) { MessageBox.Show("Error Occured.for more detail kindly check Application Log!!\r\n" + "\r\n" + ex.Message.ToString(), "Error Message"); } }