Game Maker
Posted by iann0036 | Filed under Code, Projects
Today I will be posting ALL of my Game Maker Files (that I can find). I worked with Game Maker on and off for about 8 years of my life and it was such a great experience. In the hope that a frustrated GML coder may benefit from some of my games and code, I’ll simply be archiving my Game Maker folders and publishing them…I do not think I will be returning to the Game Maker Community again. Please note however that there are alot of irrelevant data and “borrowed” code in there. You are free to use all of it, though attribution would be appreciated. I apologize if any stolen games or code has been used but I never intended to use it for public purposes.
In addition to my programs and code, I have my entire collection of Sprites & Other Resources which I categorized (not well). I highly recommend you have a look because it did take me some time to organize it. I also have some code and executables from other authors. Most of these will most probably be outdated (some were written in GM5).
P.S. If anyone wants to create some mirrors it’d be appreciated.
Project Status: COMPLETED
Random Scripts
Posted by iann0036 | Filed under Code
Shutdown.bat
@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
USB Multipass
Posted by iann0036 | Filed under Projects
I first heard about the USB Multipass project on Hak5 from Revision3. Hak5 being my favourite vodcast of the week. Anyway, the USB Multipass project allows me to boot tools such as data forensics, backup and recovery and preinstalled environments right from my USB stick with the GRUB bootloader.

Although I am still working on it, I plan to incorporate both Windows and Linux installation CD’s, a preinstallation environment, and tools such as Hirens BootCD, UBCD, SpinRite, Helix, COFEE (shh), and much more.
Project Status: ACTIVE
DestructiveText
Posted by iann0036 | Filed under Projects
The DestructiveText project is a PHP coded project aimed to create temporary “view-once” webpages.

You can find the latest version of the project at http://destructivetext.iann0036.com/
All elements of the DestructiveText seem to be working apart from the premium HTML editor which publishes only plain text at this time.
Project Status: ON HOLD
Airport Security
Posted by iann0036 | Filed under Uncategorized

Windows 7 House Party
Posted by iann0036 | Filed under News
Apply online to host a Launch Party. Choose a day from October 22-29 and if you’re selected, you’ll not only receive a special Signature Edition of Windows® 7 Ultimate but your very own Windows® 7 Party Pack.
You’ll be assisted by House Party, the world’s leading party organizer. Pick a theme, then upload photos and videos, chat with other hosts, blog your experience, and download fun flavours all from your personal House Party page.
The themes are:
- PhotoPalooza
- Media Mania
- Setting up with Ease
- Family Friendly Fun
Source: http://uk.houseparty.com/splash/windows7uk
Crypto-nerd
Posted by iann0036 | Filed under Encryption
