Set WSHShell = WScript.CreateObject("WScript.Shell")
strDeskTop = WSHShell.SpecialFolders("Desktop")

'Option 1 - Create a shortcut with command line arguments
Set objShortcutLnk = WSHShell.CreateShortcut(strDeskTop & "\Hiker.lnk")
objShortcutLnk.TargetPath = "C:\program files\hiker\hiker.exe"											
objShortcutLnk.Arguments = " /t:UNC /l:c:\hiker_conf.xml"	
objShortcutLnk.Save	


'Option 2 - Set the reg keys and create a shortcut
WSHShell.RegWrite "HKEY_CURRENT_USER\Software\we3soft\hiker\ConfigType", "UNC"
WSHShell.RegWrite "HKEY_CURRENT_USER\Software\we3soft\hiker\ConfigLocation", "c:\hiker_conf.xml"
Set objShortcutLnk = WSHShell.CreateShortcut(strDeskTop & "\Hiker.lnk")
objShortcutLnk.TargetPath = "C:\program files\hiker\hiker.exe"	
objShortcutLnk.Save	

