Emergency File Mover

Software Support
Post Reply
User avatar
Blaze-Engaged
I said my first word today!!!
Posts: 42
Joined: Mon Jul 14, 2008 12:00 am

Emergency File Mover

Post by Blaze-Engaged »

This is gonna be really stupid, because most of you wont have a use for it, but if you guys have kids or whatever, or dont want someone seeing something, like... i dont know, snake and his pr0n.

Well, you could make an "EFM". An 'Emergency File Mover'. These are usually custom made, and are for home use.

Ill give you a scenario.

"Kids are on the computer, and they start looking around the computer, looking at files, maybe in private folders."
But, sometimes there are confidential or private files that you don't want people to see, then you could create an EMF, so if someone comes along, it could act as a safeguard.
Or if a wife or something ask's what that is, then you use this file, to move the confidential files away, and replace with "Fake" files, to fool them.

Say you have a file called:
  • Business Schedules
inside that file you might have:
  • July 2008
it could be filled with confidential files, or pr0n.


well, why not move them around!
it could save your skin.

Finished!
This is a video of me showing you it in progress.



Basically, the way it works is just copying the files to another location, then deleting them from their origin. It then copies another set of files into the original location, hiding all trace of the original files.



These locations are just to show you.

1 Place 1 file in C:\Temp
and the other in C:\Landing
2 put the Test confidential files in C:\Landing
and the fake ones in C:\Temp
3 Now open Notepad
4 Place this into it:

Code: Select all

@echo off
:create
cd  C:\
mkdir Temp2
cd c:\Temp2\
mkdir safe
goto foldercheck

:foldercheck
IF EXIST C:\Temp2\ goto emf
IF NOT EXIST goto create

:emf
copy c:\Business\*.* c:\Temp2\safe
del c:\Business\*.*
copy c:\Temp2\swap\*.* c:\Business\
cls
echo Created by Blaze-Engaged
ping localhost 1000 > null
goto end

:end
exit 
[s]then make a new file, called quicktype.vbs
in it, put in this code:[/s]
This file is no longer needed
There is a tiny bit more editing to do.

There is one more stage, home testing!
Testing now.


Results:
Business Copy= Yes!
Temp2 Copy= yes!
File Switch= YES!
Last edited by Blaze-Engaged on Mon Jul 21, 2008 11:46 am, edited 7 times in total.

User avatar
ADF-Snake
ADF Member
ADF Member
Posts: 1272
Joined: Sun May 20, 2007 12:00 am
Location: Australia

Post by ADF-Snake »

I thank men like you for saving me and my pr0n. [smilie=bowdown[1].gif] MADOZ [smilie=Crash[1].gif] [smilie=laugh[2].gif] [smilie=laugh[2].gif]
Image
Image

User avatar
Blaze-Engaged
I said my first word today!!!
Posts: 42
Joined: Mon Jul 14, 2008 12:00 am

Post by Blaze-Engaged »

no worries.
this is what happens when one 15, nearly 16 year old is bored one day and begins learning Programming Languages.

By the way, im writing this from my head, im not a script kiddie.


I'm still fixing the main MS-DOS code, ill update when im finished.

User avatar
Blaze-Engaged
I said my first word today!!!
Posts: 42
Joined: Mon Jul 14, 2008 12:00 am

Post by Blaze-Engaged »

Sorry for double post, but:

Updates:
  • Video added
    Code changed
    "Tutorial" Finished

Post Reply