8bitNerd’s Weblog

Mai 11, 2008

TrueCrypt DVD Mount Skript

Gespeichert unter: Batch, Skripte — Schlagworte: , , , , , , , — 8bitNerd @ 8:16
blog_scripte_truecrypt_portable1

Vor einiger Zeit habe ich mir ein kleines Batch Skript
für TrueCrypt geschrieben das dafür da ist,
um schnell und unkompliziert
Verschlüsselte Container auf DVD’s zu brennen
sowie anschließend zu indexieren.

    Einstellungen in der Batch:

REM ###########################################
set password=“abcABC123″
set keyfile1=“C:\Keys\Key1″
set keyfile2=“C:\Keys\Key2″

set application=%programfiles%\TrueCrypt\truecrypt.exe
set containerpath=D:\Sicherung
set containerfile=volume.tc
set container=F:\volume.tc
set mountsingle=Y
REM ###########################################

Wenn ihr die .bat Datei mit ein Text Editor öffnet,
dann sieht ihr ganz oben zwischen den beiden REM ### Zeilen
die oben gezeigten Einstellungen die ihr editieren müsst
damit das Skript bei euch funktioniert.

set password=“abcABC123″

Hier gebt ihr euer Passwort in die zwei Anführungszeichen ein.

 

set keyfile1=“C:\Keys\Key1″
set keyfile2=“C:\Keys\Key2″

Hier gebt ihr den Pfad zu euren beiden Schlüssel Dateien ein, falls ihr nur eine Schlüssel Datei benutzt,
dann entfernt die set keyfile2=”C:\Keys\Key2″* Zeile,
außerdem müsst ihr weiter unten /k %keyfile2%* überall aus der .bat entfernen.

* bei gar kein Key auch set keyfile1=”C:\Keys\Key1″ sowie /k %keyfile1% überall aus der .bat entfernen.

 

set application=%programfiles%\TrueCrypt\truecrypt.exe

Das ist der Pfad zu eurer truecrypt.exe, %programfiles% ist eine Variable
und steht bei deutschsprachigen Windows XP Systemen für C:\Programme.

Eine Liste aller Variablen seht ihr indem ihr Start -> Ausführen -> CMD und dann SET ins CMD Fenster eingibt.

 

blog_scripte_truecrypt_portable2  

set containerpath=D:\Sicherung

Containerpath steht für den Pfad wo eure Container liegen, damit ist nicht das DVD Laufwerk gemeint
sondern die Container auf eurer Festplatte.

 

set containerfile=volume.tc

Containerfile steht für den Namen des Containers, also volume.tc wie man auf dem Bild oben sehen kann,
außerdem müssen die Ordner DVD01, DVD02… bis DVD10 benannt sein.

 

set container=F:\volume.tc

Hier sollte der Pfad zu eurem DVD Laufwerk stehen inklusive den Namen des Containers.

 

set mountsingle=Y

Und zum Schluss nur noch den Laufwerks Buchstaben wo eure DVD Eingebunden (Mounten) werden soll.

 

Hier die Komplette Batch, alles kopieren, in eine Text Datei abspeichern und die Endung in .bat umbenennen.

- BEGIN BATCH -
@
echo off
color 0F
title=TrueCrypt DVD Mount Skript

REM ################################################################################
set password=”abcABC123″
set keyfile1=”C:\Keys\Key1″
set keyfile2=”C:\Keys\Key2″

set application=%programfiles%\TrueCrypt\truecrypt.exe
set containerpath=D:\Sicherung
set containerfile=volume.tc
set container=F:\volume.tc
set mountsingle=Y
REM ################################################################################

:start
cls
if exist %application% set application_check=OK
if not exist %application% set application_check=MiSS
if exist %container% set container_check=OK
if not exist %container% set container_check=MiSS
cls
echo. ##############################################################################
echo. #                         TrueCrypt DVD Mount Skript                         #
echo. ################################################### 8bitnerd.wordpress.com ###
echo. -( Single / Read Only )-
echo.
echo. [1] Mount
echo. [2] Dismount
echo. [3] Change Disc (Re-mount)
echo.
echo. -( Multiple / Writable )-
echo.
echo. [4] Mount
echo. [5] Dismount
echo.
echo. -( Single Info )-
echo.
echo.  TrueCrypt:     %application_check%
echo.  Container:     %container_check%
echo.  Mount:         %mountsingle%
echo.
echo.
echo.
echo. Type [1-5] and press Enter
set /p input= :
if “%input%”==”1″ goto single_mount
if “%input%”==”2″ goto single_dismount
if “%input%”==”3″ goto single_change
if “%input%”==”4″ goto multiple_mount
if “%input%”==”5″ goto multiple_dismount
if “%input%”==”0″ goto exit
goto start

:single_mount
%application% /v %container% /p %password% /l%mountsingle% /k %keyfile1% /k %keyfile2% /q /h n /c n /m ro
goto start

:single_dismount
%application% /q /d%mountsingle%
goto start

:single_change
%application% /q /d%mountsingle%
cls
echo.Open drive and change Disc.
pause

%application% /v %container% /p %password% /l%mountsingle% /k %keyfile1% /k %keyfile2% /q /h n /c n /m ro
goto start

:multiple_mount
%application% /v “%containerpath%\DVD01\%containerfile%” /p %password% /lI /k %keyfile1% /k %keyfile2% /q /h n /c n
%application% /v “%containerpath%\DVD02\%containerfile%” /p %password% /lJ /k %keyfile1% /k %keyfile2% /q /h n /c n
%application% /v “%containerpath%\DVD03\%containerfile%” /p %password% /lK /k %keyfile1% /k %keyfile2% /q /h n /c n
%application% /v “%containerpath%\DVD04\%containerfile%” /p %password% /lL /k %keyfile1% /k %keyfile2% /q /h n /c n
%application% /v “%containerpath%\DVD05\%containerfile%” /p %password% /lM /k %keyfile1% /k %keyfile2% /q /h n /c n
%application% /v “%containerpath%\DVD06\%containerfile%” /p %password% /lN /k %keyfile1% /k %keyfile2% /q /h n /c n
%application% /v “%containerpath%\DVD07\%containerfile%” /p %password% /lO /k %keyfile1% /k %keyfile2% /q /h n /c n
%application% /v “%containerpath%\DVD08\%containerfile%” /p %password% /lP /k %keyfile1% /k %keyfile2% /q /h n /c n
%application% /v “%containerpath%\DVD09\%containerfile%” /p %password% /lQ /k %keyfile1% /k %keyfile2% /q /h n /c n
%application% /v “%containerpath%\DVD10\%containerfile%” /p %password% /lR /k %keyfile1% /k %keyfile2% /q /h n /c n
goto start

:multiple_dismount
%application% /q /dI
%application% /q /dJ
%application% /q /dK
%application% /q /dL
%application% /q /dM
%application% /q /dN
%application% /q /dO
%application% /q /dP
%application% /q /dQ
%application% /q /dR
goto start

:exit
exit

- END BATCH -

Ihr benötigt TrueCrypt (Open Source) um das Skript nutzen zu können, zum editieren der .bat Datei
empfehle ich euch Notepad++ (Open Source) und Where is it? (Shareware) zum indexieren.

Mai 10, 2008

Xbox Xport Savestate Messages Patch

Gespeichert unter: Konsolen, Programme, Xbox — Schlagworte: , , , , , , , , — 8bitNerd @ 8:19
blog_programme_xport_patch1 blog_programme_xport_patch6

Einigen wird es vielleicht bekannt vorkommen,
man möchte ein Spiel auf ein Xport Gui
basierten Emulator mit einer TV-Karte
aufnehmen, nur nerven ständig
die “State 1 Saved” oder “State 1 Loaded
Einblendungen und wenn man
diese Nachhinein mit VirtualDub entfernt,
sieht es nicht mehr so gut aus.

Mit dem Xport Savestate Messages Patch
kann man die default.xbe so verändern
dass diese Meldungen nicht mehr kommen.

 

 

Wenn der Patch nicht funktioniert wovon ich nicht ausgehe, der kann wie folgt vorgehen.

blog_programme_xport_patch3

Man öffnet die default.xbe mit ein Hexeditor seiner Wahl und sucht nach folgenden Strings,
State %u Loaded” und “State %u Saved” wie man auf dem Screenshot oben sehen kann.

blog_programme_xport_patch4

Und ersetzt diese beiden durch den Hex-Wert 20 (für Leerzeichen)
dann nur noch abspeichern, auf Xbox kopieren und Videos aufnehmen, viel Spaß.

 

  1. Herunterladen: 
  2. Dateigröße: 197 KB
  3. MD5-Prüfsumme:
    a665d9c73861d1bf13e0b89674313b17

Mai 9, 2008

The Flintstones - The Rescue of Dino & Hoppy (USA)

Gespeichert unter: Dox, NES, Patches — Schlagworte: , , , , , , , , — 8bitNerd @ 8:18
blog_ips_flintstones1

Ein paar IPS von mir für das Spiel
“The Flintstones - The Rescue of Dino & Hoppy (USA)”
auf den NES.

    Inhalt:

hard mode (1 hit death).ips
hard mode (after dead always 1 heart).ips
hard mode (start with 1 heart).ips
hard mode (start with 1 life).ips
inf coins.ips
inf hearts.ips
inf lifes.ips
start with 100 coins.ips
start with 5 hearts.ips
start with 9 lifes.ips
start with max power.ips
weapon axe.ips
weapon egg.ips
weapon stone sling.ips

  1. Herunterladen: 
  2. Dateigröße: 4,61 KB
  3. MD5-Prüfsumme:
    8294aefe02008334475d1c4ba0f4e249

Bloggen Sie auf WordPress.com.