C # kullanarak bir uygulamayı nasıl başlatabilirim?
Gereksinimler: Windows XP ve Windows Vista üzerinde çalışmalıdır .
Yalnızca Windows Vista'da çalışan DinnerNow.net örnekleyicisinden bir örnek gördüm.
C # kullanarak bir uygulamayı nasıl başlatabilirim?
Gereksinimler: Windows XP ve Windows Vista üzerinde çalışmalıdır .
Yalnızca Windows Vista'da çalışan DinnerNow.net örnekleyicisinden bir örnek gördüm.
Yanıtlar:
System.Diagnostics.Process.Start()
Yöntemi kullanın .
Nasıl kullanılacağı ile ilgili bu makaleye göz atın .
Process.Start("notepad", "readme.txt");
string winpath = Environment.GetEnvironmentVariable("windir");
string path = System.IO.Path.GetDirectoryName(
System.Windows.Forms.Application.ExecutablePath);
Process.Start(winpath + @"\Microsoft.NET\Framework\v1.0.3705\Installutil.exe",
path + "\\MyService.exe");
İşte size yardımcı kod pasajı:
using System.Diagnostics;
// Prepare the process to run
ProcessStartInfo start = new ProcessStartInfo();
// Enter in the command line arguments, everything you would enter after the executable name itself
start.Arguments = arguments;
// Enter the executable to run, including the complete path
start.FileName = ExeName;
// Do you want to show a console window?
start.WindowStyle = ProcessWindowStyle.Hidden;
start.CreateNoWindow = true;
int exitCode;
// Run the external process & wait for it to finish
using (Process proc = Process.Start(start))
{
proc.WaitForExit();
// Retrieve the app's exit code
exitCode = proc.ExitCode;
}
Bu nesnelerle yapabileceğiniz çok daha fazla şey var, belgeleri okumalısınız: ProcessStartInfo , Process .
PathTo*.exe
ama çalışmasını beklemem. (a) birden fazla eşleşme varsa ne olur? (b) Microsoft'un kodunun zayıf güvenlik olacağından buna izin vermeyeceğini umuyorum.
System.Diagnostics.Process.Start("PathToExe.exe");
Benim gibi System.Diagnostics kullanırken sorun yaşıyorsanız, onsuz çalışacak aşağıdaki basit kodu kullanın:
Process notePad = new Process();
notePad.StartInfo.FileName = "notepad.exe";
notePad.StartInfo.Arguments = "mytextfile.txt";
notePad.Start();
Process
System.Diagnostics'te.
Ayrıca, mümkünse yollarınız için Ortam Değişkenlerini kullanmak isteyeceksiniz: http://en.wikipedia.org/wiki/Environment_variable#Default_Values_on_Microsoft_Windows
ÖRNEĞİN
Daha uzun bir liste için daha birçok bağlantıyı kontrol edin.
Sadece file.exe dosyanızı \ bin \ Debug klasörüne koyun ve şunu kullanın:
Process.Start("File.exe");
Bunu dene:
Process.Start("Location Of File.exe");
(System.Diagnostics kitaplığını kullandığınızdan emin olun)