You are here

Tutorial on making a super hidden file

12 posts / 0 new
Last post
Nathan9222
Nathan9222's picture
Offline
Last seen: 2 years 9 months ago
Developer
Joined: 2007-12-06 22:35
Tutorial on making a super hidden file

To make:
Start Command Prompt. (Start->Run->cmd)
type in cd\(general path to your file) e.g like "cd\documents and settings\user\desktop"
just where it is at, not its exact location.

here is what u type if it is just in the C:\ location
Type "attrib" (filename or folder with complete path) +s +h
the +s stands 4 system file
the +h stands for hidden

To undo what u did do the exact opposite

To remove: type "attrib" c:\(file u chose) -s -h

for other locations besides C:\

Type "cd\(general path to your file)" then do as follows
(for my bottom example only type the file name not the path, like TEST.txt)

In other Folders: attrib "filename" /s /d +s +h

so it would be like this "attrib Test.txt /s /d +s +h"

and do as mentioned above to remove these attributes.

There you go if u have any questions just ask.

digitxp
digitxp's picture
Offline
Last seen: 12 years 9 months ago
Joined: 2007-11-03 18:33
Not really

it's not as hidden as the desktop.ini files Blum

Insert original signature here with Greasemonkey Script.

atreiju
Offline
Last seen: 15 years 10 months ago
Joined: 2008-01-24 17:45
what are "super-hidden"

what are "super-hidden" files use for?

Nathan9222
Nathan9222's picture
Offline
Last seen: 2 years 9 months ago
Developer
Joined: 2007-12-06 22:35
They r used 4 your cpu,

they r used to keep important files that keep your cpu running hidden so they r not accidentally deleted.

An eye for an eye makes the whole world blind.
Mahatma Gandhi,
Indian political and spiritual leader (1869 - 1948)

atreiju
Offline
Last seen: 15 years 10 months ago
Joined: 2008-01-24 17:45
ah, thanks! that's your

ah, thanks! that's your point. I don't accidentally delete files which keep my system running. But perhaps it could be useful to others.

m2
Offline
Last seen: 13 years 4 months ago
Joined: 2006-12-12 12:00
1. It's much easier to

1. It's much easier to accidentally delete it, you won't even notice the fact.
2. "important files that keep your cpu running" lol

"Those people who think they know everything are a great annoyance to those of us who do." Asimov

Tim Clark
Tim Clark's picture
Offline
Last seen: 13 years 3 months ago
Joined: 2006-06-18 13:55
Super

Nathan,

That IS how you make a hidden file, I'm not sure about SUPER Blum
Attrib has been around since the "Days of DOS"

The following question should not be seen as disrespectful,
May I ask how old you are?
The reason I ask is that it occurred to me while pondering your post that perhaps Attrib is so OLD that it is NEW to the younger GUI generations!!

Remember to NEVER have a Hidden System file in your apps, it can cause problems. And ALWAYS have Windows SHOW hidden files so you'll know if you have one in your app [e.g. thumbs.db]

Before you ask, I'm OLD Sad

Tim

Things have got to get better, they can't get worse, or can they?

LOGAN-Portable
LOGAN-Portable's picture
Offline
Last seen: 11 years 5 months ago
Developer
Joined: 2007-09-11 12:24
Some computers run with

Some computers run with settings: Show hidden files, show system files...

powerjuce
powerjuce's picture
Offline
Last seen: 13 years 4 months ago
Developer
Joined: 2007-09-20 21:34
and plus anyone can find

and plus anyone can find those files by running a batch from the C:\ drive and do this

attrib -h -s -r -a "*.*" /s /d

Please search before posting. ~Thanks

arqbrulo
arqbrulo's picture
Offline
Last seen: 4 years 4 months ago
Joined: 2006-08-10 16:38
Tutorial on making a super-hidden folder

Create a new folder and change the name to a blank character with alt+255. Then change the icon by right-clicking => properties => customize tab => change icon, and selecting a blank (empty) icon. You can even take it one step further by changing the attributes as mentioned above.

"In three words I can sum up everything I've learned about life: it goes on." -- Robert Frost
"In three words I can sum up everything I've learned about life: baby ain't mine." -- Adam Holguin

powerjuce
powerjuce's picture
Offline
Last seen: 13 years 4 months ago
Developer
Joined: 2007-09-20 21:34
do that and this

but name it locker and then use this code to make it a a little better

cls
@ECHO OFF
title Folder Locker
if EXIST " " goto UNLOCK
:CONFIRM
echo Are you sure u want to Lock the folder(Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Locker " "
attrib +h +s " "
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==main goto FAIL
attrib -h -s " "
ren " " Locker
explorer "locker"
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:End

Please search before posting. ~Thanks

RMB Fixed
Offline
Last seen: 14 years 6 months ago
Joined: 2006-10-24 10:30
Tutorial nr 3

Convert your flash-drives file-system to NTFS .
Attach secret file/DIR to the drive-root as an Alternate Data Stream.
http://support.microsoft.com/kb/105763

Log in or register to post comments