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
Recurring appointment creator no longer exists - how can I change the owner?
set system date and time from other PC
Cannot use Microsoft Word to edit messages in Outlook 2003
How do I allow remote desktop connections through an ISA 2004 Server?
MS Access Report expression for data control source as first day of current month
CTreeCtrl in MFC
Exchange 2007 and iPhone IMAP problem
find the number of years
Set Open/Run permissions for reports and queries using VBA
How to read field names from an XSD file.