chiners_68 Posted August 11, 2011 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.
wakillon Posted August 11, 2011 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.18.0 X86 - SciTE 5.5.7 - WIN 11 24H2 X64 - Other Examples Scripts
MrMitchell Posted August 11, 2011 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
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