请问如何在DELPHI中对DOS命令的调用? ( 积分: 15 )

  • 主题发起人 主题发起人 星幻子
  • 开始时间 开始时间

星幻子

Unregistered / Unconfirmed
GUEST, unregistred user!
比如一个DOS命令
net use //192.168.1.1 /user:administrator

如何在DELPHI中实现?
 
比如一个DOS命令
net use //192.168.1.1 /user:administrator

如何在DELPHI中实现?
 
if conDis then
sCmd := 'net use ' + LocalPath + ' ' + NetPath + ' ' + userPs
else
sCmd := 'net use ' + LocalPath + ' /del /y';
ii := Winexec(pchar(sCmd), SW_HIDE);
result := ii = 33;
 
恩, 用 winexec 就行。
 
const cmd = 'net use //192.168.1.1 123 user:administrator'
Winexec(pchar(Cmd), SW_HIDE);
就可以了
 
多人接受答案了。
 
后退
顶部