chenxianpeng 发表于 2010-4-2 17:53:03

请教运行DOS命令[已解决]

本帖最后由 chenxianpeng 于 2010-4-3 14:32 编辑

$proes = ProcessExists($pid)
RunWait(@ComSpec & " /c " & 'fu -ph' & '' & $proes , "", @SW_HIDE)

fu是隐藏进程的一个第三方软件

可以这么做不起作用 应该是错了

RunWait(@ComSpec & " /c " & 'fu -ph 1121' , "", @SW_HIDE)

我这么做就没任何问题

l4ever 发表于 2010-4-2 18:21:39

$proes = ProcessExists($pid)
$cmd = "Dir /s"& $proes;先写好
RunWait(@ComSpec & " /c " & $cmd,"",@SW_HIDE)

C.L 发表于 2010-4-2 23:47:20

RunWait(@ComSpec & " /c " & 'fu -ph' & ' ' & $proes , "", @SW_HIDE)

'fu -ph' & ' ' & $proes 中间的& '' & 应该要加空格吧。

afan 发表于 2010-4-3 00:22:59

$proes = ProcessExists($pid)
If $proes Then RunWait(@ComSpec & ' /c fu -ph ' & $proes, '', 0)
页: [1]
查看完整版本: 请教运行DOS命令[已解决]