<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Rizq Technology - Exploring Your iDea. &#187; hidden files</title>
	<atom:link href="http://rizqtech.net/tag/hidden-files/feed/" rel="self" type="application/rss+xml" />
	<link>http://rizqtech.net</link>
	<description>All about My Experiences, Knowledge and Thoughts.</description>
	<lastBuildDate>Sat, 14 Jan 2012 17:20:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Set Permission Unix and Windows.</title>
		<link>http://rizqtech.net/2008/12/30/set-permission-unix-and-windows/</link>
		<comments>http://rizqtech.net/2008/12/30/set-permission-unix-and-windows/#comments</comments>
		<pubDate>Tue, 30 Dec 2008 15:19:13 +0000</pubDate>
		<dc:creator>Rizky</dc:creator>
				<category><![CDATA[Linux / Unix]]></category>
		<category><![CDATA[Security & Bugs]]></category>
		<category><![CDATA[attrib]]></category>
		<category><![CDATA[file properties]]></category>
		<category><![CDATA[hidden files]]></category>
		<category><![CDATA[set permission]]></category>
		<category><![CDATA[unix file security]]></category>
		<category><![CDATA[windows security file]]></category>

		<guid isPermaLink="false">http://rizqtech.net/?p=451</guid>
		<description><![CDATA[Windows About attrib Attrib allows a user to change the properties of a specified file. Using attrib, the user has the capability of changing the file to have any of the below attributes. Read-only &#8211; allowing the file to be only viewed and not written to. Archived &#8211; allowing Microsoft backup and other backup programs [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><strong>Windows </strong></p>
<p>About <strong>attrib</strong></p>
<p><strong>Attrib</strong> allows a user to change the properties of a specified file. Using attrib, the user has the capability of changing the file to have any of the below attributes.</p>
<p><strong>Read-only</strong> &#8211; allowing the file to be only viewed and not written to.</p>
<p><strong>Archived</strong> &#8211; allowing Microsoft backup and other backup programs to know what files to backup.</p>
<p><strong>Hidden</strong> &#8211; making the file invisible to standard users.</p>
<p><strong>System</strong> &#8211; making the file an important system file.</p>
<p><strong>Syntax</strong> <strong>:</strong></p>
<p>Microsoft Windows 95, 98, and ME syntax</p>
<p>Displays or changes file attributes.</p>
<p><em><strong>ATTRIB [+R | -R] [+A | -A] [+S | -S] [+H | -H] [[drive:][path]filename] [/S]</strong></em><br />
<strong>+</strong> Sets an attribute.<br />
<strong>- </strong> Clears an attribute.<br />
<strong>R </strong> Read-only file attribute.<br />
<strong>A </strong> Archive file attribute.<br />
<strong>S </strong> System file attribute.<br />
<strong>H </strong> Hidden file attribute.<br />
<strong>/S </strong> Processes files in all directories in the specified path.</p>
<p><strong>Microsoft Windows 2000 and Windows XP syntax</strong></p>
<p>Displays or changes file attributes.</p>
<p><em><strong>ATTRIB [+R | -R] [+A | -A ] [+S | -S] [+H | -H] [[drive:] [path] filename] [/S [/D]]</strong></em><br />
<strong>+</strong> Sets an attribute.<br />
<strong>- </strong> Clears an attribute.<br />
<strong>R</strong> Read-only file attribute.<br />
<strong>A </strong> Archive file attribute.<br />
<strong>S</strong> System file attribute.<br />
<strong>H </strong> Hidden file attribute.<br />
<strong>/S</strong> Processes files in all directories in the specified path.<br />
<strong>/D </strong> Process folders as well.</p>
<p>Microsoft Windows 2000 and Windows XP <strong>recovery console syntax</strong></p>
<p>Note: The below options are the <strong>available options in the Windows recovery console.</strong></p>
<p>Changes attributes on one file or directory.</p>
<p><strong>ATTRIB -R | +R | -S | +S | -H | +H | -C | +C filename</strong><br />
<strong>+ </strong> Sets an attribute.<br />
<strong>- </strong> Clears an attribute.<br />
<strong>R</strong> Read-only file attribute.<br />
<strong>S </strong> System file attribute.<br />
<strong>H </strong> Hidden file attribute.<br />
<strong>C </strong> Compressed file attribute.</p>
<p>Examples :</p>
<p><em><strong>attrib</strong></em></p>
<p>Typing attrib by itself will display all files in the current directory and each of their attributes. If any file is hidden it will also display those files.</p>
<p><em><strong>attrib +r autoexec.bat</strong></em></p>
<p>Add the read-only attribute to the autoexec.bat file so it cannot be modified until the read only attribute is taken off. This is helpful for important system files or any other file that you do not want to have mistakenly edited or changed by another program.</p>
<p><em><strong>attrib +h config.sys</strong></em></p>
<p>Add the hidden attribute to the config.sys file causing it to be not be seen by the average user.</p>
<p><em><strong>attrib -h config.sys</strong></em></p>
<p>This command will do the opposite of the above command. Instead of hiding the file it will unhide the file if hidden.</p>
<p><strong>Example :</strong><br />
Question:<br />
How can I see hidden files in MS-DOS?<br />
Answer:</p>
<p>While in the MS-DOS or the Windows command line navigate to the directory you wish to view hidden files in and type one of the below commands.</p>
<p><em><strong>attrib</strong></em></p>
<p>Typing the attrib command alone will display all files in the current directory with their attributes to the left of the directory path and file name. Files that have an &#8220;H&#8221; to the left are hidden files.</p>
<p><em><strong>attrib | more</strong></em></p>
<p>If there are too many files to list on one page adding &#8220;| more&#8221; to the end of the attrib command will display all files with attributes one page at a time.</p>
<p><em><strong>attrib *.log</strong></em></p>
<p>Finally, if you know the name of the file you&#8217;re looking for or what it contains adding it with or without wild characters will display all files with their attributes. For example, the above command would list any log file (including hidden files) with its attributes.</p>
<p style="text-align: center;"><strong>Unix File Permissions<br />
</strong></p>
<p><span style="font-size: x-small;"> </span></p>
<p align="left"><span style="font-size: x-small;"><span style="font-family: Verdana;">The  								permission description can be in the form of a  								number that is exactly three digits. Each digit  								of this number is a code for the permissions  								level of three types of people that might access  								this file: </span></span></p>
<p><span style="font-size: x-small;"> </span></p>
<ol><span style="font-size: x-small;"></p>
<li>
<p align="left"><span style="font-family: Verdana;">Owner  									(you) </span></p>
</li>
<li>
<p align="left"><span style="font-family: Verdana;">Group  									(a group of other users that you set up) </span></p>
</li>
<li>
<p align="left"><span style="font-family: Verdana;">World  									(anyone else browsing around on the file  									system) </span></p>
</li>
<p></span></ol>
<p><span style="font-size: x-small;"> </span></p>
<p align="left"><span style="font-size: x-small;"><span style="font-family: Verdana;">The value  								of each digit is set according to what rights  								each of the types of people listed above have to  								manipulate that file. </span></span></p>
<p><span style="font-size: x-small;"> </span></p>
<p align="left"><span style="font-size: x-small;"><span style="font-family: Verdana;">Permissions  								are set according to numbers. Read is 4. Write  								is 2. Execute is 1. The sums of these numbers  								give combinations of these permissions: </span> </span></p>
<p><span style="font-size: x-small;"> </span></p>
<ul><span style="font-size: x-small;"></p>
<li>
<p align="left"><span style="font-family: Verdana;">0 = no  									permissions whatsoever; this person cannot  									read, write, or execute the file </span></p>
</li>
<li>
<p align="left"><span style="font-family: Verdana;">1 =  									execute only </span></p>
</li>
<li>
<p align="left"><span style="font-family: Verdana;">2 =  									write only </span></p>
</li>
<li>
<p align="left"><span style="font-family: Verdana;">3 =  									write and execute (1+2) </span></p>
</li>
<li>
<p align="left"><span style="font-family: Verdana;">4 =  									read only </span></p>
</li>
<li>
<p align="left"><span style="font-family: Verdana;">5 =  									read and execute (4+1) </span></p>
</li>
<li>
<p align="left"><span style="font-family: Verdana;">6 =  									read and write (4+2) </span></p>
</li>
<li>
<p align="left"><span style="font-family: Verdana;">7 =  									read and write and execute (4+2+1) </span></p>
</li>
<p></span></ul>
<p><span style="font-size: x-small;"> </span></p>
<p align="left"><span style="font-size: x-small;"><span style="font-family: Verdana;">Permissions  								are given using these digits in a sequence of  								three: one for owner, one for group, one for  								world. </span></span></p>
<p align="left"><span style="font-size: x-small;"><span style="font-family: Verdana;"><br />
</span></span></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Frizqtech.net%2F2008%2F12%2F30%2Fset-permission-unix-and-windows%2F';
  addthis_title  = 'Set+Permission+Unix+and+Windows.';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
<h3  class="related_post_title">Random Posts</h3><ul class="related_post"><li><a href="http://rizqtech.net/2008/11/24/sometimes/"  title="Sometimes">Sometimes</a></li><li><a href="http://rizqtech.net/2007/04/17/tutorial-3/"  title="Tutorial 3">Tutorial 3</a></li><li><a href="http://rizqtech.net/2007/07/11/basic-command-for-linux-2/"  title="Basic Command For Linux">Basic Command For Linux</a></li><li><a href="http://rizqtech.net/2009/05/29/about-relationship/"  title="About Relationship !">About Relationship !</a></li><li><a href="http://rizqtech.net/2007/11/20/newbie-di-bahasa-c-episode-6/"  title="Newbie di Bahasa C =&#62; episode 6">Newbie di Bahasa C =&#62; episode 6</a></li><li><a href="http://rizqtech.net/2009/03/15/network-basic/"  title="Network Basic.">Network Basic.</a></li><li><a href="http://rizqtech.net/2008/04/27/newbie-c-language-eps-2/"  title="Newbie @ C++ Language eps 2">Newbie @ C++ Language eps 2</a></li><li><a href="http://rizqtech.net/2008/07/30/how-to-find-a-promising-date-by-marketing-yourself-correctly/"  title="How To Find A Promising Date By Marketing Yourself Correctly.">How To Find A Promising Date By Marketing Yourself Correctly.</a></li><li><a href="http://rizqtech.net/2007/11/20/newbie-di-bahasa-c-episode-2/"  title="Newbie di Bahasa C =&#62; episode 2">Newbie di Bahasa C =&#62; episode 2</a></li><li><a href="http://rizqtech.net/2007/11/20/newbie-di-bahasa-c-episode-3/"  title="Newbie di Bahasa C =&#62; episode 3">Newbie di Bahasa C =&#62; episode 3</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://rizqtech.net/2008/12/30/set-permission-unix-and-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

