能力值:
( LV2,RANK:10 )
|
-
-
2 楼
补充:
cctv.bat 中的命令 :
@echo off
start CCTVPlayer.exe null
也可以用程序直接运行这些命令
然后退出自身
|
能力值:
( LV2,RANK:10 )
|
-
-
3 楼
试一下ShellExecute或者CreateProcess这两个API函数,很简单的.
|
能力值:
(RANK:170 )
|
-
-
4 楼
.386
.model flat, stdcall
option casemap :none
include windows.inc
include kernel32.inc
include masm32.inc
includelib kernel32.lib
includelib masm32.lib
include macro.asm
.data
szCurrent db 'cctv.bat',0
.CODE
START:
invoke WinExec,offset szCurrent,SW_SHOW
invoke ExitProcess,0
end START
|
能力值:
( LV2,RANK:10 )
|
-
-
5 楼
谢谢
楼上的朋友
include macro.asm出错
删除后编译成功
运行结果非常满意 万分感谢
|
|
|