Estoy creando un acceso directo a mi aplicación desde VB.net, sin embargo falta una instrucción pues no se está haciendo bien.
Dim WSHShell As Object = CreateObject("WScript.Shell")
Dim DesktopDir As String = CType(WSHShell.SpecialFolders.Item("Desktop"), String)
Dim Shortcut As Object = WSHShell.CreateShortcut(DesktopDir & "\VS-SUPPORT.lnk")
Shortcut.IconLocation = "explorer.exe, 0"
Shortcut.Save()
¿Qué me falta?