Author Topic: Reset Qube worker script returns error after reimage  (Read 3305 times)

Chris Computing

  • Sr. Member
  • ****
  • Posts: 25
Reset Qube worker script returns error after reimage
« on: August 19, 2013, 05:57:17 PM »
I was given this script by John from PipelineFX to run on the machines after I re image a computer that will be a worker: %QBDIR%\utils\upgrade_worker --reset

It returns the attached error message.

[attachment deleted by admin]

jburk

  • Administrator
  • *****
  • Posts: 493
Re: Reset Qube worker script returns error after reimage
« Reply #1 on: August 19, 2013, 06:43:00 PM »
Since %QBDIR% evaluates out to a path with a space in it, you need to quote the path to the executable:

"%QBDIR%\utils\upgrade_worker" --reset

Chris Computing

  • Sr. Member
  • ****
  • Posts: 25
Re: Reset Qube worker script returns error after reimage
« Reply #2 on: August 19, 2013, 09:13:45 PM »
That did it, thanks!