Guest olbidux Posted June 20, 2005 Posted June 20, 2005 Hello, i've been searching in the forums how to add an internet favorite - did'nt get any answer. Any of the Autoit community could give me e clue ? The aim is to deploy an internet favorite over 500 workstations avoiding an unicode caracter not understood by Linux samba3.xx Thank you
Xavier Posted June 20, 2005 Posted June 20, 2005 Hello, i've been searching in the forums how to add an internet favorite - did'nt get any answer.Any of the Autoit community could give me e clue ?The aim is to deploy an internet favorite over 500 workstations avoiding an unicode caracter not understood by Linux samba3.xxThank you<{POST_SNAPBACK}>Hello,Is it an AutoIt related questions?You couls use either GPO, Logon script to manage IE favorite or maybe copy the shortcut in the user profile.Hope this helpXavier
Guest olbidux Posted June 20, 2005 Posted June 20, 2005 Hello I'll manage it through the userprofile Thanks
zipster Posted August 30, 2005 Posted August 30, 2005 I found this in vbs, and ran it through the vbs --> au3 converter, cleaned it up a bit and here you go!! Const $ADMINISTRATIVE_TOOLS = 6 $objShell = ObjCreate("Shell.Application") $objFolder = $objShell.Namespace($ADMINISTRATIVE_TOOLS) $objFolderItem = $objFolder.Self $objShell = ObjCreate("WScript.Shell") $strDesktopFld = $objFolderItem.Path $objURLShortcut = $objShell.CreateShortcut($strDesktopFld & "\Yahoo.url") $objURLShortcut.TargetPath = "http://www.yahoo.com" $objURLShortcut.Save()
CyberSlug Posted August 31, 2005 Posted August 31, 2005 A possible alternative: http://tinyurl.com/ Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now