Ok here is next attempt:
Save it to a single file XXHETweaks.bat and run it.
It includes registry changes inside.
Upon complettion it should say something like:
Making registry changes...
Stopping services...
[SC] ChangeServiceConfig SUCCESS
[SC] ChangeServiceConfig SUCCESS
[SC] ChangeServiceConfig SUCCESS
[SC] ChangeServiceConfig SUCCESS
[SC] ChangeServiceConfig SUCCESS
[SC] ChangeServiceConfig SUCCESS
[SC] ChangeServiceConfig SUCCESS
[SC] ChangeServiceConfig SUCCESS
turning off logs under "On to the Log files !"...
DONE!
!!! The followings things you need to do manually !!!:
The names in "" are of the posts from this topic
http://www.phasure.com/index.php?topic=548.01. turn off drive indexing under "Shut Off Indexing REALLY"...
2. turn off Defragmentation under "Defrag brrrr"...
2. turn off logs under "Another group of Logs"...
THE END
Press any key to continue . . .
I also attached bat file for your convenience
@ECHO off
ECHO Making registry changes...
REM creating a registry file
ECHO Windows Registry Editor Version 5.00 > XXHEVistaDead1.reg
ECHO ;[START] XXHE Vista Services >> XXHEVistaDead1.reg
ECHO.>> XXHEVistaDead1.reg
ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Dfrg\BootOptimizeFunction] >> XXHEVistaDead1.reg
ECHO "Enable"="N" >> XXHEVistaDead1.reg
ECHO.>> XXHEVistaDead1.reg
ECHO [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management\PrefetchParameters] >> XXHEVistaDead1.reg
ECHO "EnablePrefetcher"=dword:00000000 >> XXHEVistaDead1.reg
ECHO.>> XXHEVistaDead1.reg
ECHO ;Application Information >> XXHEVistaDead1.reg
ECHO [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Appinfo] >> XXHEVistaDead1.reg
ECHO "Start"=dword:00000003 >> XXHEVistaDead1.reg
ECHO.>> XXHEVistaDead1.reg
ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Reliability] >> XXHEVistaDead1.reg
ECHO "TimeStampInterval"=dword:00000000 >> XXHEVistaDead1.reg
ECHO.>> XXHEVistaDead1.reg
ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender] >> XXHEVistaDead1.reg
ECHO "DisableAntiSpyware"=dword:00000001 >> XXHEVistaDead1.reg
ECHO.>> XXHEVistaDead1.reg
REM executing the registry file
XXHEVistaDead1.reg
REM deleting the registry file
del XXHEVistaDead1.reg
ECHO.
ECHO.
ECHO Stopping services...
REM Tablet PC Input Service
sc config TabletInputService start= disabled
REM Windows Image Acquisition (WIA)
sc config stisvc start= disabled
REM Windows Defender
sc config WinDefend start= demand
REM Print Spooler
sc config Spooler start= disabled
REM Security Center
sc config wscsvc start= demand
REM Superfetch
sc config SysMain start= disabled
REM ReadyBoost
sc config EMDMgmt start= auto
REM Windows Search
sc config Wsearch start= disabled
ECHO.
ECHO.
ECHO turning off logs under "On to the Log files !"...
wevtutil.exe sl Microsoft-Windows-Diagnosis-DPS/Operational /e:false
wevtutil.exe sl Microsoft-Windows-Diagnostics-Performance/Operational /e:false
wevtutil.exe sl Microsoft-Windows-GroupPolicy/Operational /e:false
wevtutil.exe sl Microsoft-Windows-ReadyBoost/Operational /e:false
wevtutil.exe sl Microsoft-Windows-ReliabilityAnalysisComponent/Operational /e:false
wevtutil.exe sl Microsoft-Windows-TaskScheduler/Operational /e:false
ECHO.
ECHO DONE!
ECHO.
ECHO.
ECHO !!! The followings things you need to do manually !!!:
ECHO The names in "" are of the posts from this topic
ECHO http://www.phasure.com/index.php?topic=548.0
ECHO.
ECHO 1. turn off drive indexing under "Shut Off Indexing REALLY"...
ECHO 2. turn off Defragmentation under "Defrag brrrr"...
ECHO 2. turn off logs under "Another group of Logs"...
ECHO.
ECHO.
REM these are "Another group of Logs" not working for now. May be someone will figure it out.
REM logman update trace "EventLog-System" -ets -max 33
REM logman stop -n "DiagLog" -ets
REM logman stop -n "NtfsLog" -ets
REM logman stop -n "RdrLog" -ets
REM ECHO.
REM ECHO.
ECHO THE END
pause