-
A Vbscript code.
I have heard from many people that this code would free up RAM when PC becomes sluggish:-
FreeMem=Space(64000000) (saving it as .vbs)
How its possible ?
I think this code will just allocate 64 MB to FreeMem variable. So more 64 MB more will be occupied.
Please explain. What the code actually does ?
-
Re: A Vbscript code.
It uses lots of memory, and when the .vbs finishes that memory is released.
I have no idea how that is supposed to free up other memory... the best assumption I can come up with is that (if that is the amount of 'free' memory is less than 64 MB) it will force Windows to put things that are currently in physical memory to the paging file - but it will bring them back automatically as needed.