http://www.perlmonks.org?node_id=626197


in reply to Re^2: using TaskScheduler to reboot Win32 machine
in thread using TaskScheduler to reboot Win32 machine

Have you checked for the last system message after the call from within Perl? That might tell if you if it's running at all and help determine the issue

print "SysMsg - " . Win32::FormatMessage(Win32::GetLastError());

Also, anything in the event log after you attempt the run?

On the Windows side: I assume user/pass is a static account that will never change? Otherwise if you have a rotating password scheme for security in place, this will haunt you later in a bad way!
  • Comment on Re^3: using TaskScheduler to reboot Win32 machine

Replies are listed 'Best First'.
Re^4: using TaskScheduler to reboot Win32 machine
by magikstik! (Initiate) on Jul 12, 2007 at 11:18 UTC
    backticks - `command`
Re^4: using TaskScheduler to reboot Win32 machine
by ethrbunny (Monk) on Jul 12, 2007 at 12:50 UTC
    Got it working. The problem was a space in the first param to InitiateSystemShutdown. It was trying to find a machine called '<space here>' instead of the local box.
      Great! Congrats