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
Treeview to XML code - not getting sub nodes correctly
sql question
how to schedule a daily task run stored procedure with sqlserver 2005
Data Loss & Recovery - FAT 16 - NTFS 160GB USB drive. Possible bad MBR or Partition Table
MiniDump not saving to C:\windows\minidump
KMS and MAK
Soundblaster PCI128 WIN2k driver issues
Runtime Error 424 "Object Required"
Combobox selectedvalue and selectedindex change unexpectedly
Programmaticaly close TCP Connection(s)