Vet någon hur man från Vb kan göra en genväg från t.ex. startmenyn till Enklast är nog att använda Windows Scripting Host, här är ett exempel från MSDN:Göra genväg
ett program, t.ex. C:\Program.exeSv: Göra genväg
<code>
'Create a WshShell Object
Set WshShell = Wscript.CreateObject("Wscript.Shell")
'Create a WshShortcut Object
Set oShellLink = WshShell.CreateShortcut("aaa.lnk")
'Set the Target Path for the shortcut
oShellLink.TargetPath = "notepad.exe"
'Set the additional parameters for the shortcut
oShellLink.Arguments = "c:\windows\desktop\aaa.txt"
'Save the shortcut
oShellLink.Save
'Clean up the WshShortcut Object
Set oShellLink = Nothing
</code>
Det finns även API funktioner för detta om du inte vill vara beroende av WScript.