Greetings Fellow Monks!
In a nutshell, I would like to automate placing Windows, in the case Win2000, into standby. The code I have assembled
below is for automatic rebooting which works cleanly including a warning window of impending shutdown. I put this in the scheduler for unattended auto rebooting of a remote computer.
#!/usr/bin/perl -w
use Win32;
Win32::InitiateSystemShutdown( '', "\nWARNING\!\!\n\nSystem is about t
+o Reboot\!\n\(The system will reboot in 30 seconds.\)", 30, 1, 1 );
This is what I would call it's "countermeasure" (in case you want to abort a reboot that is about to occur:
#!/usr/bin/perl -w
use Win32;
$machineName="";
Win32::AbortSystemShutdown($machineName);
I want to create something simliar to the first script shown above except it simply puts the computer in standby or sleep mode. I did a little digging but didn't find anything that was quite obvious right off the bat. Perhaps, maybe this falls into the realm of Windows Scripting, which I am not all that familiar with, but I am willing to adapt; hoping for a perl solution. Any help/insight that can be provided will great!
Thank you in advance for your help and wisdom in this matter!
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.