Click here to Skip to main content
15,881,938 members
Please Sign up or sign in to vote.
1.50/5 (2 votes)
See more:
hello, Can We make a disk cleanup(Like Windows 7) in vb.net?
And how to release RAM via vb.net programmatically ?
Posted
Comments
[no name] 2-Sep-13 9:16am    
For your first question, you would, learn VB,NET, do some research, come up with some program requirements. write some code, test, fix bugs.
For your second question, don't worry about it. The garbage collector handles that for you.
Sergey Alexandrovich Kryukov 2-Sep-13 10:48am    
5! :-)
—SA

1 solution

First, you would gather a large set of requirements detailing exactly what you mean by "disk cleanup". What are the items you cleaning up? Where do you look for them? What kinds of things can you clean up and what are the things you should touch? This is going to take a bunch of research on your part, not ours.

As for "freeing memory", you don't. You absolutely do not touch the memory space of another process (you can't without admin permissions anyway!) unless you want to make the system so unstable it crashes at least an application or two, and at worst, all of Windows.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900