Hi,
its really simple...
cant run...
does run!
WHY???
im so confused...
it says file not found... but it REALLY is there...
Thanks already!
Gr,
Marco
its really simple...
VB.NET:
Dim myProcess As New Process()
Try
myProcess.StartInfo.UseShellExecute = False
myProcess.StartInfo.FileName = "C:\windows\system32\wuauclt.exe"
myProcess.Start()
Catch e As Exception
MsgBox((e.Message))
End Try
cant run...
VB.NET:
Dim myProcess As New Process()
Try
myProcess.StartInfo.UseShellExecute = False
myProcess.StartInfo.FileName = "C:\windows\system32\wuapp.exe"
myProcess.Start()
Catch e As Exception
MsgBox((e.Message))
End Try
does run!
WHY???
it says file not found... but it REALLY is there...
Thanks already!
Gr,
Marco