I've been looking through my code and can't find anything that's not right.
Could you please help me out?
Here's the code:
Code: Select all
@echo off
:Start
If Not Exist C:\HideMe goto DC
If not exist C:\HideMe\*.jpg goto NOJPG
If exist C:\HideMe\*.jpg goto TXTA
:TXTA
If exist C:\HideMe\*.txt goto TXTB
if not exist C:\HideMe\*.txt goto EXEA
:TXTB
Copy /b C:\HideMe\*.txt C:\HideMe\File.rar goto END
:EXEA
If Exist C:\HideMe\*.exe goto EXEB
If Not Exist C:\HideMe\*.exe goto RAR
:EXEB
Copy /b C:\HideMe\*.exe C:\HideMe\File.rar goto END
:RAR
If exist C:\HideMe\*.rar goto RAREND
If not exist C:\HideMe\*.rar goto BATA
:BATA
If exist C:\HideMe\*.bat goto BATB
If not exist C:\HideMe\*.bat goto VBSA
:BATB
Copy /b C:\HideMe\*.bat C:\HideMe\File.rar goto END
:VBSA
If exist C:\HideMe\*.vbs goto VBSB
If not exist C:\HideMe\*.vbs Goto MP3A
:VBSB
Copy /b C:\HideMe\*.vbs C:\HideMe\File.rar goto END
:MP3A
If exist C:\HideMe\*.mp3 goto MP3B
If not exist C:\HideMe\*.mp3 goto WAVA
:MP3B
Copy /b C:\HideMe\*.mp3 C:\HideMe\File.rar goto END
:WAVA
If exist C:\HideMe\*.wav goto WAVB
If not exist C:\HideMe\*.wav goto MP4A
:WAVB
Copy /b C:\HideMe\*.wav C:\HideMe\File.rar goto END
:MP4A
If exist C:\HideMe\*.mp4 goto MP4B
If not exist C:\HideMe\*.mp4 goto DLLA
:MP4B
Copy /b C:\HideMe\*.mp4 C:\HideMe\File.rar goto END
:DLLA
If exist C:\HideMe\*.dll goto DLLB
If not exist C:\HideMe\*.dll goto JPEGA
:DLLB
Copy /b C:\HideMe\*.dll C:\HideMe\File.rar goto END
:JPEGA
If exist C:\HideMe\*.jpeg goto JPEGB
If not exist C:\HideMe\*.jpeg goto PNGA
:JPEGB
Copy /b C:\HideMe\*.jpeg C:\HideMe\File.rar goto END
:PNGA
If exist C:\HideMe\*.png goto PNGB
If not exist C:\HideMe\*.png goto AU3A
:PNGB
Copy /b C:\HideMe\*.png C:\HideMe\File.rar goto END
:AU3A
If exist C:\HideMe\*.au3 goto AU3B
If not exist C:\HideMe\*.au3 goto PYA
:AU3B
Copy /b C:\HideMe\*.au3 C:\HideMe\File.rar goto END
:PYA
If exist C:\HideMe\*.py goto PYB
If not exist C:\HideMe\*.py goto HTMLA
:PYB
Copy /b C:\HideMe\*.py C:\HideMe\File.rar goto END
:HTMLA
If exist C:\HideMe\*.html goto HTMLB
If not exist C:\HideMe\*.html goto JSA
:HTMLB
Copy /b C:\HideMe\*.html C:\HideMe\File.rar goto END
:JSA
If exist C:\HideMe\*.js goto JSB
If not exist C:\HideMe\*.js goto VBA
:JSB
Copy /b C:\HideMe\*.js C:\HideMe\File.rar goto END
:VBA
If exist C:\HideMe\*.vb goto VBB
If not exist C:\HideMe\*.vb goto MSIA
:VBB
Copy /b C:\HideMe\*.vb C:\HideMe\File.rar goto END
:MSIA
If exist C:\HideMe\*.msi goto MSIB
If not exist C:\HideMe\*.msi goto DONE
:MSIB
Copy /b C:\HideMe\*.msi C:\HideMe\File.rar goto END
:DC
mkdir C:\HideMe
Msg * Please read the .txt (Readme.txt)
exit
:NOJPG
msg * No .jpg found in C:\HideMe
Msg * Please read the .txt (ReadMe.txt)
exit
:DONE
Msg * Your file was not found
exit
:RAREND
Copy /b C:\HideMe\*rar + C:\HideMe\*.jpg Secureshit.jpg
Msg * Your Hiding Is Done :)
Exit
:END
Copy /b C:\HideMe\File.rar + C:\HideMe\*.jpg C:\HideMe\SecureShit.jpg
msg * Your Hiding Is Done :)
exit