shounei 发表于 2009-6-11 00:50:55

请教如何用AU3实现up.exe的参数调用?

如题!希望高手帮忙!我传了附件,请看附件里面的!
up.exe 是VD还原保护里面的!希望了解VD的朋友帮个忙

"up.exe" /now 1 C:\3 D:\3\ 3

guland 发表于 2009-6-11 08:23:29

我不知道那些参数都是什么意思,所以简单写一个

#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>

$Form1 = GUICreate("UP.exe参数调用", 414, 34, 192, 114)
$Label1 = GUICtrlCreateLabel("执行参数", 4, 8, 52, 17)
$Input1 = GUICtrlCreateInput("", 56, 4, 265, 21)
$Button1 = GUICtrlCreateButton("运行up.exe", 332, 4, 75, 25, 0)
GUISetState(@SW_SHOW)

While 1
        $nMsg = GUIGetMsg()
        Switch $nMsg
                Case $GUI_EVENT_CLOSE
                        Exit
                Case $Button1
                        $tr=GUICtrlRead($Input1)
                        run("up.exe "&$tr)
        EndSwitch
WEnd

lynfr8 发表于 2009-6-11 15:26:48

run('"up.exe" /now 1 C:\3 D:\3\ 3')
页: [1]
查看完整版本: 请教如何用AU3实现up.exe的参数调用?