Examples of CMD in Autoit GUI!
#include <GUIConstants.au3>
#include <Constants.au3>
Global $hGUI = GUICreate("AutoIt CMD", 604, 320, -1, -1)
Global $cCommand = GUICtrlCreateInput("ping google.com", 64, 10, 416, 21)
GUICtrlCreateLabel("CMD: >", 20, 15, 40, 20)
Global $cExecute = GUICtrlCreateButton("Execute Command!", 485, 8, 112, 25)
Global $cOutputBox = GUICtrlCreateEdit("", 10, 47, 578, 260, $ES_READONLY + $ES_MULTILINE + $WS_HSCROLL