главным образом static пустое (args шнура [])
{
System.Diagnostics.Process p = новое System.Diagnostics.Process ();
p.StartInfo.WorkingDirectory = firebirdInstallationPath;
p.StartInfo.UseShellExecute = ложно;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.FileName = «gsec.exe»;
p.StartInfo.Arguments = «- добавьте prager - pw записывает»;
p.Start ();
p.WaitForExit ();
зашнуруйте выход = p.StandardOutput.ReadToEnd ();
}
|