@echo off
title PC SHUTDOWN
echo Shutdown sequence has initiated
echo.
REM ***Close MSN Messenger***
echo Killing msnmsgr
tasklist /FI “IMAGENAME eq msnmsgr.exe” | find /i “msnmsgr.exe”
IF ERRORLEVEL 2 GOTO MSNOPEN
IF ERRORLEVEL 1 GOTO MSNNOTOPEN
:MSNOPEN
taskkill /IM msnmsgr.exe /F
:MSNNOTOPEN
REM ***Close vlc***
echo Killing vlc
tasklist /FI “IMAGENAME eq vlc.exe” | find /i “vlc.exe”
IF ERRORLEVEL 2 GOTO vlcOPEN
IF ERRORLEVEL 1 GOTO vlcNOTOPEN
:vlcOPEN
taskkill /IM vlc.exe /F
:vlcNOTOPEN
REM ***Close rainmeter***
echo Killing rainmeter
tasklist /FI “IMAGENAME eq rainmeter.exe” | find /i “rainmeter.exe”
IF ERRORLEVEL 2 GOTO rainmeterOPEN
IF ERRORLEVEL 1 GOTO rainmeterNOTOPEN
:rainmeterOPEN
taskkill /IM rainmeter.exe /F
:rainmeterNOTOPEN
REM ***Close rainlendar2***
echo Killing rainlendar2
tasklist /FI “IMAGENAME eq rainlendar2.exe” | find /i “rainlendar2.exe”
IF ERRORLEVEL 2 GOTO rainlendar2OPEN
IF ERRORLEVEL 1 GOTO rainlendar2NOTOPEN
:rainlendar2OPEN
taskkill /IM rainlendar2.exe /F
:rainlendar2NOTOPEN
REM ***Close thunderbird***
echo Killing thunderbird
tasklist /FI “IMAGENAME eq thunderbird.exe” | find /i “thunderbird.exe”
IF ERRORLEVEL 2 GOTO thunderbirdOPEN
IF ERRORLEVEL 1 GOTO thunderbirdNOTOPEN
:thunderbirdOPEN
taskkill /IM thunderbird.exe /F
:thunderbirdNOTOPEN
REM ***Close firefox***
echo Killing firefox
tasklist /FI “IMAGENAME eq firefox.exe” | find /i “firefox.exe”
IF ERRORLEVEL 2 GOTO firefoxOPEN
IF ERRORLEVEL 1 GOTO firefoxNOTOPEN
:firefoxOPEN
taskkill /IM firefox.exe /F
:firefoxNOTOPEN
REM ***Close explorer***
echo Killing explorer
tasklist /FI “IMAGENAME eq explorer.exe” | find /i “explorer.exe”
IF ERRORLEVEL 2 GOTO explorerOPEN
IF ERRORLEVEL 1 GOTO explorerNOTOPEN
:explorerOPEN
taskkill /IM explorer.exe /F
:explorerNOTOPEN
echo.
echo Shutdown complete
shutdown.exe /s /t 10
Startup.bat
@echo off
title PC STARTUP
echo Booting…
START /d “C:\Program Files\uTorrent” uTorrent.exe
START /d “C:\Program Files\Windows Live” msnmsgr.exe
START /d “C:\Program Files\dvd43″ dvd43_tray.exe
START /d “C:\Program Files\Stardock\ObjectDock” ObjectDock.exe
START /d “C:\Program Files\Rainmeter” rainmeter.exe
START /d “C:\Program Files\Rainlendar2″ Rainlendar2.exe
Leave.bat
“F:\Program Files\TrueCrypt\TrueCrypt.exe” /v “F:\files” /d /w /s
net use z: /delete
“F:\Documents and Settings\Iann0036\Desktop\Leave Computer\pass.reg”
tskill hrfscore.exe /a
tskill HrfsClient.exe /a
tskill TrueCrypt.exe /a
RegBackup.bat
@echo off
echo Deleting previous register…
del c:\regbackup\hklm.reg
del c:\regbackup\hkcu.reg
del c:\regbackup\hkcr.reg
del c:\regbackup\hku.reg
del c:\regbackup\hkcc.reg
echo Done
echo Exporting register…
reg export HKLM\ c:\regbackup\hklm.reg
reg export HKCU\ c:\regbackup\hkcu.reg
reg export HKCR\ c:\regbackup\hkcr.reg
reg export HKU\ c:\regbackup\hku.reg
reg export HKCC\ c:\regbackup\hkcc.reg
echo Done
Shutdown2.bat
@echo off
echo Starting system shutdown (5 seconds)
sleep 5
cls
echo [ System shutdown ]
echo.
sleep 2
echo Dismounting files…
“C:\Program Files\TrueCrypt\TrueCrypt.exe” /d /l s /w /b /f /q /s
echo Done.
echo.
sleep 2
echo Exiting online storage…
rem “C:\Program Files\humyo.com Client\HrfsClient.exe” /exit
echo Done.
echo.
sleep 2
echo Removing TEMP folder…
cd %temp%
rmdir /S /Q Temp
echo Done.
echo.
sleep 2
echo Clearing cache…
DEL /S /F /Q “%USERPROFILE%\Local Settings\Temporary Internet Files\*.*”
DEL /S /F /Q “%USERPROFILE%\Cookies”
DEL /S /F /Q “%USERPROFILE%\Recent”
DEL /S /F /Q “%USERPROFILE%\Local Settings\History”
DEL /S /F /Q “C:\Users\Iann0036\Recent”
DEL /S /F /Q “C:\Users\Iann0036\Cookies”
echo Done.
echo.
sleep 2
echo Shutting down…
C:\poweroff.exe shutdown -warn -warntime 30 -msg ” ” | exit

