on that site http://www.eggheadcafe.com/community/vb6...script-to-change-printer-prope is an example strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!" _ & strComputer & "rootcimv2") Set colInstalledPrinters = objWMIService.ExecQuery _ ("Select * from Win32_PrinterConfiguration ") For Each objPrinter In colInstalledPrinters objPrinter.Duplex = True Next can anybody translate this to AutoIt ?