Click here to Skip to main content
15,867,704 members
Home / Discussions / C#
   

C#

 
GeneralRe: Stepper motor control by using Fez mini Pin
Member 98108985-Feb-13 13:06
Member 98108985-Feb-13 13:06 
GeneralRe: Stepper motor control by using Fez mini Pin
Dave Kreskowiak5-Feb-13 5:12
mveDave Kreskowiak5-Feb-13 5:12 
Questionhow to make a movable button in c# Pin
mortezakazemi684-Feb-13 4:24
mortezakazemi684-Feb-13 4:24 
AnswerRe: how to make a movable button in c# Pin
Pete O'Hanlon4-Feb-13 4:59
subeditorPete O'Hanlon4-Feb-13 4:59 
JokeRe: how to make a movable button in c# Pin
Mycroft Holmes5-Feb-13 22:21
professionalMycroft Holmes5-Feb-13 22:21 
AnswerRe: how to make a movable button in c# Pin
Abhinav S4-Feb-13 5:42
Abhinav S4-Feb-13 5:42 
AnswerRe: how to make a movable button in c# Pin
Amir Mohammad Nasrollahi29-Jul-13 22:51
professionalAmir Mohammad Nasrollahi29-Jul-13 22:51 
QuestionUninstallation of msi file programatically Pin
NarVish4-Feb-13 0:27
NarVish4-Feb-13 0:27 
I could able to install msi file using below code and it installed sucessfully

C#
string path = @"C:\Projects\Debug\ELSWinServInstaller.msi"; 
Process process = Process.Start(path);
process.WaitForInputIdle();
process.WaitForExit(); 


I tried to uninstall the same using below code, but its not working.
C#
Process p = new Process();
p.StartInfo.FileName = "msiexec.exe";
p.StartInfo.Arguments = "/x \"C:\\Projects\\Debug\\ELSWinServInstaller.msi\"/qn";
p.Start(); 

Please let me know where I went wrong.
AnswerRe: Uninstallation of msi file programatically Pin
Eddy Vluggen4-Feb-13 0:30
professionalEddy Vluggen4-Feb-13 0:30 
General.Re: Uninstallation of msi file programatically Pin
NarVish4-Feb-13 0:37
NarVish4-Feb-13 0:37 
AnswerRe: .Re: Uninstallation of msi file programatically Pin
Eddy Vluggen4-Feb-13 7:46
professionalEddy Vluggen4-Feb-13 7:46 
AnswerRe: Uninstallation of msi file programatically Pin
Abhinav S4-Feb-13 1:02
Abhinav S4-Feb-13 1:02 
GeneralRe: Uninstallation of msi file programatically Pin
NarVish4-Feb-13 1:25
NarVish4-Feb-13 1:25 
AnswerRe: Uninstallation of msi file programatically Pin
Simon_Whale4-Feb-13 1:42
Simon_Whale4-Feb-13 1:42 
GeneralRe: Uninstallation of msi file programatically Pin
NarVish4-Feb-13 1:52
NarVish4-Feb-13 1:52 
AnswerRe: Uninstallation of msi file programatically Pin
Richard Deeming4-Feb-13 2:03
mveRichard Deeming4-Feb-13 2:03 
GeneralRe: Uninstallation of msi file programatically Pin
NarVish4-Feb-13 2:10
NarVish4-Feb-13 2:10 
QuestionPaging in ASP.NET C# Pin
HarshaKN3-Feb-13 22:51
HarshaKN3-Feb-13 22:51 
AnswerRe: Paging in ASP.NET C# Pin
Simon_Whale4-Feb-13 0:10
Simon_Whale4-Feb-13 0:10 
Questionform don't respond immiditly Pin
mohammadkaab3-Feb-13 21:52
mohammadkaab3-Feb-13 21:52 
AnswerRe: form don't respond immiditly Pin
OriginalGriff3-Feb-13 22:09
mveOriginalGriff3-Feb-13 22:09 
AnswerRe: form don't respond immiditly Pin
DaveyM694-Feb-13 2:20
professionalDaveyM694-Feb-13 2:20 
GeneralRe: form don't respond immiditly Pin
mohammadkaab5-Feb-13 22:50
mohammadkaab5-Feb-13 22:50 
GeneralRe: form don't respond immiditly Pin
DaveyM697-Feb-13 8:00
professionalDaveyM697-Feb-13 8:00 
QuestionCannot access string in System.String[] Pin
AmbiguousName3-Feb-13 21:06
AmbiguousName3-Feb-13 21:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.