i need to execute a .lnk file in vb.net (lnk file that points at an exe file). how can i do?
shell("path/file.lnk")
don't works
thx you for help.
You didn't indicate your platform, but on Windows 7, use Process.Start to launch an application using a .lnk file:
Process.Start
.lnk
Process.Start(pathToLink)
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
2 years ago
viewed
411 times
active