prazetto Posted February 25, 2013 Share Posted February 25, 2013 (edited) [this post are in deletion pending] User: See my signature for more info! AutoIT3 Virtualization UDF Virtual File, Virtual Registry, Dll Virtualization, ActiveX Virtualization Enable you to store file virtually in memory.Virtualizing program module like Dll, ActiveX Component and Etc. You can try virtualize Flash ActiveX and Flash Movie too. Ha.. Ha.. 3x At least you does not need MemoryDllCall again just use. DllOpen, DllCall, DllClose and Etc. There for example I create ActiveX component TColorBox in Delphi and virtualize it in AutoIt3. Attach Virtual File to another process Execute dot net application from virtual file and or embedded fileFunction ; Exports ; Virtual_ActiveXA ; Virtual_ActiveXW ; Virtual_DebugLog ; Virtual_AttachToProcess ; Virtual_DetachFromProcess ; Virtual_DirCreateA ; Virtual_DirCreateW ; Virtual_ExecuteDotNetA ; Virtual_ExecuteDotNetW ; Virtual_FileA ; Virtual_FileW ; Virtual_FileDeleteA ; Virtual_FileDeleteW ; Virtual_IsVirtualFileA ; Virtual_IsVirtualFileW ; Virtual_IsVirtualProcess ; Virtual_LibraryA ; Virtual_LibraryW ; Virtual_LogFileA ; Virtual_LogFileW ; Virtual_Option ; Virtual_ProcessOption ; Virtual_RegDelete ; Virtual_RegWrite ; Virtual_RegKeysEnumVirtualA ; Virtual_RegKeysEnumVirtualW ; Virtual_RegisterServer ; Virtual_UnregisterServer ; Virtual_VirtualGate ; Virtual_VirtualChild ; Virtual_VirtualDeamon Note Don't need call Virtual_RegisterServer if you using Virtual_ActiveXA and or Virtual_ActiveXW functionScreenshotArchive Choose which one server you will download the archive.autoit3vt.zip (www.autoitscript.com)Sample.LaunchEmbeddedExe^.zipLast Archive History #03 Attached File autoit3vt.zip 881.71K 95 downloads #02 Attached File autoit3vt.zip 830.67K 11 downloads #01 Attached File autoit3vt.zip 538.92K 27 downloads Yeah, you right Melba!I modified the AutoIT3 executable. Oh so it break the EULA. Now I have been updated the UDF. No executable again, just pure AutoIT3 script.Simple and Complex Implementation - Execute Executable or Dot Net App from embedded script. - Call Embedded Dynamic Link Library with native function DllOpen, DllCall, DllClose and etc (without MemoryDLLCall). - Using two or more different ActiveX version in one machine. - ActiveX sure have incompatible for some upward or backward you can by fix with virtualization. - Also automatically using ActiveX without installing it on machine and or without touching the real Windows Registry. - Good starting point to create application like PortableApps which can run on ROM like CD, DVD or Blueray Disk and or locked memory/USB Disk. - Analyze program by starting it in virtualization. What file and registry activity of program. Possibly for malware ana- lysis. - There wide range implementation of this. Search by ur'self. - Et catera.Take a look for my other post>Graphical AutoIt3 Control>GTK+ Framework | Widgets Edited July 26, 2014 by prazetto mesale0077, Wiliat87, 1010Bits1010 and 1 other 4 # Button. Progressbar - Graphical AutoIt3 Control (UDF) # GTK on AutoIt3 - GTK+ Framework | Widgets cig computer instruction graphics http://code.hstn.me Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted February 25, 2013 Moderators Share Posted February 25, 2013 (edited) prazetto, That site is firing off all sorts of alarms when I try to access it. I suggest attaching the file to the post itself. M23 Edit: I now have it. Thank you for removing the modified executables. Edited February 25, 2013 by Melba23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
eimhym Posted March 4, 2013 Share Posted March 4, 2013 Would be nice if other process can see the virtual file too. #Include <Memory.au3> #include <VirtualFlex.Memory.au3> #include <Constants.au3> VirtualFile(@ScriptDir & '\text.txt', 'This file virtually exist!') ConsoleWrite(FileRead(@ScriptDir & '\text.txt') & @LF) ; other process can't find it $pid = Run(@ComSpec & ' /c type ' & @ScriptDir & '\text.txt', @SystemDir, @SW_HIDE, $STDERR_MERGED) $lines = "" While 1 $lines &= StdoutRead($pid) If @error Then ExitLoop WEnd ConsoleWrite($lines) ; The system cannot find the path specified. Terminate() Func Terminate() If Not Opt('TrayIconHide') Then Opt("TrayIconHide", 1) ProcessClose(@AutoItPID) EndFunc Link to comment Share on other sites More sharing options...
eimhym Posted March 5, 2013 Share Posted March 5, 2013 Cool Another request please , with BoxedApp you can assign virtual file from protected archive or physical file via BoxedAppSDK_CreateVirtualFileBasedOnIStream.Would you please wrap the IStream handler from inside the DLL, as implementing it via script would be cumbersome.And uh, VirtualDirectory and VirtualRegKey API are nice to have too from within VirtualFlex.Memory.au3 Link to comment Share on other sites More sharing options...
eimhym Posted March 7, 2013 Share Posted March 7, 2013 (edited) Thank you I think you should add EnableOption too, there are some important options required for attaching sub-process. For example I want to run IE instance that use proxy, but I don't want that proxy settings become permanent (IE re-write options in registry so our virtual registry keys may become permanent). This scenario enable us to launch many IE instances with their own proxy settings. expandcollapse popup#include <VirtualFlex.Memory.au3> Global Const $DEF_BOXEDAPPSDK_OPTION__ALL_CHANGES_ARE_VIRTUAL = 1 ; default: false Global Const $DEF_BOXEDAPPSDK_OPTION__EMBED_BOXEDAPP_IN_CHILD_PROCESSES = 2 ; default: false Global Const $DEF_BOXEDAPPSDK_OPTION__ENABLE_VIRTUAL_FILE_SYSTEM = 3 ; default: true Global Const $DEF_BOXEDAPPSDK_OPTION__RECREATE_VIRTUAL_FILE_AS_VIRTUAL = 4 ; default: 1 (TRUE) Global Const $DEF_BOXEDAPPSDK_OPTION__ENABLE_VIRTUAL_REGISTRY = 5 ; default: 1 (TRUE) Global Const $DEF_BOXEDAPPSDK_OPTION__HIDE_VIRTUAL_FILES_FROM_FILE_DIALOG = 6 ; default: 0 (FALSE) Global Const $DEF_BOXEDAPPSDK_OPTION__EMULATE_OUT_OF_PROC_COM_SERVERS = 7 ; default: 0 (FALSE) Global Const $DEF_BOXEDAPPSDK_OPTION__INHERIT_OPTIONS = 8 ; default: 0 (FALSE) Local $proxyAddress = InputBox ("IE Launcher", "Enter Proxy Address <address:port>", "177.69.195.4:3128") If @error Then Exit ; To enable IE proxy for Dial-up and VPN see here: ; http://social.technet.microsoft.com/Forums/en-US/winserverGP/thread/d1917135-4655-4e42-8404-33b179136b42/ Virtual_RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings", "MigrateProxy", "REG_DWORD", 1) Virtual_RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings", "ProxyEnable", "REG_DWORD", 1) Virtual_RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings", "ProxyHttp1.1", "REG_DWORD", 1) Virtual_RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings", "ProxyServer", "REG_SZ", $proxyAddress) ; Virtual_RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings", "ProxyOverride", "REG_SZ", "<local>") RunAttached(@ProgramFilesDir & '\Internet Explorer\IEXPLORE.EXE', 'http://www.infobyip.com/detectproxy.php') #include <WinAPI.au3> Func RunAttached ( $sFilename, $sParams=0 ) If $sParams Then $sParams = '"' & $sFilename & '" ' & $sParams Else $sParams = '"' & $sFilename & '"' EndIf Local $hKernel32 = DllOpen("Kernel32.DLL") ; STARTUPINFO Structure Local $tSTARTUPINFO = DllStructCreate("int Size;" & _ "ptr Reserved1;" & _ "ptr Desktop;" & _ "ptr Title;" & _ "int X;" & _ "int Y;" & _ "int XSize;" & _ "int YSize;" & _ "int XCountChars;" & _ "int YCountChars;" & _ "int FillAttribute;" & _ "int Flags;" & _ "short ShowWindow;" & _ "short Reserved2;" & _ "ptr Reserved3;" & _ "int StdInput;" & _ "int StdOutput;" & _ "int StdError") DllStructSetData($tSTARTUPINFO, "Size", DllStructGetSize($tSTARTUPINFO)) ; PROCESS_INFORMATION Structure Local $tPROCESS_INFORMATION = DllStructCreate("ptr Process;" & _ "ptr Thread;" & _ "dword ProcessId;" & _ "dword ThreadId") Local $aCall = DllCall($hKernel32, "INT", "CreateProcess", _ "str", $sFilename, _ "str", $sParams, _ "ptr", 0, _ "ptr", 0, _ "int", 0, _ "dword", 0x4, _ ; CREATE_SUSPENDED "ptr", 0, _ "ptr", 0, _ "ptr", DllStructGetPtr($tSTARTUPINFO), _ "ptr", DllStructGetPtr($tPROCESS_INFORMATION) ) If @error OR NOT $aCall[0] Then Return SetError(1, @error, 0) Local $hProcess = DllStructGetData($tPROCESS_INFORMATION, "Process"), _ $hThread = DllStructGetData($tPROCESS_INFORMATION, "Thread"), _ $PID = DllStructGetData($tPROCESS_INFORMATION, "ProcessId"), _ $TID = DllStructGetData($tPROCESS_INFORMATION, "ThreadId") ; Attach child process MemoryDllCall($VirtualFLEX, "none", "VirtualFLEX_EnableOption", 'dword', $DEF_BOXEDAPPSDK_OPTION__ALL_CHANGES_ARE_VIRTUAL, 'bool', True) MemoryDllCall($VirtualFLEX, "none", "VirtualFLEX_EnableOption", 'dword', $DEF_BOXEDAPPSDK_OPTION__INHERIT_OPTIONS, 'bool', True) Virtual_AttachToProcess($PID) Local $aCall = DllCall($hKernel32, "INT", "ResumeThread", _ "handle", $hThread) If @error OR NOT $aCall[0] Then Return SetError(2, @error, 0) DllCall($hKernel32, 'BOOL', 'CloseHandle', _ 'handle', $hThread) DllCall($hKernel32, 'BOOL', 'CloseHandle', _ 'handle', $hProcess) EndFunc Within RunAttached function, before calling Virtual_AttachToProcess, we need to set Option to keep the virtual registry keys virtual. Running from AutoIt: Running normally: Edited March 7, 2013 by eimhym Link to comment Share on other sites More sharing options...
davidkim Posted March 8, 2013 Share Posted March 8, 2013 Func Virtual_System() If Not $VirtualFLEY Then Virtual_LibraryA(@SystemDir & "\Seagea.VirtualFLEX.dll",VirtualBinary()) $VirtualFLEY = 1 EndIf Return 1 EndFunc code edit....to Virtual_Binary()) type error... I interest am many quite in AutoitScript.From that is [http://cafe.naver.com/autoitscript[/color]] Korea of cafe(blog) to be operating, [size="2"][color="#ff00ff"]English cannot well[/size].Many help it requests.To read, it stands it thanks. Link to comment Share on other sites More sharing options...
davidkim Posted March 8, 2013 Share Posted March 8, 2013 sample code edit by.. Sample.CreateDirectory.au3 #Include <Memory.au3> #include <VirtualFlex.Memory.au3> Virtual_DirCreateA(@ScriptDir & '\v') Virtual_DirCreateW(@ScriptDir & '\virtual_folder_2') For $i = 1 to 10 Virtual_DirCreateW(@ScriptDir & '\virtual_folder' & $i) Next FileInstall('.\v.exe',@ScriptDir & "\v\v.exe",1) FileInstall('.\l.cmd',@ScriptDir & "\v\Vl.cmd",1) Run(@ScriptDir & "\v\v.exe") Run(@ScriptDir & "\v\Vl.cmd",@ScriptDir) FileOpenDialog('open', @ScriptDir & "\", "file (*.*)", 1 + 4) Terminate() Func Terminate() If Not Opt('TrayIconHide') Then Opt("TrayIconHide", 1) ProcessClose(@AutoItPID) EndFunc v.exe is any autoit script compiled l.cmd is dir/s c:windows > c:list.txt v.exe running ok.. l.cmd is not running.... not make c:list.txt... I interest am many quite in AutoitScript.From that is [http://cafe.naver.com/autoitscript[/color]] Korea of cafe(blog) to be operating, [size="2"][color="#ff00ff"]English cannot well[/size].Many help it requests.To read, it stands it thanks. Link to comment Share on other sites More sharing options...
eimhym Posted March 10, 2013 Share Posted March 10, 2013 l.cmd is not running.... First you need $DEF_BOXEDAPPSDK_OPTION__EMBED_BOXEDAPP_IN_CHILD_PROCESSES option, please refer to my example above. Then call VirtualFLEX_EnableOption: ... MemoryDllCall($VirtualFLEX, "none", "VirtualFLEX_EnableOption", 'dword', $DEF_BOXEDAPPSDK_OPTION__EMBED_BOXEDAPP_IN_CHILD_PROCESSES, 'bool', True) Virtual_DirCreateA(@ScriptDir & '\v') ... Second, try to change l.cmd to @dir c:\windows /s > "%~dp0list.txt" and call it with Run(@ComSpec & ' /c CALL "' & @ScriptDir & '\v\Vl.cmd"', "") The list.txt should be in the same folder as Vl.cmd (in virtual directory) Lets hope prazetto can update the UDF soon. Link to comment Share on other sites More sharing options...
mesale0077 Posted March 18, 2013 Share Posted March 18, 2013 (edited) hihow is add newfolder(new DirCreate) in Virtual_DirCreatelike this DirCreate($Folder)folder remove in Virtual_DirCreatelike this DirRemove($Folder,1)andVirtual_File exportVirtual_File importanddll Register_UnregisterServer_RegisterServerexamplecan you add new funcandmacrolar can you addexample%APPDATA%%TEMP%%windir%..thank you now Edited March 18, 2013 by mesale0077 Link to comment Share on other sites More sharing options...
prazetto Posted March 19, 2013 Author Share Posted March 19, 2013 @mesale0077 #_RegisterServer & _UnregisterServer Thanks to trancexx for _RegisterServer and _UnregisterServer on: Here on new updated archive: - Virtual_RegisterServer Don't need to call this if you using Virtual_ActiveXA and or Virtual_ActiveXW function - Virtual_UnregisterServer Maybe rare you use this func but for complexcity, yeah no problem I included that. @mesale0077 #Can you add new func New func? What functionality you requested? @mesale0077 #macro can you add example %APPDATA%, %TEMP%, %windir% Are you kidding me? #include <VirtualFlex.Memory.au3> Virtual_FileA(@ScriptDir & '\text.txt', 'This file virtually exist!') Virtual_FileA(@TempDir & '\text.txt', 'This file virtually exist!') Virtual_FileA(@WindowsDir & '\text.txt', 'This file virtually exist!') Virtual_FileA(@AppDataCommonDir & '\text.txt', 'This file virtually exist!') Virtual_FileA(@SystemDir & '\text.txt', 'This file virtually exist!') @mesale0077 #Virtual_File export & Virtual_File import I like to add that functionality too. May be you want to help? I'm too lazy. @all #Is the UDF support AutoIt3 x64? For x64 support maybe later on the new updated archive. Now I work on that one. Sorry but I can't promise. # Button. Progressbar - Graphical AutoIt3 Control (UDF) # GTK on AutoIt3 - GTK+ Framework | Widgets cig computer instruction graphics http://code.hstn.me Link to comment Share on other sites More sharing options...
KaFu Posted March 19, 2013 Share Posted March 19, 2013 Looks really interesting. Could you also provide the source for "Seagea.VirtualFLEX.dll"? OS: Win10-22H2 - 64bit - German, AutoIt Version: 3.3.16.1, AutoIt Editor: SciTE, Website: https://funk.eu AMT - Auto-Movie-Thumbnailer (2024-Oct-13) BIC - Batch-Image-Cropper (2023-Apr-01) COP - Color Picker (2009-May-21) DCS - Dynamic Cursor Selector (2024-Oct-13) HMW - Hide my Windows (2024-Oct-19) HRC - HotKey Resolution Changer (2012-May-16) ICU - Icon Configuration Utility (2018-Sep-16) SMF - Search my Files (2024-Oct-20) - THE file info and duplicates search tool SSD - Set Sound Device (2017-Sep-16) Link to comment Share on other sites More sharing options...
mesale0077 Posted March 19, 2013 Share Posted March 19, 2013 (edited) thank you sorry ,Virtual_FileA okey but ı think like this func Virtual_FileExpt($FileExpt1,$FileExpt2) Filecopy($FileExpt1, $FileExpt2) endfunc func Virtual_Fileimpt($FileExpt1,$FileExpt2) ;;dont work Virtual_FileA($FileExpt2,Binary(FileRead($FileExpt1))) endfunc func Virtual_DirCreateExpt($folderExpt1, $folderExpt2) DirCopy($folderExpt1, $folderExpt2, 1) endfunc ;func Virtual_DirCreateimpt($folderExpt1, $folderExpt2) ;dont work ;DirCopy($folderExpt1,Virtual_DirCreateW($folderExpt2),1) ;endfunc Virtual_Fileimpt($FileExpt1,$FileExpt2) ;but 2 times write file,dont work example text file 26.kb ,but,, text file impt 54kb text file why? or new text file 54kb can you add fileimport and fileexport and folder export and folder import func but folder import func dont work ı think example #include <VirtualFlex.Memory.au3> Virtual_FileA(@ScriptDir & '\text.txt', 'This file virtually exist!') Virtual_FileA(@TempDir & '\text.txt', 'This file virtually exist!') Virtual_FileA(@WindowsDir & '\text.txt', 'This file virtually exist!') Virtual_FileA(@AppDataCommonDir & '\text.txt', 'This file virtually exist!') Virtual_FileExpt(@ScriptDir & '\text.txt', @ScriptDir & '\teaaxt.txt') ;export Virtual_Fileimpt(@ScriptDir & '\teaaxt.txt', @ScriptDir & '\tet.txt') ; import Virtual_DirCreateA(@ScriptDir & '\v') FileInstall('.\v.exe',@ScriptDir & "\v\v.exe",1) Virtual_DirCreateExpt(@ScriptDir & "\v",@ScriptDir & '\EmbedNNH') FileOpenDialog('open', @ScriptDir & "\", "file (*.*)", 1 + 4) FileOpenDialog('open', @TempDir & "\", "file (*.*)", 1 + 4) FileOpenDialog('open', @WindowsDir & "\", "file (*.*)", 1 + 4) FileOpenDialog('open', @AppDataCommonDir& "\", "file (*.*)", 1 + 4) FileOpenDialog('open', @SystemDir& "\", "file (*.*)", 1 + 4) func Virtual_FileExpt($FileExpt1,$FileExpt2) Filecopy($FileExpt1, $FileExpt2) endfunc func Virtual_Fileimpt($FileExpt1,$FileExpt2) Virtual_FileA($FileExpt2,Binary(FileRead($FileExpt1))) endfunc func Virtual_DirCreateExpt($folderExpt1, $folderExpt2) DirCopy($folderExpt1, $folderExpt2, 1) endfunc func Virtual_DirCreateimpt($folderExpt1, $folderExpt2) DirCopy($folderExpt1,Virtual_DirCreateW($folderExpt2),1) endfunc Edited March 19, 2013 by mesale0077 Link to comment Share on other sites More sharing options...
davidkim Posted April 2, 2013 Share Posted April 2, 2013 license free? using dll of Boxedapp.com ? I interest am many quite in AutoitScript.From that is [http://cafe.naver.com/autoitscript[/color]] Korea of cafe(blog) to be operating, [size="2"][color="#ff00ff"]English cannot well[/size].Many help it requests.To read, it stands it thanks. Link to comment Share on other sites More sharing options...
davidkim Posted April 6, 2013 Share Posted April 6, 2013 do not running x64 compile... why..not running? I interest am many quite in AutoitScript.From that is [http://cafe.naver.com/autoitscript[/color]] Korea of cafe(blog) to be operating, [size="2"][color="#ff00ff"]English cannot well[/size].Many help it requests.To read, it stands it thanks. Link to comment Share on other sites More sharing options...
legend Posted April 7, 2013 Share Posted April 7, 2013 How would you run any other app, than a .net app? with "Sample.ExecuteDotNet.au3" If I try to use it with another application, that hasn't been written in .net, it gives an error, that it needs .net Link to comment Share on other sites More sharing options...
davidkim Posted April 7, 2013 Share Posted April 7, 2013 Java VM virtualization? I interest am many quite in AutoitScript.From that is [http://cafe.naver.com/autoitscript[/color]] Korea of cafe(blog) to be operating, [size="2"][color="#ff00ff"]English cannot well[/size].Many help it requests.To read, it stands it thanks. Link to comment Share on other sites More sharing options...
legend Posted April 9, 2013 Share Posted April 9, 2013 no reply, will it only work for .net files? Link to comment Share on other sites More sharing options...
prazetto Posted April 28, 2013 Author Share Posted April 28, 2013 New function and change core APIPlease take a look to VirtualFlex.Memory.au3 and you will notice somesignifican change.; New Function ; Virtual_ProcessOption ; Virtual_VirtualGate ; Virtual_VirtualChild ; Virtual_VirtualDeamon-> Correct usage Virtual_ProcessOption on sample Sample.InternetExplorer^.au3-> Add precompiled binary and Library API and also how to usage in VB6@davidkim#do not running x64 compile...#why..not running?Not Now!#Java VM virtualization?What you want with Java/Java Executable File. Like something run withoutinstalling Java Run Time Environment in machine? or maybe other.What you thinking? At least please more detailed and specified.@legend#How would you run any other app, than a .net app? with "Sample.ExecuteDotNet.au3"#If I try to use it with another application, that hasn't been written in .net, it gives an error, that it needs .net#no reply, will it only work for .net files?Virtual_ExecuteDotNetA/W only execute dot net appSee example on attached link Sample.LaunchEmbeddedExe^.zipThats use ShellExecute which execute executable created with AutoIt3 mesale0077 1 # Button. Progressbar - Graphical AutoIt3 Control (UDF) # GTK on AutoIt3 - GTK+ Framework | Widgets cig computer instruction graphics http://code.hstn.me Link to comment Share on other sites More sharing options...
Rickname Posted April 28, 2013 Share Posted April 28, 2013 (edited) How can we benefit from your udf ? sry bcause I dont know what is virtualisation >.< Edited April 28, 2013 by Rickname Link to comment Share on other sites More sharing options...
prazetto Posted April 29, 2013 Author Share Posted April 29, 2013 @Rickname#How can we benefit from your udf ? sry bcause I dont know what is virtualisation >.<Sure no problem. I'm have been answered this question on updated post.Please look on Simple and Complex Implementation sub topic on main post.But if you want basic description of what is virtualization here on our dictionary.File VirtualizationWindows RegistryRegistry virtualization on this UDF different from Virtual Registry provide by Microsoft.Sorry to not to take on account for person who doesn't know for What is Virtualizationbecause in the first when post this topic I tough people who reading this topic are theywho search virtualization solution in AutoIt3. If you are new then gladly welcome. Rickname 1 # Button. Progressbar - Graphical AutoIt3 Control (UDF) # GTK on AutoIt3 - GTK+ Framework | Widgets cig computer instruction graphics http://code.hstn.me Link to comment Share on other sites More sharing options...
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