Forum
Merhaba,
aşağıda hesap makinesini çalıştırdığım gibi ERP yazılımının bir uygulamasını çalıştırmam gerekiyor fakat bu uygulamayı domain ve/veya local Administrator kullanıcı adı ve parolasıyla çalıştıramadım.
private void button3_Click(object sender, EventArgs e)
{
process.Start("C:\\WINDOWS\\system32\\calc.exe");
}
Bilgisi olan arkadaşların cevabını bekliyorum. Tşk.
Merhaba,
aşağıda hesap makinesini çalıştırdığım gibi ERP yazılımının bir uygulamasını çalıştırmam gerekiyor fakat bu uygulamayı domain ve/veya local Administrator kullanıcı adı ve parolasıyla çalıştıramadım.
private void button3_Click(object sender, EventArgs e)
{
process.Start("C:\\WINDOWS\\system32\\calc.exe");
}
Bilgisi olan arkadaşların cevabını bekliyorum. Tşk.
Merhabalar,
C:\Windows\System32\calc.exe şeklinde olması gerekmiyor mu? Çift \\ (ters eğik çizgi 2 tane görünüyor kodunuzda)
System.Diagnostics.Process.Start("calc");
public static Process Start( string fileName, string arguments, string userName, SecureString password, string domain )
public static Process Start( string fileName, string arguments, string userName, SecureString password, string domain )
http://msdn.microsoft.com/en-us/library/system.diagnostics.process.start.aspx
Start(String, String, SecureString, String) | Starts a process resource by specifying the name of an application, a user name, a password, and a domain and associates the resource with a new Process component. | |
Start(String, String, String, SecureString, String) | Starts a process resource by specifying the name of an application, a set of command-line arguments, a user name, a password, and a domain and associates the resource with a new Process component. |
Start(String, String, SecureString, String) | Starts a process resource by specifying the name of an application, a user name, a password, and a domain and associates the resource with a new Process component. | |
Start(String, String, String, SecureString, String) | Starts a process resource by specifying the name of an application, a set of command-line arguments, a user name, a password, and a domain and associates the resource with a new Process component. |
Start(String, String, SecureString, String) | Starts a process resource by specifying the name of an application, a user name, a password, and a domain and associates the resource with a new Process component. | |
Start(String, String, String, SecureString, String) | Starts a process resource by specifying the name of an application, a set of command-line arguments, a user name, a password, and a domain and associates the resource with a new Process component. |
Merhabalar,
C:\Windows\System32\calc.exe şeklinde olması gerekmiyor mu? Çift \\ (ters eğik çizgi 2 tane görünüyor kodunuzda)
hocam buna escape sequences deniliyor. yani kaçış karakterleri diyebiliriz. bu tarz özel karakterleri girebilmek için yapılıyor. diğer türlü farklı anlamlar türetiyor. bunun yerine tırnak işaretinden önce '@' işareti koyarakta yapabiliriz. Böylece her karakterle özel olarka ilgilenmemiz gerekmez.
yani bunun gibi:
process.Start(@"C:\WINDOWS\system32\calc.exe");
Teşekkürler.tam olarak bunu arıyordum.
public static Process Start( string fileName, string arguments, string userName, SecureString password, string domain )
public static Process Start( string fileName, string arguments, string userName, SecureString password, string domain )http://msdn.microsoft.com/en-us/library/system.diagnostics.process.start.aspx
Start(String, String, SecureString, String) Starts a process resource by specifying the name of an application, a user name, a password, and a domain and associates the resource with a new Process component. Start(String, String, String, SecureString, String) Starts a process resource by specifying the name of an application, a set of command-line arguments, a user name, a password, and a domain and associates the resource with a new Process component.
Start(String, String, SecureString, String) Starts a process resource by specifying the name of an application, a user name, a password, and a domain and associates the resource with a new Process component. Start(String, String, String, SecureString, String) Starts a process resource by specifying the name of an application, a set of command-line arguments, a user name, a password, and a domain and associates the resource with a new Process component. Yukarıdaki linki inceler misin?
Start(String, String, SecureString, String) Starts a process resource by specifying the name of an application, a user name, a password, and a domain and associates the resource with a new Process component. Start(String, String, String, SecureString, String) Starts a process resource by specifying the name of an application, a set of command-line arguments, a user name, a password, and a domain and associates the resource with a new Process component.
.