Forum     

Go Back   Digit Technology Discussion Forum > Community > Tutorials
Register FAQ Calendar Mark Forums Read

Tutorials This section offers tutorials and How to's on just about anything related to computers and IT. Note: All tutorials are courtesy the posters and not verified by Digit

Closed Thread
 
LinkBack Thread Tools Display Modes
Old 17-12-2007, 09:43 AM   #1 (permalink)
vaibhavtek
Guest
 
Posts: n/a
Cool Make file invisble

Hi Friends,

By following this tutorial u can make ur file invisible to everyone but visible to u.

Just follow:-
-------------------------------
If you want to hide a file that no one can see the file except you, here is the process.:-

1. Open a notepad and write down
@echo off
cls
attrib +r +h +s drive:\WRITE THE LOCATION OF FILE.file extension
exit
2. save it as bat file(ex. hide.bat)
3.Run it


To show the hidden files:-

1.Open a notepad and write down
@echo off
cls
attrib -r -s -h drive:\WRITE THE LOCATION OF FILE.file extension
exit
2.Save it as bat file(ex. show.bat)
3.Run it

Note:-It cannot be viewed by folder option > "Show Hidden Files"; this tip is the great point of this tutorial.

But will be shown by "Show System File" but no one will know that ur file is a system file.
---------------------------------
Please reply whether u like this tut. or not.

Last edited by vaibhavtek; 19-12-2007 at 07:48 AM.
 
Advertisements. Register and be a member of the community to get rid of them.
Advertisement

Old 17-12-2007, 09:55 AM   #2 (permalink)
In The Zone
 
anand1's Avatar
 
Join Date: Sep 2007
Location: 23 17'N, 86 05'E
Posts: 369
Default Re: Make file invisble

It's not working for me. I have the following thing. I made a text doc named a.txt in my C:\ and tried to hide it with the following code.

@echo off
cls
attrib +r +h +s drive:\C:\a.txt
exit

and saved it as a.bat and ran the same but nothing happened dude.
__________________
Technology On The Fly
anand1 is offline  
Old 17-12-2007, 12:02 PM   #3 (permalink)
vaibhavtek
Guest
 
Posts: n/a
Default Re: Make file invisble

Type this:-

@echo off
cls
attrib +r +h +s C:\a.txt
exit


drive letter in my tut says location of the drive and ur file location is C:

Hope u understand what i mean.
 
Old 17-12-2007, 12:10 PM   #4 (permalink)
In The Zone
 
anand1's Avatar
 
Join Date: Sep 2007
Location: 23 17'N, 86 05'E
Posts: 369
Default Re: Make file invisble

Wait a min...........

Ya nice one man. It's really working. Thanks for this nice tip.
__________________
Technology On The Fly

Last edited by anand1; 17-12-2007 at 12:10 PM. Reason: Automerged Doublepost
anand1 is offline  
Old 17-12-2007, 12:45 PM   #5 (permalink)
vaibhavtek
Guest
 
Posts: n/a
Default Re: Make file invisble

thanks for so good comments.
waiting for comments of others members.
 
Old 17-12-2007, 12:47 PM   #6 (permalink)
Apprentice
 
DR RANJAN's Avatar
 
Join Date: Oct 2006
Posts: 55
Default Re: Make file invisble

good tric u convert file into hidden system file...that can be visible through folder option!
DR RANJAN is offline  
Old 17-12-2007, 12:55 PM   #7 (permalink)
vaibhavtek
Guest
 
Posts: n/a
Default Re: Make file invisble

@DR RANJAN

it cannot be viewed by folder option; this is the great point of this tutorial.
Just try it and then reply ur views.
 
Old 18-12-2007, 08:41 PM   #8 (permalink)
Broken In
 
Join Date: Nov 2003
Location: Guwahati, Assam
Posts: 136
Default Re: Make file invisble

it shows with the folder option.

try urself
passion_unlimitedd is offline  
Old 19-12-2007, 07:21 AM   #9 (permalink)
vaibhavtek
Guest
 
Posts: n/a
Red face Re: Make file invisble

ya
if we enable "Show Hidden Files" then it doesnot but if we enable "Show system file" then it.
but no one will know that ur file is a system file.

edited my tut.

Last edited by vaibhavtek; 19-12-2007 at 07:47 AM.
 
Old 13-01-2008, 12:10 AM   #10 (permalink)
In The Zone
 
Join Date: Feb 2005
Posts: 347
Default Re: Make file invisble

nick trick. Wi\onder if it will work with just the +s
__________________
Experience Is not Counted in Years.. But in the Countless Effort
www.kolasib.com www.zoram.org
valtea is offline  
Old 13-01-2008, 02:04 PM   #11 (permalink)
ico
.
 
Join Date: Jun 2007
Location: New Delhi
Posts: 8,129
Default Re: Make file invisble

We can do the same by going to the folder which contains the file we want to hide using Command Prompt and then typing:

attrib +r +h +s abcdefg.xyz

or Simply

attrib +r +h +s PATH
__________________
Won't be replying to PMs for a while. Stay in touch with e-mail.

Read before asking / messaging any moderator for any query: FAQ + answers for new members

Read all the sticky threads before asking any type of query. Most basic questions are answered in those.
ico is online now  
Old 13-01-2008, 02:26 PM   #12 (permalink)
vaibhavtek
Guest
 
Posts: n/a
Default Re: Make file invisble

ya that also
 
Old 13-01-2008, 05:07 PM   #13 (permalink)
Elevating Humanity
 
The Conqueror's Avatar
 
Join Date: Sep 2007
Location: Now on Earth
Posts: 1,937
Default Re: Make file invisble

Nice Trick Works for me
__________________
Regards,
The Conqueror
The Conqueror is offline  
Old 13-01-2008, 05:22 PM   #14 (permalink)
-----ATi-----
 
nvidia's Avatar
 
Join Date: May 2007
Location: Bangalore
Posts: 2,317
Default Re: Make file invisble

Very nice trick...
Thanks for sharing Vaibhavtek
__________________
http://twitter.com/akshayms
nvidia is offline  
Old 13-01-2008, 05:44 PM   #15 (permalink)
vaibhavtek
Guest
 
Posts: n/a
Default Re: Make file invisble

thanks
 
Old 16-01-2008, 12:49 PM   #16 (permalink)
ax3
Cool as a CUCUMBAR ! ! !
 
ax3's Avatar
 
Join Date: Dec 2003
Posts: 5,002
Default Re: Make file invisble

nice trick ........
__________________
... W H O T ...
ax3 is offline  
Old 16-01-2008, 02:25 PM   #17 (permalink)
vaibhavtek
Guest
 
Posts: n/a
Default Re: Make file invisble

thanks
 
Old 16-01-2008, 02:51 PM   #18 (permalink)
-The BlacKCoaT Operative-
 
Rollercoaster's Avatar
 
Join Date: Mar 2005
Location: Dehradun, India
Posts: 1,205
Default Re: Make file invisble

dont mean to ruin ur roll but this is a lame and old 'trick'.

not even a trick. it has been there since the dos days.
you wont believe how many variants of this exist on the net.
like the Alt+255 variant, the file.{GUID} variant, the permission variant and so on n on n on.. all to hide a file using some command line
__________________
--------------------------------------------
Holding my last breath, safe inside myself.....
--------------------------------------------
I dont use my computer. I misuse it- रोलरकोस्टर
Rollercoaster is offline  
Closed Thread

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
how to make subtitle file assddd QnA (read only) 8 29-07-2007 04:18 AM
how to make movie CD of .mpg file taken Software Q&A 3 23-03-2006 10:42 PM
How to make a DLL file for icons choudang Software Q&A 1 20-01-2006 11:51 PM
How to make all hotfixes into one exe file? rajas700 QnA (read only) 1 17-09-2005 07:46 PM


All times are GMT +5.5. The time now is 08:08 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.

Search Engine Optimization by vBSEO 3.3.2