다른 명령
Autoit debugview
; ; credits go to ; Karsten Violka (kav@ctmagazin.de), Stefan Porteck (spo@ctmagazin.de) ; Func _DebugPrint($msg, $error = @error, $extended = @extended, $ScriptLineNumber = @ScriptLineNumber) ; view with debug view ; http://technet.microsoft.com/en-us/sysinternals/bb896647.aspx Local $out = $msg & ", Line:" & $ScriptLineNumber & ", Error: " & $error & " " & $extended ;Output to application attaching a console to the script engine ConsoleWrite($out & @CRLF) ;Output to debugger (dbgview.exe) DllCall("kernel32.dll", "none", "OutputDebugString", "str", $out) EndFunc ;==>_DebugPrint
뷰어 다운로드
http://technet.microsoft.com/en-us/sysinternals/bb896647.aspx