How to check if PAE is enabled? (Windows 7 32 bits)

5

5

How to tell for sure if PAE (Physical Address Extensions) is enabled or not?
There is a SPECIFIC command I can use? I can read a registry value or something? (Windows 7 32 bits)

I have found this on Internet but it doesn't answer my question:

If your server has hot-add memory ability (ability to add more memory without shutting down the server !!) or data execution prevention (DEP) is enabled then PAE will be enabled automatically !!

It only reformulate the question as "does my Qosmio x505 laptop support hot-add memory?"

Ultralisk

Posted 2011-08-09T17:50:47.670

Reputation: 1 749

There are multiple models of the Toshiba Qosmio x505 laptop. Do you have the Q8100X, Q8102X, Q8104X, Q830, Q832, Q850, Q860, Q862, Q865, Q870, Q875, Q879, Q880, Q882, Q885, Q887, Q888, Q890, Q892, Q893, Q894, Q896, Q898, SP8016L, SP8016M, SP8017L, SP8017M, SP8018L, SP8018M, SP8019L, SP8019M, SP8020L, SP8020M, SP8021L, SP8021M, SP8130, SP8130L, SP8915A, SP8915C, or SP8915R? Please click on [edit] above at left, and add the model number from the serial number plate or sticker underneath the laptop, so we can provide the best advice. – K7AAY – 2018-11-16T00:22:18.407

2Having PAE does not automatically imply that all of the features that it allows will be available. It is incredibly rare, and almost completely unnecessary for home computers and laptops to support hot-plugging memory and I would be incredibly surprised if your system did. – Mokubai – 2011-08-09T18:14:21.200

"Having PAE does not automatically imply" - - - I know, and this is why I want to VERIFY it. – Ultralisk – 2011-08-09T18:19:40.410

1

Could you accept Victor's answer below? It does actually answer the question.

– Dan Dascalescu – 2013-01-07T02:29:07.637

Answers

3

How to tell for sure if PAE (Physical Address Extensions) is enabled or not?

On any modern Intel/AMD (x86/x64) system with hardware-level DEP, PAE is enabled out of the box on Windows XP (SP2?) and up, since it's required for the DEP feature to work.

"does my Qosmio x505 laptop support hot-add memory?"

No, it most assuredly does not.

Hot-add RAM is generally only found on high-end server hardware.

Edit:

According to MSDN Entry for PAE, it's enabled by default under certain (common) conditions:

Windows automatically enables PAE if DEP is enabled on a computer that supports hardware-enabled DEP, or if the computer is configured for hot-add memory devices in memory ranges beyond 4 GB. If the computer does not support hardware-enabled DEP or is not configured for hot-add memory devices in memory ranges beyond 4 GB, PAE must be explicitly enabled.

So, if the system is booted with PAE force-enabled or supports hardware DEP, PAE is on. That's every single system that's come with Vista or Windows 7 pre-installed, and a significant number of XP systems as well (late P4, Core Solo/Duo, Core 2 systems). The only caveat is if someone has gone out of their way to force disable it by editing the boot.ini file (for XP) or modify the BCD (for Vista/7).

As for how to see that it's enabled, I'm not sure. In XP, if you right click on My Computer and select Properties, the General tab will say Physical Address Extension at the bottom if PAE is enabled. 64-bit Win 7 systems don't seem to say, probably because PAE is always enabled on such systems. 32-bit Win 7 may say something similar in the System Control Panel, but until I can check my home laptop, I can't tell you for sure -- it's the only 32-bit Win 7 system I have access to, all my others are 64-bit.

There doesn't seem to be any registry entry that tells whether or not it's on.

Ultimately, the point is that it's safe to assume it's on unless you have a good reason to believe it's not. If you're writing code that depends on it, use the IsProcessorFeaturePresent function, that's what it's there for.

afrazier

Posted 2011-08-09T17:50:47.670

Reputation: 21 316

@MSalters: The opposite is true. Technically PAE = 64bit memory addressing. I mean having PAE in 32bit Windows means that the computer actually runs in 64bit memory addressing mode. You always have this mode in 64bit Windows, although we don't use PAE name for it, it's just 64bit system. – Al Kepp – 2017-01-25T16:58:10.620

@AlKepp: No, 36 bits addressing is not 64 bits. This is specifically about the page table structure. You look up a virtual 32 bits address and get a 32 (non-PAE) or 36 (PAE) physical address back. On Win64, you look up a 64 bits address and get back a physical 48 bits address - no extensions (in fact, 48<64 - you get back less bits) – MSalters – 2017-01-25T17:02:43.830

@MSalters: You are right that less number of bits are used, but what I wanted to say (and didn't said clearly, sorry for that) is that PAE and x86-64 CPU's both use 64bit entries in paging tables. x86-64 paging system is something like an extension to older PAE, because it just uses some additional bits in the same paging tables which were unused by PAE. – Al Kepp – 2017-01-26T00:05:40.923

Sorry but you didn't answer my question AT ALL! You just told us how its YOUR laptop. I didn't asked that. – Ultralisk – 2011-08-09T18:11:12.103

I only mentioned the named laptop because you did. If that's what you own, PAE is on unless you've gone to the trouble to disable it. See my edit for more info. – afrazier – 2011-08-09T19:09:11.923

Thanks. Accepted (because of the 'MSDN Entry for PAE' link). – Ultralisk – 2011-08-09T20:22:01.457

2There is an actual answer to your question posted below by ''Victor Drobysh''. Could you accept that one instead? – rustyx – 2012-09-08T10:06:49.913

PAE is always off on 64 bits machines. You don't need 4 bits of address extensions there. (PAE makes the page table 36 bits wide on 32 bits systems; on 64 bits systems it's already 48 bits wide) – MSalters – 2013-07-16T11:47:35.783

17

To use the graphical user interface to determine whether PAE is enabled, follow these steps:

  1. Click Start, click Run, type wbemtest in the Open box, and then click OK.
  2. In the Windows Management Instrumentation Tester dialog box, click Connect.
  3. In the box at the top of the Connect dialog box, type root\cimv2, and then click Connect.
  4. Click #Enum Instances".
  5. In the Class Info dialog box, type Win32_OperatingSystem in the Enter superclass name box, and then click OK.
  6. In the Query Result dialog box, double-click the top item. Note this item starts with "Win32_OperatingSystem.Name=Microsoft..."
  7. In the Object editor dialog box, locate the PAEEnabled property in the Properties area and double-click on it.
  8. In the Property Editor dialog box, note the value in the Value box.

Victor Drobysh

Posted 2011-08-09T17:50:47.670

Reputation: 171

It's strange that this precise reply is not marked as an answer. – Mike B. – 2018-01-08T09:06:30.280

Awesome! I would never have found this :) Thank you – rustyx – 2012-09-08T10:05:51.677

Works perfectly on windows 7. I should note that you can enable it by editing the BCD, EasyBCD makes it simple... with a trial. – Ray Foss – 2013-02-03T05:01:10.030

12

WMI will give you this via the command line util 'WMIC', for example:

C:\> wmic os get PAEEnabled
PAEEnabled
TRUE

C:\>

Or with Powershell:

PS> (Get-WmiObject win32_operatingsystem).PAEEnabled

Chris J

Posted 2011-08-09T17:50:47.670

Reputation: 649

Thanks, the easiest way to check if PAE is enabled. – Mike B. – 2018-01-08T09:07:40.397

3

There is a registry setting that will tell you whether Physical Address Extension (PAE) is enabled.

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management\PhysicalAddressExtension

If it is set to 1, then the kernel with PAE support was loaded at startup.

Alistair McMillan

Posted 2011-08-09T17:50:47.670

Reputation: 292

0

you can simply run command prompt as administrator and execute "bcdedit" if at all enabled there will be an entry under the operating system parameters as PaeForceEnabled = true

mayank gupta

Posted 2011-08-09T17:50:47.670

Reputation: 11

0

A laptop almost certainly does not support hot-add memory. That feature only exists on certain high-end servers.

Windows XP SP2 and later versions of the client OS do not support more than 4GB of memory in 32 bit mode, even with PAE enabled because of driver compatibility issues. PAE is only used so the OS can access the NX bit.

See http://msdn.microsoft.com/en-us/windows/hardware/gg487512

If your CPU supports the NX bit, unless you are booting with the /NOPAE flag the kernel is probably using PAE for hardware DEP support.

Chris Smith

Posted 2011-08-09T17:50:47.670

Reputation: 281

@DanDascalescu - I don't. What I wanted to say is this: Half of the planet believes in a religious book without questioning it. But informatics is not religion so I expect hard evidence (from Chris Smith). – Ultralisk – 2015-05-14T13:30:59.440

Sorry but you didn't answer my question AT ALL! As you said, I also know that P R O B A B L Y my computers has PAE enabled. What I have asked is how do I actually verify it. Computers should not be bibles - to just believe it. We should be able to verify it somehow. – Ultralisk – 2011-08-09T18:14:15.893

Go to the system control panel (sysdm.cpl). In the general page in the lower right corner it'll list how much memory you have installed. Below that if it says "Physical Address Extension" then PAE is being used. If it does not, PAE is not being used. – Chris Smith – 2011-08-09T18:56:07.617

Ok I guess those instructions only work on XP. I don't have any 32 bit Windows 7 or Vista systems to look at but it must be on one of the system info screens. – Chris Smith – 2011-08-09T19:05:56.540

Hi Chris. I cannot see indeed that screen on my Win 7 laptop. When I press Win+Break keys to see system's properties there is also no mention of pae – Ultralisk – 2011-08-09T20:08:13.877

@Altar: why would you believe the Bible without question?

– Dan Dascalescu – 2013-01-07T02:30:52.753