chiners_68 0 Posted August 11, 2011 how do i go about getting the following to work in autoit? Set objShell = CreateObject("Shell.Application") Set objFolder = objShell.Namespace("\\Server\Share") Set objFolderItem = objFolder.ParseName("3OF9.ttf") objFolderItem.InvokeVerb("Install") it works in vb but need to add this to an exisiting Autoit script. Share this post Link to post Share on other sites
wakillon 404 Posted August 11, 2011 Try $objShell = ObjCreate("Shell.Application") $objFolder = $objShell.Namespace("\\Server\Share") $objFolderItem = $objFolder.ParseName("3OF9.ttf") $objFolderItem.InvokeVerb("Install") AutoIt 3.3.14.2 X86 - SciTE 3.6.0 - WIN 8.1 X64 - Other Example Scripts Share this post Link to post Share on other sites
MrMitchell 16 Posted August 11, 2011 (edited) how do i go about getting the following to work in autoit?Set objShell = CreateObject("Shell.Application")Set objFolder = objShell.Namespace("\\Server\Share")Set objFolderItem = objFolder.ParseName("3OF9.ttf")objFolderItem.InvokeVerb("Install")it works in vb but need to add this to an exisiting Autoit script.Pretty close to what you already have...Edit: Wakillon beat me haha Edited August 11, 2011 by MrMitchell Share this post Link to post Share on other sites