Create Shortcut at your Desktop
by Installer on Jan.25, 2010, under Windows
This vbscript create automatically a shortcut at your Desktop
1 2 3 4 5 | set WshShell = WScript.CreateObject("WScript.Shell") strDesktop = WshShell.SpecialFolders("Desktop") set oUrlLink = WshShell.CreateShortcut(strDesktop & "\Install.gr") oUrlLink.TargetPath = "http://www.install.gr" oUrlLink.Save |
Related posts
Easy Internet Explorer Proxy Changer
by Installer on Jan.22, 2010, under Internet Explorer
Easy IE Easy Changer.
Notes:Windows XP : Test Completed Success
Windows 7 : Not Working
The Script
(continue reading…)
Related posts
Export PST from Microsoft Outlook 2003/2007
by Installer on Jan.22, 2010, under Microsoft Outlook
The Following code helpping users to Export PST file automaticaly.
Notes:Export Folder: “c:\Outlook”Outlook 2007: Test Completed Success
Outlook 2003: Not Tested yet
The Script