ProLiant Deployment and Provisioning
1830143 Members
26480 Online
109999 Solutions
New Discussion

RDP error msg: The system cannot find the file specified.

 
Mike Reves
Advisor

RDP error msg: The system cannot find the file specified.

Ok, I searched the forums and found this linked topic below. I am having the same problem. My RDP was working up until I got back from vacation, and now none of the jobs work. All the jobs stop at the first process as Guate was having. I'm stumped.

http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1125835

************

Hi,

I had to reinstall RDP and after doing so I'm unable to install any servers using scripted install. It stops with the above mentioned error on the first step (run script) which does the following:

rem Deploy System Configuration
rem deployment start

set inputfile=pl.xml

call %ALTIRIS_SHARE%\lib\bin32\winpe\conrep.cmd -l %inputfile%

I suspect that the variable doesn't exist but how do I check that? Could it be some permissions issue? If so, where do I set the user that RDP should use? Any help will be greatly appreciated. Thanks.

Regards,
Gaute

***********

I did not reinstall, and as far as I know nothing has been changed (at least by me) I've checked shared permissions and checked for the conrep.cmd was still in the right place and it is. I'm not sure of all the variables. Below is my config:

rem Deploy System Configuration
rem deployment start

set inputfile=pl.xml

call %ALTIRIS_SHARE%\lib\bin32\winpe\conrep.cmd -l %inputfile%

***********
@echo on

REM ==============================================================
REM conrep.cmd
REM reads/writes the system configuration
REM
REM Usage:
REM Read
REM conrep.cmd -s file
REM Write
REM conrep.cmd -l file
REM ==============================================================

REM call
%ALTIRIS_SHARE%\lib\bin32\winpe\conrep.exe %1 -f%ALTIRIS_SHARE%\lib\hwconfig\system\%2 -x%ALTIRIS_SHARE%\lib\bin32\winpe\conrep.xml %3 %4 %5 %6 %7 %8 %9
if errorlevel 4 goto error
if errorlevel 3 goto err3
if errorlevel 2 goto err2
if errorlevel 1 goto err1

REM finish
goto success

:error
set code=%errorlevel%
set severity=3
set status="%0: unknown error."
goto done

:err3
set code=3
set severity=3
set status="%0: health driver is not loaded."
goto done

:err2
set code=2
set severity=3
set status="%0: bad data file."
goto done

:err1
set code=1
set severity=3
set status="%0: bad xml file."
goto done

:success
set code=0
set severity=1
set status="%0: completed successfully."
goto done

:done
if exist %ALTIRIS_SHARE%\techsup\windows\wlogevent.exe %ALTIRIS_SHARE%\techsup\windows\wlogevent.exe -c:%code% -l:%severity% -ss:%status%
rem if not "%code%" == "0" pause

:end