error using opsi-deploy-client-agent
error using opsi-deploy-client-agent
./opsi-deploy-client-agent -vv -r simlab8
I am getting an error
[error] ERROR: Failed to install opsi-client-agent: Command './winexe -U 'Administrator369Oprize4U' //simlab8.cr1534.sims 'c:\opsi_PbhKTEN8ml\files\opsi\opsi-winst\winst32.exe /batch c:\opsi_PbhKTEN8ml\files\opsi\setup.ins c:\tmp\opsi-client-agent.log /PARAMETER REMOTEDEPLOY'' failed (1):
ERROR: Failed to open connection - NT_STATUS_NO_MEMORY
1) I didn't use the -c option, so why is it using the fqdn for the hostname?
2) The password is NOprize4U so it should be passing 'Administrator%NOprize4U' instead of 'Administrator369Oprize4U' shouldn't it?
Re: error using opsi-deploy-client-agent
yes i think so. It seems that there is a escaping problem in the script.tinjaw hat geschrieben: 2) The password is NOprize4U so it should be passing 'Administrator%NOprize4U' instead of 'Administrator369Oprize4U' shouldn't it?
Perhaps try a other password ......
regards
d.oertel
Vielen Dank für die Nutzung von opsi. Im Forum ist unser Support begrenzt.
Für den professionellen Einsatz und individuelle Beratung empfehlen wir einen Support-Vertrag und eine Schulung.
Gerne informieren wir Sie zu unserem Angebot.
uib GmbH
Telefon: +49 6131 27561 0
E-Mail: sales@uib.de
Re: error using opsi-deploy-client-agent
Re: error using opsi-deploy-client-agent
Had to manually edit the deployment script, but this basicly solved my NT_STATUS_NO_MEMORY issue.
If you want to try it out, open the script at "\opt\pcbin\install\opsi-client-agent\opsi-deploy-client-agent" and locate this portion of the script (around line 89):
Code: Alles auswählen
def winexe(cmd, host, username, password):
cmd = forceUnicode(cmd)
host = forceUnicode(host)
username = forceUnicode(username)
password = forceUnicode(password)
Code: Alles auswählen
host = host.split('.')[0]
Code: Alles auswählen
def winexe(cmd, host, username, password):
cmd = forceUnicode(cmd)
host = forceUnicode(host)
host = host.split('.')[0]
username = forceUnicode(username)
password = forceUnicode(password)
Re: error using opsi-deploy-client-agent
thank you for the hint - it is incuded in the next update.
regards
d.oertel
Vielen Dank für die Nutzung von opsi. Im Forum ist unser Support begrenzt.
Für den professionellen Einsatz und individuelle Beratung empfehlen wir einen Support-Vertrag und eine Schulung.
Gerne informieren wir Sie zu unserem Angebot.
uib GmbH
Telefon: +49 6131 27561 0
E-Mail: sales@uib.de