Microsoft
Software
Hardware
Network
Question : how to run dos command in vb.net2003 windows application coding?
how to run dos command in vb.net2003 windows application coding?
for example, I want to run the following command in dos command
dotnetfx.exe /q:a /c:"install /l /q"
what is the code ?
Answer : how to run dos command in vb.net2003 windows application coding?
Hope this helps you,
Dim p As Process
p = New Process()
p.StartInfo.FileName = "dotnetfx.exe"
p.StartInfo.Arguments = "/q:a /c:'install /l /q'"
p.Start()
you need to specify full path of the "dotnetfx.exe"
Random Solutions
How to build and send multiple tables using sp_send_dbmail
MessageBox with text box
Disable the right mouse button for pasting into a textbox
how to get the milliseconds from datetime in dotnetcompact framework
how can i send a diferent image to two monitors pluged to one computer with a VGA Splitter
change the language of datetime picker to spanish.
How to integrate FCKEditor with asp.net/C#
Run Advertised Programs
Immovable Form
Export Access Data to Excel Template Using VBA