UPDATE- AMD 12.1 drivers did not solve the problem, still hard crash.
Now I can't even start up my computer, which YOUR SOFTWARE HAS ABSOLUTELY CAUSED.
You're nuts.
You could just as well start yelling at the moon. And threaten to sue the moon.
Did any of you people ever done any programming ? Did you ever look at what the software architecture of a computer or an Operating System looks like ? This is not rocket science.
An Operating System divides "the program" running on your computer in two parts.
1) The kernel. This is part of the Operating System. In this case Windows. Inside the kernel run the drivers. The drivers are little pieces of the kernel that deal with specific pieces of hardware. The kernel handles all reads and writes to harddisks. It keeps track of files (the filesystem). It puts stuff on your screen. It keeps an eye on your mouse and keyboard. It handles incoming ethernet packets and sends out packets. Everything "low level" is handled by the kernel. This is a security measure as well, to make sure that no benign program can cause havoc.
2) The applications. What you know as "the programs". The stuff that is in a file called "exe". Skyrim is an application. When Skyrim wants to draw on your screen, it asks the kernel to do that. Via a so called "system call". There is a fixed set of system calls that any program can do. Some system calls are called directly by the application. Most are called indirectly via library functions (like all functions you can call in the DirectX library).
The CPU keeps track in which mode it is running. Either in kernel mode, or protected mode. Or the CPU is running in User mode. The kernel's code is of course running in kernel mode. And the Skyrim code that has been written by Bethesda is running in user mode. When code is running in user mode, it can't even access the hardware. So applications are forced to ask the kernel to do things for them, via system calls.
Now comes the big revelation.
1) If the CPU runs into an irrecoverable error or problem, and it is running in User mode, the OS will just stop the program. You know this as "a crash to the desktop (CTD)". The kernel itself, and all other applications (like your windows explorer, your webbrowser, etc) will all continue to run.
2) But if the CPU runs into an irrecoverable error or problem when it is running in kernel mode, it can't do much. The OS will try to display an error message on the screen, and then reboot. This is the famour "blue screen of death". The BSOD is the OS telling you that something went bad, and the OS does not know how to recover. The error message is a hint what went wrong.
3) Sometimes something in kernel mode goes so wrong, that the OS can't even give you that warning message. The OS can't even try to get into a clean state. Or reboot the machine. Then the only thing that can happen is that a) the system hangs, or

the hardware notices that things gone wrong, and the hardware forces a reboot. This is your black screen. This is your hard reboot.
So anything that Skyrim does wrong, any bugs, anything stupid -> the OS kills Skyrim and you see a Crash to the Desktop.
Bugs in the drivers -> usually a Blue Screen of Death.
Problems with the hardware -> Hard reboots.
That's why these problems here are *not* bugs in Skyrim.
They can't be, by definition. Because of the architecture of an Operating System.
Now what the problem is, I don't know. I don't know how to fix it. I don't even know how to troubleshoot it.
But I can tell you one thing: IT IS NOT A BUG IN SKYRIM THAT IS CAUSING THE HARD CRASHES !
Clear now ?