execute file .lnk in vb.net
i nee开发者_如何学Cd 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(pathToLink)
精彩评论