Hello,
The phone's RAM and other storage places (as memory card) can be defragmented witch This program. I've tried it, but it stucks on gwes.exe The phone is simply crashed, every time I try to defragment the RAM. on this file. I need to open the phone and do a soft-reset.
Any solutions for this one?
I don't think that you need to defrag your phone device
It's a scam, defragmenting is not required, nor effective, on flash storage. The idea behind defragging is to minimize the distance the read/write head on a mechanical drive needs to go, thus making the drive perform better.
If you actually want the device's performance increased, search for Advanced Config and Cleanram, and apply the recommended memory tweaks.
Dave
DaveTheTytnIIGuy said:
It's a scam, defragmenting is not required, nor effective, on flash storage. The idea behind defragging is to minimize the distance the read/write head on a mechanical drive needs to go, thus making the drive perform better.
If you actually want the device's performance increased, search for Advanced Config and Cleanram, and apply the recommended memory tweaks.
Dave
Click to expand...
Click to collapse
Too True! Same theory applies to a desktop OS. If Windows 7 detects that it is installed on a flash device, it disables defrag.
DaveTheTytnIIGuy said:
It's a scam, defragmenting is not required, nor effective, on flash storage. The idea behind defragging is to minimize the distance the read/write head on a mechanical drive needs to go, thus making the drive perform better.
If you actually want the device's performance increased, search for Advanced Config and Cleanram, and apply the recommended memory tweaks.
Dave
Click to expand...
Click to collapse
Thanks That worked like a charm. But, where I can find the recommend memory tweaks for Advanced Config Tool? Can't find it myself, so if someone can provide a link I'm happy
Edit: Another question. IS there any oftware for updating album arts automatically? I have many tracks, but none of them has a cover...
DaveTheTytnIIGuy said:
It's a scam, defragmenting is not required, nor effective, on flash storage. The idea behind defragging is to minimize the distance the read/write head on a mechanical drive needs to go, thus making the drive perform better.
If you actually want the device's performance increased, search for Advanced Config and Cleanram, and apply the recommended memory tweaks.
Dave
Click to expand...
Click to collapse
wrong for the micro SD...
The memory is different to disk, so there is (almost) no seek time. However, when two bits are on the same memory 'line' it is sometimes slower to retrieve both of them than when they're on two different lines. So, defragging can change the access time. (But it will not get significantly better as when used on hard disks)
Related
Hey all,
I've been searching for techniques people use to make transparent controls. The problem with windows mobile is that windows always have the CLIPCHILDREN window style set. So you can't grab the contents of the parent window (in WM_ERASEBKGND for example) because it isn't there.
One technique would be to have the parent pass the handle of the background DC it uses to the child control but that involves having a memory DC around all the time. And if the child control is covering any sibling controls you'd be out of luck as well.
Another solution I've read about is to temporarily hide the child window so the parent window is forced to redraw the parts that would normally be obscured by the control. I personally do not like this approach. (the drawbacks are also discussed on some MS forum, i'm not allowed to post outside links yet, google for "Rounded Buttons : Does any one see any problems with this method" and you will find it)
So, there are ways to achieve what I'm looking for but they are far from optimal. Just wondering what everybody else is doing to achieve this.
The responses in that thread are pretty much spot on (funny to find I know over half the posters in that thread by reputation).
If you want to do this well, you really need to draw your own stuff, making a complete custom UI.
There is no proper way to do this in Windows Mobile (without runtime kernel patching, that is ).
Chainfire said:
The responses in that thread are pretty much spot on (funny to find I know over half the posters in that thread by reputation).
If you want to do this well, you really need to draw your own stuff, making a complete custom UI.
There is no proper way to do this in Windows Mobile (without runtime kernel patching, that is ).
Click to expand...
Click to collapse
What do you mean by "drawing your own stuff"? I am drawing everything myself now in all control i made using AlpheBlend() where needed. But that still doesn't resolve the background issue. Or are you referring to just drawing everything in a single WM_PAINT handler and only having one screen DC?
PegNosePete said:
What do you mean by "drawing your own stuff"? I am drawing everything myself now in all control i made using AlpheBlend() where needed. But that still doesn't resolve the background issue. Or are you referring to just drawing everything in a single WM_PAINT handler and only having one screen DC?
Click to expand...
Click to collapse
Well the method I use in my own new UI's is indeed per form (excluding WinAPI controls like edit boxes and such) draw using only one DC.
The problem is that any 'windowed' control, the parent will not draw to the DC if a 'windowed' control overlaps. Due to CLIPCHILDREN all data drawn to that position is simply lost.
Now, handling WM_PAINT you can get the entire update region, which tells you which parts of your form have to be redrawn. You must use this information, because blitting the entire form is very slow!
In essence, to do this right you well end up faking most of the GDI system, including your own 'fake' child windows, invalidating and revalidating portions, calculating the intersections of your 'fake' invalidated regions of the screen with the update region you get in WM_PAINT and redrawing those parts.
There are several different strategies to go about this, one is to redraw on demand, another one is to use double buffering.
I personally mostly use the double buffering technique, as this easily provides every 'fake' control with a bitmap of it's own region. A child control can then alphablend using the parent's buffer as one of the alphablend sources.
You can of course combine this with keeping state information whether a child, grandchild, etc is using alpha / transparency and this with an algorithm deciding which control needs double buffering or can draw on-demand, which can give both speed and memory use advantages. In a lot of situations you can then suffice with only double buffering the 'top' component (form) and a select number of child components.
Of course two drawbacks of per-control double buffering are speed and memory use. You can eliminate the complete-form double buffer with some smart coding and calculating. This will give you a slight speed and memory advantage. Memory use is high because many of your controls will have a copy of their current state.
This can be as complicated, feature-filled, fast and efficient as you are willing to make it. The better you can design the code the better it will work, but it is not a trivial task. There are many ways to go at this, no one way is definitely better than the other ways. It depends on what your applications does with it's display, how simple you are drawing (are you making a simple white background, or a background based on images for example gradient?), which method is more efficient.
The other method is getting the update region and actually perform redrawing of those invalidated sections (instead of copying from buffer). I can tell you from experience that if you are using image backgrounds and alphablend calls, this will be _much_ slower than double buffering (if done right).
I know all of this probaby makes little sense, I'm not a hero with explaining things ... you really have to figure this out for yourself, I guess.
Other advantages of building your own UI system are that if you do it smartly and buffering, it is very easy to port to directdraw, and possibly even GL. But I must warn you, on far the most devices actually using directdraw for this stuff is not much faster, it is in fact hardly noticable. If you manage to make a GL port, that can especially on older HTC devices (pre-HD2) be much faster.
OK, I got my Sprint TP2 yesterday and was playing around with it. I installed my SD card that had some files on it and when I tapped on one document file by mistake it "unzipped" it to the internal storage completely filling it.
I've looked all over but cannot seem to locate the internal storage memeory on the phone.
HELP!
Thanks in Advance.
OK, never mind. But.....
OK, after I opened it back up today I started looking at it like my old PDA and found the file and deleted it.
But..
I'd like to free up more internal memory as it shows I only have 158MB free. And only 59MB free for program memory. I'll be getting a 16GB card soon to replace my 2GB I have but I'd like to have more internal memory.
What programs/files can I delete safely from my Sprint TP2 to free up more space?
JohnMcD348 said:
I'd like to free up more internal memory as it shows I only have 158MB free. And only 59MB free for program memory. I'll be getting a 16GB card soon to replace my 2GB I have but I'd like to have more internal memory.
What programs/files can I delete safely from my Sprint TP2 to free up more space?
Click to expand...
Click to collapse
158MB of "Storage" memory is actually quite a bit -- it's 60% open/empty. Considering that a lot of applications are less than a 1 MB, and a huge one is 5MB -- you still have room to install dozens directly to the device. To minimize use of Storage, install as many apps as possible to your card. And, wherever possible, configure settings on apps to store their data to the card...and set the camera to save to the card, etc. Even a 2GB card is a lot of space -- unless you're carrying full-length, high-quality movies.
Program memory gets filled up by stuff that's currently running, so deleting installed programs won't free up more of that -- unless these programs run automatically/all-the-time.
MCbrian said:
158MB of "Storage" memory is actually quite a bit -- it's 60% open/empty. Considering that a lot of applications are less than a 1 MB, and a huge one is 5MB -- you still have room to install dozens directly to the device. To minimize use of Storage, install as many apps as possible to your card. And, wherever possible, configure settings on apps to store their data to the card...and set the camera to save to the card, etc. Even a 2GB card is a lot of space -- unless you're carrying full-length, high-quality movies.
Program memory gets filled up by stuff that's currently running, so deleting installed programs won't free up more of that -- unless these programs run automatically/all-the-time.
Click to expand...
Click to collapse
Yeah, if you have 158MB storage free on the phone right now, be sure to take a screenshot if it so you can look back later and remember "back when" you had still had that much free space
MCBrian is right, moving stuff to your memory card is the best way to free up space on the phone's memory and keep it from filling up unneccesarily. Like he said, first change the camera settings to always save to the card, otherwise that will always eat into your available on-board storage, and quickly. I would also suggest going into the current album of pics on the phone, deleting anything you don't want to save, and move whatever you do want to save into a "pics" folder on your card (HTC's photo album can include pics saved there as well). Same for music...store any and all of it on the card, not the phone's memory. The one caveat with that is that the HTC music player (the music tab in touchflo) doesn't always find music on the card, not for me anyway, but I never liked that player anyway.
Managing my memory that way has given me enough space that even with dozens of programs on the phone, all of them installed to the phone's memory, I still have 95MB free space for programs on there. In fact, I still have a fair amount of junk (stuff I tried but don't use, etc) in there that I need to go clear out. Installing some of your programs to the memory card can help too, but if you're careful you can keep enough storage memory on there available to be able to avoid ever needing to do that (and the hassle that comes with trying to figure out which programs are ok with being installed on the card, as well as managing/maintaining separate install locations).
If you're going to start using file explorer to dig around in your directories, I highly recommend you first install File Explorer Extension. It simply adds a lot of the stock destop file explorer functionality that's missing in the mobile version ("open with>" in the context menu, for example!)...makes a HUGE difference in ease of use when digging through your file structure. I attachted it below, "fexploreext v2.05.CAB"
For keeping your RAM ("running" memory) from growing too fast, I also suggest running the other 2 cabs I have attached below (SSK TP2 Dynamic Resource Proxy.cab and nopushinternet.cab), they make a big difference in the active memory management on the TP2, you'll probably see a noticable difference right after soft-reset.
Thanks for those CABs. I'm pretty good at managing the storage on things like this, I just couldn' find the files/folder on the newer phone using the options available in WinMo6+. I've been using an Axim for years runnign WinMo5 and earlier versions. Storage cards are pretty easy for me as I'm use to running stuff between the Main/CF/SD cards that I had on the Axim. I just have alot to learn about the newer 6.1 OS. Probably, by the time I get used to 6.1, Sprint will come out with 6.5(6,7,whatever) and I'll get to relearn everything all over again.
If there are any other programs you'd recommend to help me out I'd greatly appreciate it.
JohnMcD348 said:
Thanks for those CABs. I'm pretty good at managing the storage on things like this, I just couldn' find the files/folder on the newer phone using the options available in WinMo6+. I've been using an Axim for years runnign WinMo5 and earlier versions. Storage cards are pretty easy for me as I'm use to running stuff between the Main/CF/SD cards that I had on the Axim. I just have alot to learn about the newer 6.1 OS. Probably, by the time I get used to 6.1, Sprint will come out with 6.5(6,7,whatever) and I'll get to relearn everything all over again.
If there are any other programs you'd recommend to help me out I'd greatly appreciate it.
Click to expand...
Click to collapse
Well the file structure is obviously still pretty much the same windows-standard, just some locations moved around. The bad news is that none of the programs installed by default in the stock rom are removable through the normal remove programs dialog, or any 3rd-party app I've seen. However you can just go perform the same steps manually by deleting any folders matching the program/publisher's name in these locations:
<root>/program files
<root>/application data
<root>/windows/start menu
...and then searching in the registry to delete any keys in there for the program as well. You'll need a registry editor to do that, I've attached my favorite free one, PHM Regedit...just search your registry by the name of the program you're removing. If you're not familiar with messing around in the registry, there's guides available here, let me know if you need me to point you in that direction. And, as always, be SURE to make a backup copy of your registry (PHM can handle that for you) before making any changes.
Here's a couple of other utilites I've found useful:
Advanced_Configuration_Tool_v3.3.cab -Gives you acccess to all sorts of advanced UI and system configuration options, a favorite and often-referenced tool here at xda.
Extra Camera Modes.cab -unlocks some capture modes that the TP2 camera is capable of, but aren't enabled from the factory on US models. New modes include MMS video, Burst, Sport, and geotagged images
SDK certs.cab -windows authentification certifcates necessary for installing many hacks/apps/cabs/etc that are available here
DivXPlayer_PPC.cab -a lean, mean .avi player from the people who came up with DivX (the codec standard, not the movie rental crap lol). I rip my DVD's at home to ~700MB DivX files, save them on my memory card, and use this app to play them...it gives far better performance and quality than any of the other players I've tried.
Very Much appreciated.
Now, I seem to have another probelm and I don't know if it's my unfamiliarirty with the newer Sync Center or am I just doing something wrong, or if it's an issue with the programs I've got.
I'm new to both Win7 and WinMo6+(and touch flo, etc). Up to now I had XP(w/ ActiveSync) and my WinMo5 Axim.
I can't seem to get my programs installed onto my TP2. I use a prgram for work called Tarascon. It's a medical reference program. I tried to install it yesterday and I never got the repsonse on the TP2 to request permission to install it. Today, I tried to install SOTI's Pocket Controller and this time I did get the request and I installed it to the device but I can't find it anywhere on it. It didn't install an Icon on the device and I've looked through every place I could think and can't even find an installation file for it. I didn't get an install error or failure notice and my memory size dcreased 2MB so something happened.
Glad to help
Since I don't really know anything about the medical reference software you're using, my first suggestion would be to check with the publisher and make sure that the version you have is compatible with Win7 and WM6.x...often software that worked on WM5 won't work just right on 6.
As for SOTI Pocket Controller, the latest version available on the site should be compatible with your setup. When you install it, are you doing that by running a .exe file on your PC and then letting Mobile Device Center (the new generation of ActiveSync) handle the install from there? It might be advisable to just moving the .cab file for the program straight to your phone (device memory or storage card is fine), and run it from there to install...bypasses the MDC, and ends up doing the same thing in the long run. In fact, it might be worth trying the same thing (running the .cab straight from your phone) with the medial software you've got.
It might just be that I'm using Ver4 and it doesn't want to run right with the newer install setup(MDC).
It worked fine when I installed it on my Axim(WinMo5) and using WinXP(ActiveSync).
Another odd thing, every time I plug in my TP2 and MDC starts to Sync, I get the request from Win7 for the Tarascon program to initialize. So that tells me something, somewhere set a pointer to my TP2 to update the program. I think.
There you go!
http://wmpoweruser.com/?p=15451
Techticker.co.uk have published this summary of the recently held UK TechDays seminar held by Microsoft to introduce developers to their new mobile OS.
While the 9 minute video by and large cover information we have heard earlier, one issue of note is that apparently each application will only have access to 2 GB of storage on the device, irrespective of the actual size of storage.
Don't really see that as a problem; the main storage hogs are going to be music/videos/pictures, which are handled through accesible libraries without this 2GB limit. Maps for GPS apps could hit the limit, although I think I see the envisaged scenario being more on streamed data with caching.
Yeah I don't see what's the problem here. Just more BS drama from WMPoweruser to generate traffic.
Tito662 said:
Yeah I don't see what's the problem here. Just more BS drama from WMPoweruser to generate traffic.
Click to expand...
Click to collapse
The problem is that it's just heuristic restrictions on the usage of the operating system.
Why would you limit the size of the space an application can use? Is the underlying OS FAT32 and Microsoft is worried that stupid app developers will store everything as one monolithic file and therefore break their app when the store reaches 2GB?
It doesn't make sense, and restrictions that don't make sense -- regardless of what they are -- are a problem.
Yea, this is pretty restrictive, but you guys make it sound like 512MBs. How many apps do you have installed on your device as of now?
Spike15 said:
The problem is that it's just heuristic restrictions on the usage of the operating system.
Why would you limit the size of the space an application can use? Is the underlying OS FAT32 and Microsoft is worried that stupid app developers will store everything as one monolithic file and therefore break their app when the store reaches 2GB?
It doesn't make sense, and restrictions that don't make sense -- regardless of what they are -- are a problem.
Click to expand...
Click to collapse
No, it's Silverlight Isolated Storage for saving stuff 'on disk'. SIS stores have specificed, finite sizes. Who knows, it might be fat32, might be exfat.
Spike15 said:
The problem is that it's just heuristic restrictions on the usage of the operating system.
Why would you limit the size of the space an application can use? Is the underlying OS FAT32 and Microsoft is worried that stupid app developers will store everything as one monolithic file and therefore break their app when the store reaches 2GB?
It doesn't make sense, and restrictions that don't make sense -- regardless of what they are -- are a problem.
Click to expand...
Click to collapse
This is limited by Silvelight...
but i don't think this is a big problem,this limitation can easy change by update
This isn't really accurate. They haven't fully decided on a max space. WP7 uses exFAT and isn't limited to a single file size. I believe this can be configured per app and developers will be able to request more than 2GB if their app needs it for whatever reason. 2GB is just the 'default' and isn't even enforced in the CTP. http://msdn.microsoft.com/en-us/library/ff402541(v=VS.92).aspx
My bigger problem with this isolated storage is that for no reason at all other than bad engineering it's incredibly slow. sviluppomobile.blogspot.com/2010/04/wp7-isolatedstorage-speed.html about 127x slower.
When I posted about this on the msdn forum, some MVP just basically told me to "use a webservice" and if i don't than this is not the platform for me.
I had issues with that when i was making some silverlight apps some time ago. But i figured them out. What microsoft is doing here with windows phone 7 is that they are using the phone to marry apps with their cloud counterparts. Apps like netflix ap mobile nytimes will use if at most 10 mb of local storage on the device. anyone that need more than 512 mb of local storage for their app, is doing something really wrong. in regards to speed of the local storage i have realised that each local storage created is essential a true isolated storage area. meaning its essentially a small partiton formatted in some format (might be fat) and all the process of reading from that and storing to it really gets some painful io problems. But it seems with windows phone 7 the unified storage engine seems to fix that. Essential from my views of the way my programs are working. when an app is launched. all other apps are essentialy frozen in their last state, so only essential apps and stacks are running. during this process the local storage is put into ram and the application access the program at close to the native speed of the ram. when a user hits the back button it essential takes the local storage and saves back to the slower storage medium and saves the state of the application..
hope this makes sense.
What do you plan on installing on your WP7? World of Warcraft?
Imho, you don't need more than 2 gigs per app, hell, even my Tomtom with all Europe installed on it fits on my 2 gigs microSD card.
Remember, it's a freaking phone!
Have been doing some relatively extensive testing of the ROM and whislt it's not perfect by any means, here's what I have found makes it a hell of a lot more useable. The ROM does seem to be very fussy about what it does and does not like.
First off, I would suggest that you carry out a Task29 format of the device to ensure the ROM memory is clean.
In respect of this, I suggest that you remove any storage card as this causes a few issues in trying to get into bootloader by pressing the volume down key and the reset button.
It doesn't seem to make much difference if the SIM card is left in or not, but would recommend removal just in case.
(if you do carry out a Task29 format and brick your device, it's your problem, not mine, you didn't have to do it)
Once you have entered bootloader and re-connected you device to you PC, run the ROM update utility for 2.07.xxxxx
Once this has completed, turn off your device and re-insert your SD Card. (I tend to make sure the card has been formatted and is completely blank before re-inserting it).
Then, perform a hard reset. in doing this, it does seem to eradicate reported issues with the speaker phone and the call volume.
Then I install .NET3.5 and MemMaid 2.3. Actually, whilst I mention MemMaid, Sense 2.5 does not like certain elements, specifically the Quick Cleaner, Advenced Cleaner and the Reclaim RAM tools. Every time I have used these and soft reset, the device wants to make a data connection. Even un-installing MemMaid does not fix this, only a hard reset. MemMaid does have a good registry edit tho. I think I have narrowed this down to the HTC Peep app.
Next up is to carry out a number of registry tweaks, there's quite a few:
Change:
HKLM/System/GDI/GLYPHCACHE To: 524288 (change both keys in there)
This allows for much smoother font rendering, especially when scrolling and defiantely works!
Change:
HKLM/System/StorageManager/Filters/fsreplxfilt/ReplStoreCacheSize To: 131072
This creates a filesystem 128k sector cache filter, improves data throughput from ROM to RAM (probably) and does seem to improve indexing response and file browsing.
This didn't seem to make much difference on my device, but every little helps.
Change:
HKLM/Drivers/Display/VMMaxHeapSize To: 33554432
This changes the VideoMemory max heap from 16k to 32k. Definately works!
Change:
HKLM/Software/HTC/HTCMenus/EnableVSync To: 0
This turns off VSync in sense, making it MUCH smoother. check out the speed of the weather animations now! see that they "judder" less! On my device, this was set to 0 by default. On the weather demo, the windscreen wiper is on speed!
Change:
HKLM/Software/HTC/MemoryRequired_ByAP To: 524288
Lets allow SENSE to have some room to breath, shall we? - Definately works! i would go as far as saying as to even double that figure. Definately makes a diffeence when editing contacts.
Credit where Credit is due, the above is brought to you by g.lewarne Taken from here
Real Exit for HTc Album
By default, when you click on the ok/X button in HTC Album, the app minimizes and does not exit. Make the following change to really exit the app and thus save some program memory: HKEY_LOCAL_MACHINE\Software\HTC\HTCAlbum "ok_minimize" = dword:0
This works well, but then when viewing photos, they always start blurred and then clear, slightly annoying.
Boost Performance:
Navigate to: HKEY_LOCAL_MACHINE\System\StorageManager\FATFS
Change - CacheSize to 4096. Works for some and not for others though.
Not sure if this does actually make a difference, but it's good to go.
Speed Up Scrolling of Internet and People Tab, Album Page and All People Page
You can spued up the speed of scrolling when you flick your finger by modifying the following registry tweak.
HKLM/SOFTWARE/HTC/HTCScroll/velocity_factor
Change to 20000 or higher. Experiment to what suits you. Definitely works!
Again Credit due where credit due, these and other hacks are brought to you by tboy2000 which can be found Here.
Facebook albums not working?
Try adding this Reg entry:
HKEY_LOCAL_MACHINE\Software\HTC\OnlineAlbumSDK"PhotoPath"="\OnlineAlbumTemp\"
IIRC, this is a String value. You don't need the HTC hotfix for this although it won't do any harm installing it.
This is brought to you by eras2r and can be found Here There is also a cab file to do it for you on that page. Only thing is, I want it to point to a folder on my storage card
There are of course the other usual hacks and modifications for the TP2, but they have been heavily discussed in other threads.
I hope the above helps you out, it certainly makes this ROM a far more enjoyable experience!
Many thanks for posting these tweaks. I recall you had a lot of Sleep of Death issues - did you resolve them?
Edward Lowy said:
Many thanks for posting these tweaks. I recall you had a lot of Sleep of Death issues - did you resolve them?
Click to expand...
Click to collapse
Nope, only had that issue once.
Scroll Tweak - Thank you
Thanks so much for the scroll tweak. I've been looking everywhere for this! It would drive me nuts that it was sluggish.
Speed Up Scrolling of Internet and People Tab, Album Page and All People Page
You can spued up the speed of scrolling when you flick your finger by modifying the following registry tweak.
HKLM/SOFTWARE/HTC/HTCScroll/velocity_factor
Change to 20000 or higher. Experiment to what suits you. Definitely works!
Again Credit due where credit due, these and other hacks are brought to you by tboy2000 which can be found Here.
Click to expand...
Click to collapse
Verizon HTC TP2 WM 6.5
This is guide made for Windows 8, but can be used with any version of Windows. The options might just vary a little.
**This guide is meant to provide a way to improve performance on your computer. This is in no way, shape, or form, a fool-proof method (although i tried to make it fool-proof). I will not be responsible for any damage done to your computer by using any of these tools in this thread.**
This guide will show you ways that I have found to optimize windows to get the most you can out of any computer. Some of these tools come with windows, while others I will provide links for your convenience.
To make some of this easier, i have created a '.bat' script for your use.
HDD – Hard Drive
Free up space: Using Windows Tools
This first tool comes with windows. It is the disk cleaner.
The easiest way to find this tool is to go to the start page and type in: “cleanmgr.exe” and click on that.
This takes a little while to sort through your hard drive. Here are the categories that I recommend cleaning:
Code:
[LIST]
[*]Downloaded Program Files
[*]Temporary Internet Files
[*]Recycle Bin
[*]System error memory dump files
[*]Temporary files
[*]Thumbnails
[*]Any of the user error reporting categories if you want
[/LIST]
There is the option to clean system files, which requires administrator privileges. Here are the additional categories that I recommend you clean:
Code:
[LIST]
[*]Previous Windows Installation(s)
[*]Windows Update cleanup
[/LIST]
Depending on how much data is going to be erased, this may take awhile. This tool also tends to use a lot of CPU
Free up space: Using CCleaner
This second tool is not part of windows, but is simple and easy to use. It is called CCleaner. This is a program that has a lot of options that are explained in the different sections (Registry)
- Link: CCleaner
For this category, you will be using the cleaner section which is opened by default when you open the program.
Everything that is checked, I recommend keeping checked. You may choose whatever you want though.
1st click analyze and let it sort through your HDD
It may pause and ask you if you want to force close Chrome or any other conflicting program. Go ahead and let it force close them.
2nd look at what it is going to remove a second time and make sure it’s all stuff that you don’t care about. After that, you may click clean.
There is a third tool that is under the “tools” section in CCleaner. It is the driver wiper.
When you go to this section, you will only wipe the free space on your HDD.
The 35 passes option is a little overkill. Feel free to choose what ever option you want though.
If you have an SSD, DO NOT do the 35 passes. this will only shorten the SSD's life. See more info regarding this in post #4
This could take many hours to complete so make sure you have time.
This also may not give you a whole lot of space, but it should give you some.
Make your disk load files faster:
The major thing that many people recommend to do often, is to defragment the HDD. For people with SSD's, this is not needed
This program is found by going to the start menu and typing in “defrag” in the settings section.
When this opens, click on your HDD, and then click on analyze. It will then scan your HDD and tell you the amount of your HDD is fragmented.
You then click on optimize and this process will take a while as it does about 13 passes over the HDD
Registry
*For this procedure, you will be using CCleaner again. For those who skipped the HDD section, link for this program is in that section.*
In CCleaner, click and on the registry section and then click: “scan for issues”
After it scans, you can take a look at what it has found before it removes them. You can also choose what to delete.
Click fix issues, and this is when it will ask to backup the registry. I HIGHLY recommend doing this.
It will then ask you one by one what you want to do with each entry. You also have the option to fix all issues with one click
Uninstalling programs
For uninstalling programs, the windows uninstaller does not do it for me. I use revo uninstaller
- Link: Revo Uninstaller
This program is pretty self-explanatory but it does more than just uninstalling the program. After the program is uninstalled revo will scan your HDD and your registry to find anything that it believes it left over from the program.
BEWARE: make sure you choose wisely what you delete. Revo does make a system restore point before it uninstalls the program, but this is not a fool-proof method.
**On windows 8, there is a small bug, as far as I know, that when scanning all of this, it will use a decent amount of your CPU.**
*If any of you have ideas on how I can make this guide better whether it is by adding methods, or just clarifying some of these directions as this is the first time that I have written a reference guide like this. Any help is greatly appreciated. :fingers-crossed:
Thanks:
Microsoft: for Windows
Piriform: for CCleaner
VSRevo Group: for Revo Uninstaller
BillP Studios: for WinPatrol (Next post)
GoodDayToDie: for giving some major tips.
Awidawad: letting me use his code as a guide
Tips:
GoodDayToDie: Post #4
SixSixSevenSeven: Post #5
Tips on how to make your computer start-up faster.
Programs start-up
Using task manager
In task manager, there are a ton of options that can be used to help performance. This is especially true with the new task manager that
Microsoft has pushed out with Windows 8.
For the majority of people, when you open up task manager, it will look like this:
To get the full format of task manager, which you will need for this process, you will need to click on the button at the bottom that says: “More Details” and it will open the full version of task manager.
Now to disable start-up programs:
At the top where all the tabs are, click on the “Start-up” tab and you should see something like this:
Now all you have to do is click on the process that you do not want starting with your computer, and click the “Disable” button. Here are some processes that I recommend but you can choose whatever you want.
Code:
[LIST]
[*]Adobe CS6 Service Manager
[*] Apple Push
[*] Bing Desktop Application
[*] Evernote Clipper
[*] Hamachi Client Application
[*] iTunesHelper
[*] KiesPDLR
[*]Logitech Download Assistant
[*]Quicktime Task
This is only what I have disabled. You may disable whatever you want because there are no system tasks that are there to disable.
**That does not meant that you can disable whatever you want because that might cause some programs to not work**
[*]Using WinPatrol
[/LIST]
This program does more than just control start-up programs. This section is only going to talk about the start-up section.
This section of the program, in essence, is a more advanced program to deal with start-up programs.
- Link: WinPatrol
After you install WinPatrol, go to the "Startup Programs" section. It should look like this:
Run through the list of programs and find ones you want to disable. My list of recommended programs is listed under the task manager section.
NOTE: If you do not know if what you are going to disable is going to effect any of your programs, then I would recommend using the "Disable" button. If you KNOW that it WON'T effect any program, then feel free to hit the "remove" button
This program does not only take care of start-up programs. There are many other features such as Active taks and IE Helpers that i will not be covering in this thread. I do however, recommend that you look at them.
Services:
Using Service Manager:
This is going to show you how to use the service manager that is built into Windows to disable some services form starting automatically with your computer. For this, you will not be disabling any services completely, but rather just have them set to manual which will allow them to run when needed.
Start by opening the start page and typing "services" into the settings section. you should end up with a screen that looks like this:
Click on "View Local Services"
Right-click on a service such as "Apple Mobile Device", click properties, and change the startup type from Auto, to Manual.
Choose other services and do the same.
WARNING: I highly advise you NOT to disable any system services as this could cause problems. I am at no fault for what you disable.
Tips from users:
GoodDayToDie said:
tip of my own: there's a bunch of Windows Services which are enabled by default because *somebody* might need them, but which are really unnecessary on most computers. Some good examples include the Bluetooth service (if you don't have or don't use Bluetooth), Encrypting File System (if you don't use EFS), Print Spooler (if you never print), and so on. These can be disabled from the Services management console (services.msc, or find Services using the Start search). I actually recommend just turning them from "Automatic" down to "Manual"; this way, if you ever do want to use such a thing, it's possible that it will still work when you try to invoke it. As with other tweaks, do bear in mind what you've changed and watch for any potential system problems; if you're unsure, either revert the change or don't make it in the first place. Changing certain system services will make the system nigh-unusable. Also, be aware that changing many of these services really won't help much; it might shave fractions of a second each off of the bootup time of the system and/or save a few megs of RAM, but an idle service really isn't that big a threat to system performance if it's not coded completely horribly.
Click to expand...
Click to collapse
SixSixSevenSeven said:
In almost a year on win7 I never had to manually invoke defrag, whenever I went to and analysed the disk it was only ever 1%, on the 80gb hard disk I had at the time its an insignificant amount of dragged data and I ignored it. I got windows 8 in November and so far it still says 0%.
I would recommend at least checking the values though, especially for external drives (my one hit 20%, think it was unplugged during windows scheduled defrags)
Click to expand...
Click to collapse
the_scotsman said:
Windows 8 knows if an SSD is being used. If it sees one, it won't allow you to "defrag". it will still allow you to "optimise" the drive. What this does is to manage TRIM to help clean the drives.
Look up TRIM if you want to know more. But do not disable the scheduled "optimisation" of an SSD drive as it's not a defrag, it does other things.
More info here: http://www.helpwithwindows.com/Windows8/Windows-8-on-Solid-State-Drive.html
Click to expand...
Click to collapse
One last one just in case
also if this is in the wrong section, can someone please let me know. Thanks :good:
this guide is also a work-in-progress and no where near complete. again, feel free to offer whatever advice you have
A couple things to point out here, quickly:
* Don't try to do a massive overwrite a la CCleaner if you have a SSD. It will do nothing except use up a small portion of the disk's lifetime. SSD logical sectors are dynamically mapped to physical NAND blocks by a wear-leveling algorithm; overwriting the same address on the "disk" 35 times probably just means burning one write operation (out of tens or hundreds of thousand each, mind you) on 35 different chunks of NAND memory. Trying to read the "erased" data back in after even a single overwrite is quite futile, though.
* Manual defragmentation shouldn't be necessary on Win7 or later, unless somebody has disabled or otherwise tampered with the automatically scheduled task that runs it in the background. If you never leave the computer on except when it's in active use, though, it might be necessary. Also, SSDs don't benefit from defragmentation in any meaningful way - the speed boost is completely trivial given the lack of seek times, but again it burns a bit of NAND lifetime - although Windows should be smart enough to figure this out on its own.
A tip of my own: there's a bunch of Windows Services which are enabled by default because *somebody* might need them, but which are really unnecessary on most computers. Some good examples include the Bluetooth service (if you don't have or don't use Bluetooth), Encrypting File System (if you don't use EFS), Print Spooler (if you never print), and so on. These can be disabled from the Services management console (services.msc, or find Services using the Start search). I actually recommend just turning them from "Automatic" down to "Manual"; this way, if you ever do want to use such a thing, it's possible that it will still work when you try to invoke it. As with other tweaks, do bear in mind what you've changed and watch for any potential system problems; if you're unsure, either revert the change or don't make it in the first place. Changing certain system services will make the system nigh-unusable. Also, be aware that changing many of these services really won't help much; it might shave fractions of a second each off of the bootup time of the system and/or save a few megs of RAM, but an idle service really isn't that big a threat to system performance if it's not coded completely horribly.
+1 on defrag. In almost a year on win7 I never had to manually invoke defrag, whenever I went to and analysed the disk it was only ever 1%, on the 80gb hard disk I had at the time its an insignificant amount of dragged data and I ignored it. I got windows 8 in November and so far it still says 0%.
I would recommend at least checking the values though, especially for external drives (my one hit 20%, think it was unplugged during windows scheduled defrags)
A note on freeing up space (which is a good idea!):
goldflame09 said:
I recommend that you use the “very complex overwrite "35 passes" option.
If you have an SSD, DO NOT do the 35 passes. this will only shorten the SSD's life. See more info regarding this in post #4
Click to expand...
Click to collapse
35 passes is also overkill on hard disks. Most government standards only require 1-3 passes. Just one pass is sufficient to prevent data recovery via software - there are probably only a handful of labs in the world which can recover data after this (by removing the platters from the drive and reading the bits off).
You also don't need to do this at all if you use bitlocker or truecrypt to encrypt the drive.
Updated: added service management to second post
Windows 8 knows if an SSD is being used. If it sees one, it won't allow you to "defrag". it will still allow you to "optimise" the drive. What this does is to manage TRIM to help clean the drives.
Look up TRIM if you want to know more. But do not disable the scheduled "optimisation" of an SSD drive as it's not a defrag, it does other things.
More info here: http://www.helpwithwindows.com/Windows8/Windows-8-on-Solid-State-Drive.html
the_scotsman said:
Windows 8 knows if an SSD is being used. If it sees one, it won't allow you to "defrag". it will still allow you to "optimise" the drive. What this does is to manage TRIM to help clean the drives.
Look up TRIM if you want to know more. But do not disable the scheduled "optimisation" of an SSD drive as it's not a defrag, it does other things.
More info here: http://www.helpwithwindows.com/Windows8/Windows-8-on-Solid-State-Drive.html
Click to expand...
Click to collapse
Added to tips from users section
Sent from my Kindle Fire using Tapatalk 2
Updated: Added '.bat' script to make this as easy as possible for all of you
will be adding description soon for extras that i have included