A Small FoolProof Trick


There are many ways people say to bypass foolproof but this way is very easy...a kid at my school came up with the idea. Open Apple Script editor then open the extensions folder. Hit record and drag the FoolProof extension into the trash and hit stop.

should look like this:
tell application "Finder"
activate
beep
select file "FoolProof INIT" of folder "Extensions" of folder "System Folder" of startup disk
delete selection
beep
beep
beep
end tell

Okay, now this will be the FoolProof Killer...save as run only script. Put some thing in the dialog. Just restart...wow no more FoolProof amaze your friends.

Now you want to return the FoolProof Extension to its rightful place. Make a new apple script open the trash can and the extensions folder hit record once more and drag the extension from the trash to the extensions folder hit stop.

should look like this:
tell application "Finder"
activate
select trash
open selection
move file "FoolProof INIT" of trash to folder "Extensions" of folder "System Folder" of startup disk
close window of trash
end tell


Memento Mori