Example of my usage ,
Private Sub btntransfer_Click(sender As Object, e As EventArgs) Handles btntransfer.Click
Process.Start("C:\Windows\System32\migwiz.lnk")
End Sub
These are working but when I want to use this windows applications"RecoveryDrive.exe , rstrui.exe , resmon.exe , dfrgui.exe " debugging is give me error.
Error : Unhandled Exception: System.ComponentModel.Win32Exception: The system cannot find the file specified at
System.Diagnostics.Process.StartWithShellExecuteEx(ProcessStartInfo startInfo) at
System.Diagnostics.Process.Start() at
System.Diagnostics.Process.Start(ProcessStartInfo startInfo)
How can I use these programs in my windows application form?