another batch idea

Discussion in 'Software' started by red death68, Apr 2, 2010.

  1. red death68

    red death68 Command Sergeant Major

    ok so heres the idea most people dont know how to do this but there is a way to hide files in a picture using cmd. what i want to do is automat it so you dont have to mess with the cmds heres how you do it the regualar way

    i beleiev u can do it with most archive formats but im not sure

    so basicly what i need it to do is interface with winRAR and add the files to and archive then copy the picture and the archive together with "copy /b maria.jpg + secret.rar safe.jpg" kind of cmd. all with a batch file if its even possible please help me ty vm in advance for any help i get
     
  2. PC-XT

    PC-XT Master Sergeant

    Ok.
    I don't have winRar to test, but try these:

    The first assumes folder c:\sizlopedia already holds only the files to include in the rar, with the image maria.jpg in the same folder as the batch file.
    Code:
    @echo off
    c:
    cd \sizlopedia
    c:\progra~1\zip\winrar~1.00b\rar a secret.rar *.*
    copy /b maria.jpg + secret.rar safe.jpg
    del secret.rar
    
    If you want drag and drop, to drop the files you want to hide onto the batch file, and leave the pic next to the batch file, assuming maria.jpg is in the same folder at the batch file:
    Code:
    @echo off
    if '%0'=='' goto help
    :loop
    shift
    if '%0'=='' goto endloop
    c:\progra~1\zip\winrar~1.00b\rar a secret.rar %0
    rem I am assuming this appends each file to secret.rar
    goto loop
    :endloop
    copy /b maria.jpg + secret.rar safe.jpg
    del secret.rar
    goto end
    :help
    echo Drag the files to hide, and drop them on the icon!
    pause
    :end
    
    If you want to keep the rar, remove that "del secret.rar" line in either batch file.
    I hope it works. As I said, I haven't tested it. You may need to change the path to rar.exe, also.
     

MajorGeeks.Com Menu

Downloads All In One Tweaks \ Android \ Anti-Malware \ Anti-Virus \ Appearance \ Backup \ Browsers \ CD\DVD\Blu-Ray \ Covert Ops \ Drive Utilities \ Drivers \ Graphics \ Internet Tools \ Multimedia \ Networking \ Office Tools \ PC Games \ System Tools \ Mac/Apple/Ipad Downloads

Other News: Top Downloads \ News (Tech) \ Off Base (Other Websites News) \ Way Off Base (Offbeat Stories and Pics)

Social: Facebook \ YouTube \ Twitter \ Tumblr \ Pintrest \ RSS Feeds