找回密码
 加入
搜索
查看: 1410|回复: 2

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

[复制链接]
发表于 2009-6-11 00:50:55 | 显示全部楼层 |阅读模式
如题!希望高手帮忙!我传了附件,请看附件里面的!
up.exe 是VD还原保护里面的!希望了解VD的朋友帮个忙

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

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?加入

×
发表于 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
发表于 2009-6-11 15:26:48 | 显示全部楼层
run('"up.exe" /now 1 C:\3 D:\3\ 3')
您需要登录后才可以回帖 登录 | 加入

本版积分规则

QQ|手机版|小黑屋|AUTOIT CN ( 鲁ICP备19019924号-1 )谷歌 百度

GMT+8, 2024-9-23 02:21 , Processed in 0.075350 second(s), 24 queries .

Powered by Discuz! X3.5 Licensed

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表