Hi
I am trying to run winrar from VB.NET. I do this:
Dim commando As String
commando = " E -y " + getbackupmap() + naam + " " + gettempmap()
commando = """" + getwinrar() + """" + commando
Dim p As Process = Process.Start(c ommando)
p.WaitForExit()
Now I get this error:
An unhandled exception of type 'System.Compone ntModel.Win32Ex ception'
occurred in system.dll
Additional information: The system cannot find the file specified
So this is the commando: C:\Program Files\winrar\Wi nRAR.exe" E -y
c:\Test\Backup\ UParchive_20060 303.zip C:\Test\temp\
When I do this in start-run it works... Am I missing something?
Thanks
Joris
I am trying to run winrar from VB.NET. I do this:
Dim commando As String
commando = " E -y " + getbackupmap() + naam + " " + gettempmap()
commando = """" + getwinrar() + """" + commando
Dim p As Process = Process.Start(c ommando)
p.WaitForExit()
Now I get this error:
An unhandled exception of type 'System.Compone ntModel.Win32Ex ception'
occurred in system.dll
Additional information: The system cannot find the file specified
So this is the commando: C:\Program Files\winrar\Wi nRAR.exe" E -y
c:\Test\Backup\ UParchive_20060 303.zip C:\Test\temp\
When I do this in start-run it works... Am I missing something?
Thanks
Joris
Comment