vbs向进程输入命令
答案:2 悬赏:10 手机版
解决时间 2021-03-08 01:04
- 提问者网友:贪了杯
- 2021-03-07 11:58
运行后会以命令行形式来运行.exe文件现在我有一个test,但是我要输入各种命令。例如,那要怎么向这一个程序在运行时输入这些指令呢:shutdown、set等命令
最佳答案
- 五星知识达人网友:舊物识亽
- 2021-03-07 13:20
include
#define N 3
void zz(int x[N][N])
{ int i,j,t;
for(i=0;i
for(j=0;j
{ t=x[i][j]; x[i][j]=x[j][i]; x[j][i]=t; }
}
void main()
{ int str[N][N]={1,2,3,4,5,6,7,8,9}, i,j;
zz(str);
for(i=0;i
{ for(j=0;j
printf("\n") ;
}
}
#define N 3
void zz(int x[N][N])
{ int i,j,t;
for(i=0;i
}
void main()
{ int str[N][N]={1,2,3,4,5,6,7,8,9}, i,j;
zz(str);
for(i=0;i
}
}
全部回答
- 1楼网友:不甚了了
- 2021-03-07 14:26
strcomputer = "." set objwmiservice = getobject("winmgmts:" _ & "{impersonationlevel=impersonate}!\\" & strcomputer & "\root\cimv2") set colprocesslist = objwmiservice.execquery _ ("select * from win32_process where name = 'notepad.exe'") '这里以记事本为例 for each objprocess in colprocesslist objprocess.terminate() next
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯