Windows Vista >> [Vista Business] Not recognize 4GB Ram - SonyVaio VGN-SZ57N/C + Vista Business

by ADO. Inconnu » Fri, 23 Nov 2007 05:34:09 GMT

I bought my SonyVaio Notebook Computer (VGN-SZ57N, with 1GB of Ram) coming
with an Vista Business installed, I can't work with its poor performance, so
I bought / installed another new 4GB(2x2GB) Ram to replace the original 1GB
of Ram(Product Spec. told that it support 4GB of Ram). As a result I
realized both the Bios and Vista the OS seeing only 3GB(actually 3070MB)
Physical Memory. I google around and I heard about Hardware's lacking of
remapping feature and Software's 32 bit OS limitation issues, but I hope I
still can hear someone here told me that this is an deadend for getting my
current computer to see and work with 4GB of Ram.

Please let me know whether this is a motherboard limitation or this is a
matter of 32bit versions of Windows, any explaination... Thanks so much for
your kindly help, I just felt sick of keeping search on this topic and I
think I can accept all of this if this is a matter of time (People told me
SP1 could solve all of this) or money (They told me I should upgrade to
64bit Vista Ultimate to work 4GB Ram). Hey, anyway thanks again, have a nice
day. :)

A.


Windows Vista >> [Vista Business] Not recognize 4GB Ram - SonyVaio VGN-SZ57N/C + Vista Business

by Meinolf Weber » Fri, 23 Nov 2007 05:47:10 GMT


Hello ADO. Inconnu,

For the BIOS check the vendor support why it does not recognize the full
4GB. To get in Vista full 4GB, you can use the 64bit version, otherwise like
you say it is not possible by design to get full 4 GB.

Best regards

Meinolf Weber
Disclaimer: This posting is provided "AS IS" with no warranties, and confers
no rights.
** Please do NOT email, only reply to Newsgroups
** HELP us help YOU!!! http://www.dts-l.org/goodpost.htm

Windows Vista >> [Vista Business] Not recognize 4GB Ram - SonyVaio VGN-SZ57N/C + Vista Business

by Meinolf Weber » Fri, 23 Nov 2007 05:47:21 GMT

Hello ADO. Inconnu,

For the BIOS check the vendor support why it does not recognize the full
4GB. To get in Vista full 4GB, you can use the 64bit version, otherwise like
you say it is not possible by design to get full 4 GB.

Best regards

Meinolf Weber
Disclaimer: This posting is provided "AS IS" with no warranties, and confers
no rights.
** Please do NOT email, only reply to Newsgroups
** HELP us help YOU!!! http://www.dts-l.org/goodpost.htm

Windows Vista >> [Vista Business] Not recognize 4GB Ram - SonyVaio VGN-SZ57N/C + Vista Business

by Charlie Tame » Fri, 23 Nov 2007 06:10:51 GMT


The most any 32 bit address register can take is 4 GB so the limit is
set by the 32 bit OS and / or 32 bit hardware. Video and other things
take up some of the address space so whatever they use cannot be used by
the OS. There is nothing you or anyone can do about this, including a
service pack. It should not do any harm, just seems a bit wasteful,
however you did the best thing by using all the same RAM, it can be a
problem using mixed versions and you should get the best you are going
to get from it. Make sure you visit the makers' website to get latest
drivers for all chipsets and components, that may improve speed. Some
drivers that ship on new machines are not exactly the greatest.

Windows Vista >> [Vista Business] Not recognize 4GB Ram - SonyVaio VGN-SZ57N/C + Vista Business

by Richard G. Harper » Fri, 23 Nov 2007 06:11:41 GMT

Sadly, if BIOS only sees 3GB of memory, there's not much else to be done.
Unless and until BIOS sees it all, it won't matter what you do - if BIOS
cannot see it then Windows cannot see it either.

--
Richard G. Harper [MVP Shell/User] XXXX@XXXXX.COM
* NEW! Catch my blog ... http://msmvps.com/blogs/rgharper/
* PLEASE post all messages and replies in the newsgroups
* The Website - http://rgharper.mvps.org/
* HELP us help YOU ... http://www.dts-l.org/goodpost.htm

Windows Vista >> [Vista Business] Not recognize 4GB Ram - SonyVaio VGN-SZ57N/C + Vista Business

by Charlie Tame » Fri, 23 Nov 2007 06:42:04 GMT


Heh, I missed that, maybe a BIOS upgrade would "See" a bit more but that
is always risky - a few times now I have updated BIOSes to find the
update sixes one thing and breaks another, and it could be terminal for
the motherboard. I still think though it is better to have bought 2
sticks from same place at same time rather than risk mix and match...

Windows Vista >> [Vista Business] Not recognize 4GB Ram - SonyVaio VGN-SZ57N/C + Vista Business

by Charlie Tame » Fri, 23 Nov 2007 06:42:54 GMT


Heh, I missed that, maybe a BIOS upgrade would "See" a bit more but that
is always risky - a few times now I have updated BIOSes to find the
update fixes one thing and breaks another, and it could be terminal for
the motherboard. I still think though it is better to have bought 2
sticks from same place at same time rather than risk mix and match...

Windows Vista >> [Vista Business] Not recognize 4GB Ram - SonyVaio VGN-SZ57N/C + Vista Business

by ray » Fri, 23 Nov 2007 06:52:24 GMT


Not a 'dead end' at all - only with MS. Linux 32 bit systems will
recongize up to 64gb.

Windows Vista >> [Vista Business] Not recognize 4GB Ram - SonyVaio VGN-SZ57N/C + Vista Business

by HeyBub » Fri, 23 Nov 2007 07:15:34 GMT


Makes sense. Linux counts differently. Base 3.5 or something.

2**32 = 4,294,967,296

2**36 = 68,719,476,736

Windows Vista >> [Vista Business] Not recognize 4GB Ram - SonyVaio VGN-SZ57N/C + Vista Business

by Andrew McLaren » Fri, 23 Nov 2007 07:43:43 GMT

"ray" < XXXX@XXXXX.COM > wrote ...

By default, most 32-bit Linux kernels address 4GB of memory. You can
configure the Linux kernel to use Intel PAE (Page Address Extensions) to get
36 bit addresses; and hence access up to 64GB of memory. However this extra
memory is not a free gift. Executing code can't run in memory above 4GB,
even when the OS can address that memory. So application code must continue
to live below 4GB. Also, to be directly manipulated by code, data needs to
be moved from the High Zone (> 4GB) back down into the Normal zone, with a
kmap() or similar call. So, even if you have PAE and 64GB memory enabled, it
won't be any use unless your application is PAE-aware. The memory above 4GB
is mainly useful as cache, for example if you have a database application.

Windows Server 2003 offers the same 64GB facility, by booting with with the
"/PAE" switch; and by using AWE memory APIs in your Windows applications (eg
as in 32-bit SQL Server). The limitations of 36-bit addressing on Windows
are similar to those on Linux. The 32-bit Windows Server 2003 Enterprise
edition can address 32 GB of memory (via PAE). In SP1 this was increased to
64GB. Windows automatically enables PAE on CPUs with the DEP feature. Since
most new CPUs are 64-bit anyway, all this memory jiggery-pokery is
fortunately going away ...

--
Andrew McLaren
amclar (at) optusnet dot com dot au

Windows Vista >> [Vista Business] Not recognize 4GB Ram - SonyVaio VGN-SZ57N/C + Vista Business

by Andre Da Costa[ActiveWin] » Fri, 23 Nov 2007 08:09:14 GMT

The system memory that is reported in the System Information dialog box in
Windows Vista is less than you expect if 4 GB of RAM is installed:

http://support.microsoft.com/kb/929605/en-us

Understanding Address Spaces and the 4GB Limit - [H]ard|Forum:
http://www.hardforum.com/showthread.php?t=1035670
--
Andre
Blog: http://adacosta.spaces.live.com
My Vista Quickstart Guide:
http://adacosta.spaces.live.com/blog/cns !E8E5CC039D51E3DB!9709.entry

Windows Vista >> [Vista Business] Not recognize 4GB Ram - SonyVaio VGN-SZ57N/C + Vista Business

by Richard G. Harper » Fri, 23 Nov 2007 17:19:02 GMT

Dude, it's a dead end if BIOS only sees 3gb. Pray tell, how will Linux fix
that for him? And if it will, will it fix my old Celeron laptop by turning
it into a dual-core powerhouse?

:-)

--
Richard G. Harper [MVP Shell/User] XXXX@XXXXX.COM
* NEW! Catch my blog ... http://msmvps.com/blogs/rgharper/
* PLEASE post all messages and replies in the newsgroups
* The Website - http://rgharper.mvps.org/
* HELP us help YOU ... http://www.dts-l.org/goodpost.htm

Windows Vista >> [Vista Business] Not recognize 4GB Ram - SonyVaio VGN-SZ57N/C + Vista Business

by HeyBub » Sat, 24 Nov 2007 05:03:12 GMT


You obviously know nothing about Loonix. See the function:

f'(x) = imagine(0)+pretend(1)

Windows Vista >> [Vista Business] Not recognize 4GB Ram - SonyVaio VGN-SZ57N/C + Vista Business

by Richard G. Harper » Sun, 25 Nov 2007 06:26:41 GMT

Ah - sincere apologies, and thanks to you for setting me straight. ;-)

--
Richard G. Harper [MVP Shell/User] XXXX@XXXXX.COM
* NEW! Catch my blog ... http://msmvps.com/blogs/rgharper/
* PLEASE post all messages and replies in the newsgroups
* The Website - http://rgharper.mvps.org/
* HELP us help YOU ... http://www.dts-l.org/goodpost.htm

Similar Threads

1. [Vista Business] Not recognize 4GB Ram - SonyVaio VGN-SZ57N/C + Vista Business

I bought my SonyVaio Notebook Computer (VGN-SZ57N, with 1GB of Ram) coming 
with an Vista Business installed, I can't work with its poor performance, so 
I bought / installed another new 4GB(2x2GB) Ram to replace the original 1GB 
of Ram(Product Spec. told that it support 4GB of Ram). As a result I 
realized both the Bios and Vista the OS seeing only 3GB(actually 3070MB) 
Physical Memory. I google around and I heard about Hardware's lacking of 
remapping feature and Software's 32 bit OS limitation issues, but I hope I 
still can hear someone here told me that this is an deadend for getting my 
current computer to see and work with 4GB of Ram.

Please let me know whether this is a motherboard limitation or this is a 
matter of 32bit versions of Windows, any explaination... Thanks so much for 
your kindly help, I just felt sick of keeping search on this topic and I 
think I can accept all of this if this is a matter of time (People told me 
SP1 could solve all of this) or money (They told me I should upgrade to 
64bit Vista Ultimate to work 4GB Ram). Hey, anyway thanks again, have a nice 
day. :)

A. 

2. The reason for no WMP on Vista Business N and Why Vista Business N - Windows Media Player

3. Vista Business x86 to Vista Business x64

Hello, I am on a Microsoft Windows Vista Business x86 SP1 system and I would 
like to move up to a Microsoft Windows Vista Business x64 SP1 system, that I 
have ready to go.  I have used and LOVE the Migwiz.exe or Microsoft Easy 
Transfer or Migration Wizard, and I wonder how I can get it to work going 
from x86 to x64?  I can obviously copy my stuff one at a time, folder by 
folder, but if the system can do it for me, that would be great!
Thank you.

Matt

4. Upgrade Vista Home Premium to Vista Business using FULL Business C

5. Vista 32bit not recognizing 4GB RAM - The Final Word

I have created this post before, but I will give one more try. None of the 
discussions I have seen to date answer the question.

I have 4x1Gb RAM installed. Vista recognizes 2.93Gb and BIOS recognises 
3008MB. I changed the Memory Remapping option in BIOS to Enabled. BIOS 
recognises 4GB (4096MB) and Vista now recognizes 2GB. I installed 
VistaBootPro and Enabled PAE (Physical Address Extension) mode. There was no 
difference in the RAM recognized by Vista.

Some postings on these forums claim that certain devices (such as video 
cards) are reserving part of the physical address space for their device 
drivers. That successfully accounts for the difference between 3GB and 
2.93GB. It does not account for the difference between installed RAM (4GB) 
and the available RAM (2.93GB). Installed hardware devices cannot possibly 
reserve more than 1GB of physical RAM.

In order to test my hypothesis, I removed 1GB RAM, giving me 3GB installed. 
Vista shows 2.93GB of available RAM, precisely the same as was available with 
4GB installed.

I can only conclude that unless there is a switch in the BCD file that 
Microsoft has not told us about, Vista 32bit can only use 3GB RAM. Microsoft 
should make clear the maximum amount of RAM that can be used by Vista 32bit, 
under what circumstances it can be used, and how to use it.

6. Vista beta2 64bit does not recognize all my RAM - 4GB - Windows (64Bit)

7. VISTA business does not recognize me as admin of the box

I am running VISTA BUSINESS.  I joined my set to the domain.  I am in the 
administrators group and I am a DOMAIN ADMIN in my domain.  

However my computer does not recognize me as having admin rights?  HUH?

My domain account is also in the administrators group.

I don't want to right click everything and run as administrator....we have 
other people here who loaded VISTA the same way I did and they aren't having 
problems.

Any help would be greatly appreciated!

Kevin

8. Action Pack Vista Business Upgrade dvd not recognized