in reply to Re: Automatic Windows Reboot using Perl
in thread Automatic Windows Reboot using Perl
Your help is greatly appreciated! Thanks!#!/usr/bin/perl -w use strict; use Win32::API; Win32::API->Import( 'User32', 'BOOL ExitWindowsEx( DWORD uFlags, DWORD dwReason )', ); ExitWindowsEx('EWX_REBOOT','4');
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Automatic Windows Reboot using Perl
by arden (Curate) on Jul 01, 2004 at 02:08 UTC | |
by Anonymous Monk on Jul 01, 2004 at 14:59 UTC | |
|
Re^3: Automatic Windows Reboot using Perl
by bunnyman (Hermit) on Jul 01, 2004 at 15:49 UTC |