The basics would not have changed.
Power management is via the ACPI specification.
http://en.wikipedia.org/wiki/Acpi
Global states
S1: All processor caches are flushed, and the CPU(s) stops executing
instructions. Power to the CPU(s) and RAM is maintained; devices
that do not indicate they must remain on may be powered down.
S2: CPU powered off. Dirty cache is flushed to RAM.
S3: Commonly referred to as Standby, Sleep, or Suspend to RAM.
RAM remains powered
S4: Hibernation or Suspend to Disk. All content of main memory is
saved to non-volatile memory such as a hard drive, and is
powered down.
(S5) Soft Off: A full reboot is required.
In the past, about all that S1 did, is turn off the monitor screen
(send black to it). Now, on my old CRT monitor, in fact the power
dissipated, stayed constant, even when my computer went into S1.
So this was hardly a power saving state. It was almost solely
a "screensaver".
Your machine is currently in S1 Standby, and your machine is still
drawing 50 to 150 watts or so. If you hear fans spinning, you're
in S1.
S2 is not something we can observe, and may be covered by
C states instead (C3, C6 etc).
The state you wanted to be in, is S3 or S4. S3 allows a relatively
quick recovery, as the disk does not need to be accessed. S4
recovers RAM state from the hard drive - RAM is reloaded from
the drive. The advantage of S4 is, if you unplug the computer
and move it to another location, it will load from disk and
carry on as if nothing happened. If you remove power while
in S3, the session in RAM is lost (open files, etc).
So in terms of terminology, there are two Standby states:
S1 - Standby (but effectively a "screensaver" and that's all)
S3 - Standby Suspend To RAM (fans stop running, RAM uses +5VSB)
The latest versions of Windows, have added additional twists on
all this. Hybrid sleep, can store the session in RAM and on disk,
such that if the computer is not moved between sessions and the
power was maintained, recovery is instantaneous and is done from
RAM. Whereas, the disk is consulted, if power is removed and the
RAM contents are lost.
Windows 8 adds a further twist, by maintaining the kernel and
user space potentially separately. They get fast restoration
of state, by freezing the kernel to disk, so that the OS
can do a "warm start", which shortens the apparent boot time.
If the kernel were to become corrupted, a user may then
wish to "flush" the kernel, and do a proper reboot.
*******
The "dumppo" utility from Microsoft, can list the S states
supported on a computer. It's an ancient utility, but as long
as the clever folks at Microsoft maintain the API used, it'll
continue to work.
ftp://ftp.microsoft.com/products/Oemtest/v1.1/WOSTest/Tools/Acpi/dumppo.exe
Instructions are here. You'd probably want an elevated
command prompt in Windows 7. Then run the examples.
http://forums.pcper.com/showthread.php?p=1825058&postcount=31
What typically happens, is a user meddles with the BIOS
ACPI setting, reducing the system to S1. And after you
fix the BIOS setting, so S3 is mentioned, using "dumppo"
can fix the Windows side of things. (Crosses fingers...)
Dumppo is needed, because Windows won't promote itself
to using the more useful states on its own, without
being kicked in the ass. That's what an "administrative
override" amounts to, a kick in the ass.
Good luck,
Paul