Thank you for your reply, SeeJayGamer.
SeeJayGamer: I would be cautious if you ever came across a .bat/.reg file claiming to be a panacea for all the improvements or tweaks. Some of these may not be appropriate for your specific system. Additionally, others are options depending on whether you want your SSD to be a data drive or contain the Operating System, and some are based on your choices.
Yes, I know that changing entries registry without proper knowledge can be dangerous so I will not do that blindly - as I said I just need a "one template" to customize it because I've already found many such changes but they are not "all on one page" just spreaded out on many pages (often just one change or tip per page) which is very inconvienient.
SeeJayGamer: IMO, I would rather read up on each tweak to determine if this trick would benefit me and also learn about what it actually does. In fact, I was already in the process of using the overclock.net articles you mentioned to work on a Windows 7 build with the OS on SSD and the rest on HDD. Sure, it takes longer to go through all the steps, but I learn more about my SSD and system the further I go through them.
This is not today when I found these links I posted (and many others). I am already testing / have implemented many of them after reading "what are they doing" first.
But I would still like to have such *.bat / *.reg file to make it ready for future reinstallations of the system as following all steps from these articles after each reinstall is "boring". :D
For example, this boring sequence of opening windows/clicking buttons from first guide:
Move your temp files to a Mechanical hard drive. (If Users Folder is being used on the SSD)
A)Hit Start and right-click on Computer and select Properties
B)On the left side of the window, click Advanced System Settings.
C)Under the Advanced tab, in the on the bottom click Environmental Variables…
D)Click on the variable TEMP then click Edit…
E)Under the Variable Value: box, enter in the new path you would like for your temp files, ex. D:\Temp Files\TEMP
F)Click on the variable TMP then click Edit…
G)Under the Variable Value: box, enter in the new path you would like for your temp files, ex. D:\Temp Files\TMP
H)Click Ok and you must reboot for this to take effect.
can be easily replaced by a reg file with:
[HKEY_CURRENT_USER\Environment]
"TEMP"="D:\Temp Files\TEMP"
"TMP"="D:\Temp Files\TMP"
In addition, there could be more entries to move more tmp folders, such as for System and for Default User:
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment]
"TEMP"="D:\Temp Files\TEMP"
"TMP"="D:\Temp Files\TMP"
[HKEY_USERS\.DEFAULT\Environment]
"TEMP"="D:\Temp Files\TEMP"
"TMP"="D:\Temp Files\TMP"
Another example, this sequence:
Reduce Page File Size
A)Hit Start and right-click on Computer and select Properties
B)On the left side of the window, click Advanced System Settings.
C)Under the Advanced tab, in the Performance section click Settings…
D)Click the Advanced tab, and under Virtual Memory, Click Change
E)Uncheck Automatically manage paging file size for all drives.
F)Highlight your SSD and underneath it, click the Custom Size radio button.
G)Under Initial size and Maximum size, type in 1024 and then click Set and click OK. You must reboot for this to take effect
can be (probably?) replaced with:
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management]
"PagingFiles"="C:\pagefile.sys 1024 1024"
I assume that probably most if not all of these steps mentioned in guides (and these I need) can be "easily shortened" but the problem is - it's hard to find them for me and that's why I'm looking for such "template" to analyse it first and then take out only steps I need. :)