星 星幻子 Unregistered / Unconfirmed GUEST, unregistred user! 2005-03-16 #1 比如一个DOS命令 net use //192.168.1.1 /user:administrator 如何在DELPHI中实现?
星 星幻子 Unregistered / Unconfirmed GUEST, unregistred user! 2005-03-16 #2 比如一个DOS命令 net use //192.168.1.1 /user:administrator 如何在DELPHI中实现?
J jfyes Unregistered / Unconfirmed GUEST, unregistred user! 2005-03-16 #3 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;
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;
J jfyes Unregistered / Unconfirmed GUEST, unregistred user! 2005-03-16 #5 const cmd = 'net use //192.168.1.1 123 user:administrator' Winexec(pchar(Cmd), SW_HIDE); 就可以了