<?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>Microsoft Certification Blog &#187; Free resources</title>
	<atom:link href="http://www.microsoftkit.com/category/mcse-mcsa-on-server-2003/free-resources/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.microsoftkit.com</link>
	<description>MCTS,MCSE,MCITP,MCM,MCA</description>
	<lastBuildDate>Mon, 15 Mar 2010 03:27:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>70-290 study notes: Shared Folder and NTFS Permissions</title>
		<link>http://www.microsoftkit.com/70-290-study-notes-shared-folder-ntfs-permissions/</link>
		<comments>http://www.microsoftkit.com/70-290-study-notes-shared-folder-ntfs-permissions/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 03:21:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Free resources]]></category>
		<category><![CDATA[70-290]]></category>
		<category><![CDATA[70-290 braindumps]]></category>
		<category><![CDATA[70-290 free ebooks]]></category>
		<category><![CDATA[70-290 materials]]></category>
		<category><![CDATA[MCSA]]></category>
		<category><![CDATA[MCSE]]></category>
		<category><![CDATA[MCSE 2003]]></category>
		<category><![CDATA[NTFS]]></category>
		<category><![CDATA[NTFS Permissions]]></category>

		<guid isPermaLink="false">http://www.microsoftkit.com/?p=1014</guid>
		<description><![CDATA[Long time ago ,we post mcsa 70-290 notes on managing groups .Today ,My friends experiencing this MCSE  Server 2003 exam have organized his notes on shared Folder and NTFS permissions  to help the candidates to MCSA/MCSE have a better understand of the syllabus or exam notes .Although there are full of 70-290 braindumps [...]]]></description>
			<content:encoded><![CDATA[<p>Long time ago ,we post <a href="http://www.microsoftkit.com/70-290-free-technotes-managing-groups/">mcsa 70-290 notes on managing groups </a>.Today ,My friends experiencing this MCSE  Server 2003 exam have organized his notes on shared Folder and NTFS permissions  to help the candidates to MCSA/MCSE have a better understand of the syllabus or exam notes .Although there are full of 70-290 braindumps or free eBooks or pdf or other study guide, the experience or notes can be more useful for our <a href="http://www.microsoftkit.com/?s=70-290">70-290 preparation</a>. Of course, if you have better materials or advice to share with the MCSE candidates, please let me know.<br />
SO ,get down to business .Let’s see the TechNet’s.<br />
Shared folders and file system (NTFS) permissions have appeared on Microsoft exams since the first MCP certifications. Even though some major changes and additions have been made, overall the basics remained the same. What also remained the same is that it can still be a very confusing topic. Although this TechNotes is fairly complete for the 70-290 exam, make sure you practice these topics on a real Windows 2003 server. <span id="more-1014"></span><br />
There are two main types of access permissions in Windows 2003: NTFS file and folder permissions, and shared folder permissions. First we will go over the theory and practical aspect of both and then we’ll see how they work combined.<br />
NTFS Permissions<br />
Before NTFS became the default file system on all Windows operating systems, one of the main considerations to use NTFS, instead of FAT or FAT32, was the possibility to assign permissions for individual files and folders. Each file and folder on an NTFS volume contains an Access Control List (ACL). This list contains entries for groups and individual user accounts mapped to their corresponding permissions. When a user tries to access a resource, Windows checks the ACL if the user is listed and what level of permission is assigned. It doesn’t matter whether the user tries to access the resources on the hard drive or on a remote server.<br />
First let’s go over the main NTFS permissions that can be assigned for files and folders:<br />
READ<br />
Read permission allows a user to read the files, list the contents of folders, subfolders and volumes, and read the attributes, permissions and ownership. A user with only Read permission will not able to change the contents of the file or folder.<br />
WRITE<br />
Write permission allows the same as Read, but additionally allows the user to modify and create files and subfolders as well as change attributes.<br />
READ AND EXECUTE<br />
Read and Execute permission allows the same as Read, but additionally allows users to run applications.<br />
MODIFY<br />
Modify permission allows the same as Read, Write and Read and Execute combined, but additionally allows deleting.<br />
FULL CONTROL<br />
Full Control allows everything permitted by the other permissions, but additionally a user with Full Control can change permissions for other users and take ownership of files and folders.<br />
LIST CONTENTS<br />
List Contents permission applies to folders only. It allows user to read files and list the contents of folders and volumes. Users with this permissions can see the files and folders, but cannot read or modify them nor can the create new files and folders. </p>
<p>By default, Windows 2003 assigns Full Control permissions to the Administrators group and the System group to any NTFS volume, which are also inherited by the folders and files in it. The Users group is assigned Read &#038; Execute, List Folder Contents, and Read permissions. Users or groups who need to write and or modify files and folders will need additional permissions.<br />
The above list describes what the NTFS permissions ‘allow’, but you can also explicitly deny the permissions to users. Denying permissions is usually only done to make an exception. For example, you could allow Modify permission for the Sales group and deny the same permission for certain user account in the Sales group for whom you want to make an exception.<br />
Allow permissions are cumulative, which basically means the least restrictive permission becomes the effective permission. For example, John is a member of the Sales group and the Management group. Sales has been allowed Modify permissions for the folder SalesReports. Management has been allowed Read permissions for the same folder. Since John is a member of both groups, his effective permission in this case is Modify. The following table lists some more examples. Note that the listed permissions in these examples are ‘allowed’.<br />
User Permissions 	        Sales Group 	      Management Group 	Effective NTFS Permissions<br />
John 	Full Control	   Read	          Modify	                 Full Control<br />
Lisa 	Read	                Write	          Read	                 Write<br />
Bob 	Write	               Modify	          Read &#038; Execute           Modify<br />
Alice	Read	                Read	          Full Control	               Full Control</p>
<p>Configuring NTFS Permissions<br />
There are several different ways to assign NTFS permissions but the most common way is to use Windows Explorer or My Computer, right-click a file, folder, or volume, click Properties and then the click on the Security tab. Under Group or user names on the Security tab, select or add a group or user. Then at the bottom allow or deny one of the available permissions.<br />
<a href="http://www.microsoftkit.com/wp-content/uploads/2010/03/马甲1212_副本.jpg"><img src="http://www.microsoftkit.com/wp-content/uploads/2010/03/马甲1212_副本.jpg" alt="" title="" width="362" height="511" class="alignleft size-full wp-image-1027" /></a><br />
By default, when you add a user or group to the list in the dialog show above, this user or group will have Read &#038; Execute, List Folder Contents, and Read permissions.<br />
File permissions override folder permissions. For example, if user David has been allowed Read permissions for the folder and Modify permission for a file work.doc, his effective permissions for the work.doc file is Modify. The exception to this rule is the permission Full Control on folders. Groups or users that have Full Control for a folder can delete files and subfolders in it regardless of the permissions set on those files and subfolders.<br />
In addition to the permissions listed in the tables above, you can also assign special permissions by clicking the Advanced button on the Security tab to open the Advanced Security Settings dialog with the Permissions tab opened as displayed in the following screenshot. Here you can add, remove, and edit the permissions for users on a more granular level.<br />
<a href="http://www.microsoftkit.com/wp-content/uploads/2010/03/2.bmp"><img src="http://www.microsoftkit.com/wp-content/uploads/2010/03/2.bmp" alt="" title="2" class="alignleft size-full wp-image-1016" /></a></p>
<p>Permission Inheritance<br />
Besides explicitly assigned permissions on a file or folder, it may inherit permissions from its parent folder (up to the root folder, which is the volume itself). By default, permissions set on a folder are automatically inherited by all files and subfolders in it. This simplifies administration but is not always desired.<br />
In the image above, you can see the following two options:<br />
Allow inheritable permissions from the parent to propagate to this object and all child objects. Include these with entries explicitly defined here.<br />
When this option is cleared, the file or folder will not inherit permissions from the parent folder.<br />
Replace permission entries on all child objects with entries shown here that apply to child objects.<br />
This option will actually reset the permissions on child objects (files and subfolders) to make sure they inherit the permissions from this folder and those permissions are not overridden by permissions explicitly assigned on child objects.<br />
In some situation you may want to inherit most of the permissions from the parent, but make an exception for one or more users/groups. In that case you should set the opposite permission of the one that is inherited. For example, if James inherits Modify permissions from a parent folder through group permissions, you could deny Modify permissions for James on the child object to prevent inheritance for James only and still allow Modify access to the rest of the group.<br />
Effective Permissions<br />
On the Effective Permissions tab of the Advanced Security Settings for a file or folder you can select a user or group and see the effective permissions. These are the results of the permissions directly assigned to the file or folder and permission inherited from parent folders. <a href="http://www.microsoftkit.com/wp-content/uploads/2010/03/3.bmp"><img src="http://www.microsoftkit.com/wp-content/uploads/2010/03/3.bmp" alt="" title="3" class="alignleft size-full wp-image-1017" /></a><br />
Change ownership of files and folders<br />
When a user creates a file or folder Windows 2003 automatically assigns Full Control permissions to the creator/owner. This allows the user to assign permissions to other users for the files he or she creates. This means that besides the ACL, files and folders need to include information about who owns the file. By default, this is the account who creates the file or folder or the Administrators group. For several different reasons, the ownership of a file or folder may need to change. For example, if a user leaves the company, the ownership of his or her files and folders may need to be transferred to other users.<br />
You can take ownership of a file by replacing the owner with your own account or with one of the groups you are a member of. You must have Full Control or the special permissions Take Ownership to be able to take ownership of a file or folder. Users who has the Restore files and directories privilege can assign ownership to any user or group.<br />
<a href="http://www.microsoftkit.com/wp-content/uploads/2010/03/41.bmp"><img src="http://www.microsoftkit.com/wp-content/uploads/2010/03/41.bmp" alt="" title="4" class="alignleft size-full wp-image-1019" /></a></p>
<p>Moving and copying protected files<br />
Moving and copying NTFS protected files is similar to moving and copying compressed file. When you copy a protected file to a folder on the same, or a different volume, it inherits the permissions of the target folder. When you move a protected file to a different NTFS volume, the file inherits the permissions of the target folder. A move between volumes is actually considered a copy; the source file is deleted after it is copied to the target volume.<br />
However, when you move a protected file to a different location on the same volume, the file retains its permission. When data is moved within the same volume, the data is not actually relocated, the pointer to it is merely changed and that is why it retains the ACL. In all cases the target volume needs to be a NTFS volume as well because as mentioned earlier, FAT, FAT32 and other file systems do not support NTFS file and folder permissions.<br />
Shared Folder Access<br />
A shared folder (commonly referred to as a share) is a folder or entire volume that is published on the network and can be remotely accessed by other users. The shared folder can be used as if it were a local folder; to store data, and even to run applications from the share over the network. Members of the built-in group Administrators, Server Operators and Power Users can share folders. If the shared folder is located on an NTFS volume, users need at least the NTFS permission Read for the local folder to be able to access it, regardless of the share permissions assigned to it. Following are some of the common methods for creating shared folders:<br />
1. Using the Shared Folders snap-in, which is included by default in the Computer Management console. In the console tree, click Shares (below ComputerManagement|System Tools|Shared Folders). On the Action menu, click New File Share. You will be prompted to select the folder or drive, enter the share name and description, and set permissions.<br />
2. Use the net share command at the prompt: net share sharename=drive:path<br />
3. In Windows Explorer/My Computer right-click the folder or drive, click Properties and then the Sharing tab. Enable the option Share this folder, enter a name for the share, a description and configure other settings as depicted in the following image.<br />
<a href="http://www.microsoftkit.com/wp-content/uploads/2010/03/52.bmp"><img src="http://www.microsoftkit.com/wp-content/uploads/2010/03/52.bmp" alt="" title="5" class="alignleft size-full wp-image-1022" /></a><br />
Users can connect to a share in several ways, for example:<br />
1. Use My Network Places/Windows Explorer a user can browse to the share or use the Add Network Place wizard to create a shortcut.<br />
2. Use a direct UNC path, for example: //FileServer12/ShareX<br />
3. Use My Network Places/Windows Explorer or the net use command to map a drive letter to a share.<br />
By default, Windows 2003 creates the following hidden administrative shares depending on the configuration of the server:<br />
Admin$ 	This is the system root, usually C:\Windows, Administrators are assigned Full Control share permissions.<br />
C$, D$, E$, etc. 	Each volume on a hard disk is shared by default and provide easy access of the entire volume to Administrators. Administrators are assigned Full Control share permissions.<br />
IPC$ 	A system share that allows named pipes connections for communication between applications and other computers.<br />
Print$ 	This points to the %systemroot%\System32\Spool\Drivers folder, and is created when printers are shared to allow clients to automatically download the printer drivers.<br />
Fax$ 	A system share used by fax clients.<br />
You can create hidden shared folders yourself by adding a $ sign to the end of the share&#8217;s name. Hidden shares do not show up when users browse the network through My Networks Places for example. To access these hidden shares, users need to enter the name including the $ sign. NETLOGON and SYSVOL are two other administrative shares that exist on domain controllers, but they are not hidden.<br />
Shared Folder Permissions<br />
There are three different share permissions that can be assigned to groups and individual user accounts. These permissions apply only when connecting to the share over the network. The share permissions do not apply to users who log on to the local machine. The following share three permissions are available for shared folders:<br />
READ<br />
Allows user to read files and list the contents of folders and volumes. This allows executing applications as well. The default for new shared folders is Read permissions for Everyone.<br />
CHANGE<br />
Allows the same as Read and allows the user to modify, create and delete files and subfolders.<br />
FULL CONTROL<br />
Allows the same as Change, but additionally allows the user to modify permissions.<br />
Whether the permissions actually allow the desired access depends on the NTFS permission of the shared folder and the file subfolders in it. For example, if a user has the share permission Change for a shared folder, that user will not be able to actually change files for which the user has only Read NTFS permissions. We will go over some more examples in the following section “Combining Shared Folders with NTFS Permissions”. However, you can create share folders located on a FAT or FAT32 disk and assign share permissions to provide protected access for users that connect to the shared folder. Remember that share permissions are only used when a user connects to the shared folder from a remote computer. So if a user logs on locally to a computer with a FAT/FAT32 drive, the share permissions are ignored.<br />
To configure share permissions in Windows Explorer/My Computer right-click the folder or drive, and then click Properties and then the Permissions button on the Sharing tab. Under Group or user names: select or add a group or user, and allow or deny one of the permissions listed in the table above.<br />
<a href="http://www.microsoftkit.com/wp-content/uploads/2010/03/6.bmp"><img src="http://www.microsoftkit.com/wp-content/uploads/2010/03/6.bmp" alt="" title="6" class="alignleft size-full wp-image-1023" /></a><br />
When you set permissions, you can either Allow or Deny them to a user or group. Typically you would allow a group share permissions and deny the same permissions to certain members of that group. The default permissions for new shared folders is Read to Everyone. Whether Everyone will actually be able to read depends on the NTFS permissions.<br />
Combining Shared Folders with NTFS Permissions<br />
When you combine NTFS permissions and share permissions the most restrictive effective permission counts. For example, if you create a folder with files and assign them Full Control NTFS permissions to Everyone and share the same folder and assign the share permission Read to Everyone, users connecting through the network will have Read permissions.<br />
Probably the most common mistake made when combining share permissions and NTFS permissions is to add them all to a single pile and then take the most restrictive. Instead, you need to determine the effective share permissions amd the effective NTFS permission before taking the most restrictive.<br />
So to determine what the permissions are for a user connecting through a shared folder to a local folder protected with NTFS permissions you need to do the following:</p>
<p>1. Determine the ‘effective’ NTFS permissions<br />
2. Determine the ‘effective’ share permissions<br />
3. Take the most restrictive of these two.<br />
Following is a practice questions that raised discussion in our forums several times:<br />
X. You share a folder on your computer and you assigned the share permission Change to Everyone. John, a user from the Sales department, has been granted Full Control NTFS permission to the folder. John is also a member of the Sales group, which has been assigned Read NTFS permissions. What are John&#8217;s effective permissions when connecting to the shared folder?<br />
a. Read<br />
b. Read &#038; Execute<br />
c. Change<br />
d. Full Control<br />
The correct answer is c. Change, but many people seem to be inclined to choose answer a. Read instead because Read is the most restrictive permission. However, it is the most restrictive effective permissions that counts.<br />
1. Determine the effective NTFS permissions:<br />
As mentioned earlier in the NTFS permissions section, NTFS permissions are cumulative. This means the least restrictive applies when considering only NTFS permissions. In this case, this means John has Read NTFS permissions for the folder through the Sales group, and Full Control NTFS permission through his own account, hence his effective NTFS permissions is Full Control.<br />
2. Determine the effective share permissions:<br />
The question only mentions that the share permissions are Change to Everyone, so no other share permissions have been explicitly assigned for the Sales group or John and hence the effective share permission is Change.<br />
3. Take the most restrictive of these two:<br />
The most restrictive of the previous two effective permissions is Change. Although John has Full Control NTFS permission for the folder, he is accessing the folder through a shared folder for which he only has Change permissions.<br />
Troubleshoot access to files and shared folders<br />
Problems accessing shared folders are often caused by underlying network connectivity problems. Before you scratch yourself a bold spot trying to find an incorrectly configured ACL or Shared Folder, make sure you check basic network connectivity, ping the file server by name, check if the user is properly logged on to the domain, etc.<br />
Probably the most common cause of problems with accessing files and shared folders is an incorrect configuration, so when things are not working as expected you should verify the configuration. A user that is not able to access a file or folder maybe a member of a group who was recently denied certain permissions. Configuration changes of permissions assigned to a parent folder my also cause problems through inheritance.<br />
The Effective Permission tool on the Advanced Security Settings dialog provides an easy method to determine the NTFS permissions, but it does not include share permissions. I n large environments with many users and groups, it can be hard to determine the effective share permissions so it is important to maintain a structured user and group design and folder hierarchy. The following link points to document with Best practices for Shared Folders.<br />
The Shared Folders snap-in, included by default in the System Tools of the Computer Management console, provides an overview of the Shares configured on the local computer, the active Sessions, and the currently Open Files. These can provide valuable information when troubleshooting access to shared folders.<br />
<a href="http://www.microsoftkit.com/wp-content/uploads/2010/03/71.bmp"><img src="http://www.microsoftkit.com/wp-content/uploads/2010/03/71.bmp" alt="" title="7" class="alignleft size-full wp-image-1025" /></a></p>
<div class="lightsocial_container">
<a href="http://digg.com/submit?url=http%3A%2F%2Fwww.microsoftkit.com%2F70-290-study-notes-shared-folder-ntfs-permissions%2F&amp;title=70-290+study+notes%3A+Shared+Folder+and+NTFS+Permissions"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;
<a href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.microsoftkit.com%2F70-290-study-notes-shared-folder-ntfs-permissions%2F&amp;title=70-290+study+notes%3A+Shared+Folder+and+NTFS+Permissions"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.microsoftkit.com%2F70-290-study-notes-shared-folder-ntfs-permissions%2F&amp;title=70-290+study+notes%3A+Shared+Folder+and+NTFS+Permissions"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;
<a href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.microsoftkit.com%2F70-290-study-notes-shared-folder-ntfs-permissions%2F&amp;headline=70-290+study+notes%3A+Shared+Folder+and+NTFS+Permissions"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;
<a href="http://www.dzone.com/links/add.html?title=70-290+study+notes%3A+Shared+Folder+and+NTFS+Permissions&amp;url=http%3A%2F%2Fwww.microsoftkit.com%2F70-290-study-notes-shared-folder-ntfs-permissions%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;
<a href="http://www.facebook.com/sharer.php?t=70-290+study+notes%3A+Shared+Folder+and+NTFS+Permissions&amp;u=http%3A%2F%2Fwww.microsoftkit.com%2F70-290-study-notes-shared-folder-ntfs-permissions%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;
<a href="http://delicious.com/save?title=70-290+study+notes%3A+Shared+Folder+and+NTFS+Permissions&amp;url=http%3A%2F%2Fwww.microsoftkit.com%2F70-290-study-notes-shared-folder-ntfs-permissions%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;
<a href="http://www.dotnetkicks.com/kick/?title=70-290+study+notes%3A+Shared+Folder+and+NTFS+Permissions&amp;url=http%3A%2F%2Fwww.microsoftkit.com%2F70-290-study-notes-shared-folder-ntfs-permissions%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;
<a href="http://dotnetshoutout.com/Submit?title=70-290+study+notes%3A+Shared+Folder+and+NTFS+Permissions&amp;url=http%3A%2F%2Fwww.microsoftkit.com%2F70-290-study-notes-shared-folder-ntfs-permissions%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;
<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.microsoftkit.com%2F70-290-study-notes-shared-folder-ntfs-permissions%2F&amp;title=70-290+study+notes%3A+Shared+Folder+and+NTFS+Permissions&amp;summary=&amp;source="><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;
<a href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.microsoftkit.com%2F70-290-study-notes-shared-folder-ntfs-permissions%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;
<a href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.microsoftkit.com%2F70-290-study-notes-shared-folder-ntfs-permissions%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.microsoftkit.com/70-290-study-notes-shared-folder-ntfs-permissions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MCSE 70-270 free study notes</title>
		<link>http://www.microsoftkit.com/mcse-70-270-free-study-notes/</link>
		<comments>http://www.microsoftkit.com/mcse-70-270-free-study-notes/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 03:34:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Free resources]]></category>
		<category><![CDATA[MCSE /MCSA on server 2003]]></category>
		<category><![CDATA[70-270 free study notes]]></category>
		<category><![CDATA[70-270 study guide]]></category>
		<category><![CDATA[EFS]]></category>
		<category><![CDATA[FAT32]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[MCSE 70-270]]></category>
		<category><![CDATA[NTFS]]></category>
		<category><![CDATA[passing score]]></category>
		<category><![CDATA[practice tests]]></category>
		<category><![CDATA[Windows 2003]]></category>
		<category><![CDATA[Windows NT 4]]></category>
		<category><![CDATA[xp]]></category>

		<guid isPermaLink="false">http://www.microsoftkit.com/?p=979</guid>
		<description><![CDATA[Since we posted MCSE 70-270 exam TechNotes(1) about installing XP Professional,it has been a long time .However ,on that post ,we did not list or post all of  the explanation to the topic areas for this exam .When you read through that post , you still can not pass MCSA 70-270 exam for sure.Although we [...]]]></description>
			<content:encoded><![CDATA[<p>Since we posted MCSE 70-270 exam TechNotes(1) about <a title="Free 70-270 technotes" href="http://www.microsoftkit.com/free-70-270-xp-exam-technotes/" target="_blank">installing XP Professional</a>,it has been a long time .However ,on that post ,we did not list or post all of  the explanation to the topic areas for this exam .When you read through that post , you still can not pass MCSA 70-270 exam for sure.Although we once post an article about <a title="70-270 study guide" href="http://www.microsoftkit.com/preparation-guide-for-mcse-70-270/" target="_self">70-270 study guide </a>,there are just some common questions such as passing score, how to choose best materials or resources ,which practice tests are better,and so on.To help us better understand XP technology or get high scores in this exam ,we will post all of my study notes to all objectives.If you are confused or have problems ,you can tell us or you can via  <a href="http://technet.microsoft.com/en-us/library/bb491054.aspx" target="_blank">Microsoft TechNet </a>to get better answers .<span id="more-979"></span></p>
<p><strong>Implementing and Conducting Administration of Resources</strong></p>
<p>FILE SYSTEMS    </p>
<p>Windows XP support the following file systems:</p>
<p>FAT   </p>
<p>Disks formatted with the FAT file system can be accessed by MS-DOS, all versions of Windows, and OS/2. The maximum supported volume size is 4 GB, the maximum file size is 2 GB.</p>
<p>This file system should only be used on removable media such as floppy disks and hard disks smaller than 512 MB.<br />
FAT32    </p>
<p>The faster file system FAT32, is often used in multi-boot situations with operating systems that do not support NTFS. Disks formatted with the FAT32 file system are supported by</p>
<p>Windows 95 OSR2, Windows 98 and ME, Windows 2000, and Windows XP. Windows NT 4 and earlier cannot access FAT32 volumes. The maximum supported volume size for FAT32 is 2 TB, but</p>
<p>Windows XP can format up to 32 GB only. The maximum file size is 4 GB. The minimum size for a FAT32 volume is 512 MB. You cannot format removable media such as floppy disks with</p>
<p>FAT32.<br />
NTFS    </p>
<p>Disks formatted with NTFS version 5 can only be accessed by Windows NT 4.0 with Service Pack 4 or higher, Windows 2000, and Windows XP. NTFS supports a volume size over 2 TB and</p>
<p>the maximum file size is limited only by the available free space. You cannot format removable media such as floppy disks with NTFS. Besides being able to handle large disks,</p>
<p>NTFS is the preferred file system for Windows 2000 and XP because of the extra features it offers, including:<br />
- File and folder permissions &#8211; (discussed below)<br />
- File and folder compression &#8211; (discussed below)<br />
- Encrypted File System (EFS) &#8211; (see EFS TechNotes)<br />
- Disk Quotas &#8211; Allows quotas to be assigned to users for disk space usages per volume. Quotas are only available on NTFS volumes and can be enabled and configured on the Quota</p>
<p>tab on a volume&#8217;s Properties sheet.<br />
CDFS   <br />
This is the file system used on compact discs. You cannot format regular disks with this file system.<br />
Converting File Systems </p>
<p>You can convert FAT file systems to NTFS using the following command: convert c: /fs:ntfs<br />
The convert utility cannot be used to convert from NTFS to another file system. For example if you converted a FAT32 partition to NTFS and you want to revert it back to FAT32,</p>
<p>you will have to create a full backup, reformat the drive with FAT32, and restore the backup.<br />
FILE AND FOLDER COMPRESSION    </p>
<p>NTFS Compression    </p>
<p>NTFS Compression allows compression of individual files and folders, as well as entire NTFS drives. The process of compression and decompression is transparent to the user. For example, when a user opens a document from a NTFS compressed disk, the document is decompressed automatically, when the user saves the document it is compressed again. This</p>
<p>process might decrease your computer’s performance; it&#8217;s best to compress static data and only if it really saves space, you don&#8217;t want to waste CPU cycles compressing a ZIP</p>
<p>file for example. An NTFS-compressed file cannot be encrypted, and an encrypted file cannot be compressed. If you do enable compression for an encrypted file, the file will lose</p>
<p>it&#8217;s encryption attribute before it is compressed.</p>
<p>You can enable compression for a volume when you format it. To enable compression on an existing volume, right-click it and choose Properties from the context menu, on the</p>
<p>General tab enable the option Compress drive to save disk space. To compress a file or folder, right-click it and choose Properties from the context menu, click the Advanced</p>
<p>button and below Compress and Encrypt attributes enable the option Compress contents to save disk space. When you enable compression on a folder or volume, Windows will ask if</p>
<p>you want to enable compression for all the files and subfolders in the folder or volume as well. Besides using Windows Exporer, you can also use the command compact to compress</p>
<p>or decompress a file or folder.</p>
<p>When you copy a compressed file to a folder on the same, or a different volume, it inherits the compression state of the target folder. This works also vice versa; when you copy</p>
<p>an uncompressed file to a folder with compression enabled, the file will inherit the the target&#8217;s compression state and thus it will be compressed.</p>
<p>When you move a compressed file to a folder without compression on the same volume, the file retains its compression attribute. When data is moved within the same volume, the data is not actually relocated, just the pointer to it, this is why it retains the compression attribute. When you move a compressed file to a folder without compression on a different NTFS volume, the file inherits the compression state of the target folder. If the target is not compressed, or is a FAT or floppy disk, the file will be uncompressed.</p>
<p>A move between volumes is actually considered a copy; after the source file is copied to the target volume the source file is deleted.</p>
<p>By default, compressed files and folders are displayed in a different color, you can change this by choosing Folder Options in the Tools menu of My Computer/Windows Explorer.</p>
<p>Click on the View tab and enable the option: Show encrypted or compressed NTFS files in color.<br />
Compressed (zipped) Folders   </p>
<p>A new feature introduced in Windows XP is Compressed Folders. These are ZIP files that can be used like regular folders, with some limitations and some advantages. The main limitation is that many programs can&#8217;t be run directly from the ZIP file because they might depend on files outside the Compressed Folder. Also you cannot save files to a compressed folder (zip file), you have to use drag and drop or copy and paste. Some advantages of Compressed (zipped) Folders are that they can easily be transported on removable media and the Internet, they can be used on FAT partitions, and they can be protected with a password. Compressed Folders are not available on Windows XP 64-Bit Edition.</p>
<p>The easiest way to create a Compressed Folder is by right-clicking the desktop, point to New, and then select Compressed (zipped) Folder. You can also use the File menu in My Computer. A Compressed Folder is represented by a Folder icon with a zipper.<br />
NTFS FILE PERMISSIONS    </p>
<p>One of the main reasons to use NTFS is the possibility to assign permissions for individual files and folders. Each file and folder on an NTFS volume contains an Access Control List (ACL). This list is filled with entries for groups and individual user accounts and their corresponding permissions. When a user tries to access a resource, Windows XP checks the ACL if the user is listed and what level of permission is assigned.</p>
<p>The following permissions can be assigned for files and folders:</p>
<p>Read  Allows user read files and list the contents of folders, subfolders and volumes, including the attributes, permissions and ownership of the files.<br />
Write Allows the same as Read and additionally allows the user to modify and create files and (sub-)folders as well as changing attributes.<br />
Read and Execute Allows the same as Read and additionally allows users to run applications.<br />
Modify  Same as Read plus Write and and additionally allows executing applications as well.<br />
Full Control Allows everything permitted by the other permissions and and additionally a user with Full Control can change permissions and take ownership of file. </p>
<p>For folders only, the following additional permission can be assigned:</p>
<p>List Contents  Allows user to read files and list the contents of folders and volumes, user with this permissions can only see the files and folders, not read or change them.</p>
<p>To assign NTFS permissions in Windows Explorer/My Computer, right-click a file, folder, or drive, and click Properties and then the Security tab. If your computer is not a member of a domain, you have to disable the option Use simple file sharing on the View tab of Folder Options before you can see the Security tab.</p>
<p>Under Group or user names: on the Security tab, select or add a group or user, and allow or deny one of the permissions listed in the table above. Denying permissions is usually only done to make an exception, for example, you could allow Modify permission for the Sales group and deny the same permission for certain user account in the Sales group.<br />
 <a href="http://www.microsoftkit.com/wp-content/uploads/2010/01/xp_sharing.gif"><img class="aligncenter size-full wp-image-980" title="xp_sharing" src="http://www.microsoftkit.com/wp-content/uploads/2010/01/xp_sharing.gif" alt="" width="367" height="455" /></a></p>
<p>When you share a folder, you can set a User limit to set a maximum amount of users that can connect to the share simultaneously.</p>
<p>There are three different share permissions that can be assigned to groups and individual user accounts. These permissions apply only when connecting to the share over the network. The share permissions do not apply to users who log on to the local machine. If you want local security use NTFS file and folder permissions.</p>
<p>Share permissions:<br />
Read Allows user to read files and list the contents of folders and volumes. This allows executing applications as well.<br />
Change Allows the same as Read and allows the user to modify and create files and folders.<br />
Full Control<br />
 Allows the same as Change and allows the user to modify Share permissions as well.</p>
<p>When you set permissions you can either Allow or Deny them to a user or group. Typically you would allow a group share permissions and deny the same permissions to certain members of that group. The default permissions for new shares is Read to Everyone.</p>
<p>When you combine NTFS permissions and share permissions the most restrictive permission counts. For example, if you create a folder with files and assign them Full Control NTFS permissions to Everyone and share the same folder and assign the share permission Read to Everyone, users connecting through the network will have Read permissions.</p>
<p>To assign share permissions in Windows Explorer/My Computer right-click the folder or drive, and then click Properties and then the Permissions button on the Sharing tab. Under Group or user names: select or add a group or user, and allow or deny one of the permissions listed in the table above.</p>
<p>By default, Windows XP creates several hidden administrative shares:</p>
<p>Share Purpose<br />
Admin$ This is the system root, usually C:\Windows, Administrators are assigned Full Control share permissions.<br />
Print$ This is the %systemroot%\System32\Spool\Drivers folder, this folder is created when printers are shared to allow clients to automatically download the printer drivers. Administrators and Power users are assigned Full Control share permissions, Everyone is assigned Read permission.<br />
C$, D$, E$, etc.<br />
 Each volume on a hard disk is shared. to provide easy access of the entire volume to Administrators. Administrators are assigned Full Control share permissions.</p>
<p>You can also create hidden shares yourself by adding a $ sign to the end of the share&#8217;s name.</p>
<p>Users can connect to a share in several ways, for example:<br />
1. Using My Network Places/Windows Explorer you can browse to the share or use the Add Network Place wizard.<br />
2. Using a direct UNC path, for example: //FileServer12/ShareX<br />
3. Using My Network Places/Windows Explorer or the net use command to map a drive letter to a share.</p>
<p>Offline Files     </p>
<p>Offline Folder allows user to cache the contents of a share and make it available offline, so they can access the files and some programs, even when they are not connected to the network. To allow a shared folder to be cached offline, in Windows Explorer/My Computer right-click the folder or drive, click Properties and then the Caching button on the Sharing tab.</p>
<p><a href="http://www.microsoftkit.com/wp-content/uploads/2010/01/xp_caching.gif"><img class="aligncenter size-full wp-image-981" title="xp_caching" src="http://www.microsoftkit.com/wp-content/uploads/2010/01/xp_caching.gif" alt="" width="416" height="321" /></a></p>
<p>If you enable the option Allow caching of files in this shared folder you can choose one of the following three settings:</p>
<p>Manual caching of documents This is the the default setting when you enable caching. Users will be able to manually select the files they want to make available offline.<br />
Automatic caching of documents Each file that is opened from this share will automatically be copied to the Offline Files folder.<br />
Automatic caching of programs and documents<br />
 This setting allows caching of files that are read-only such as program files.<br />
To enable and configure the Offline Files feature on a client computer, from the Tools menu in My Computer choose Folder Options and click the Offline Files tab. Here you can disable/enable Offline Files, configure synchronization at logon and/or logoff, enable encryption for all offline files, and set the maximum amount of disk space used for offline files (default is 10% of drive space). When you click the Advanced button, you can also view and delete the offline files, and configure what action should be taken when the network connection is lost.</p>
<p><a href="http://www.microsoftkit.com/wp-content/uploads/2010/01/xp_offlinefolders.gif"><img class="aligncenter size-full wp-image-982" title="xp_offlinefolders" src="http://www.microsoftkit.com/wp-content/uploads/2010/01/xp_offlinefolders.gif" alt="" width="386" height="475" /></a></p>
<p>Before files are actually cached on your client, you need to select the shares you wish to make available offline. You can do this simply by right-clicking a drive mapping, and choosing <em>Make available offline</em>.</p>
<p> <a href="http://www.techexams.net/technotes/xp/printing.shtml">Printing</a><br />
Covers Windows XP local and network printing. Creating, configuring, sharing, securing and connecting to printers.</p>
<p> <a href="http://www.techexams.net/technotes/xp/desktop.shtml">Desktop Environment</a><br />
Covers User Profiles, multiple langauges and locations, local settings and Windows Installer packages.</p>
<p> <a href="http://www.techexams.net/technotes/xp/storage.shtml">Storage</a><br />
Covers storage types, dynamic and basic, spanning, striping, removable media and disk management tasks.</p>
<p> <a href="http://www.techexams.net/technotes/xp/backup_restore_repair.shtml">Backup, Restore, Repair, and Recover</a><br />
Covers Backup, Restore, System State Data, ASR, System Restore, Safe Mode, Last Know Good, Device Driver Roll Back and more.</p>
<p> <a href="http://www.techexams.net/technotes/xp/devicesdrivers.shtml">Devices and Drivers</a><br />
Covers Device Manager, display devices, ACPI, driver signing, multi-processor configuration, and installing various I/O devices.</p>
<p> <a href="http://www.techexams.net/technotes/xp/adsintro.shtml">Introduction to ADS</a><br />
Covers Windows 2000 Active Directory basics and terminology.</p>
<p> <a href="http://www.techexams.net/technotes/xp/remote.shtml">Remote Assistance and Remote Dekstop</a><br />
Covers Remote Assitance and Remote Dekstop, invitations, offers and troubleshooting.</p>
<p> <a href="http://www.techexams.net/technotes/xp/ics_icf.shtml">Internet Connection Sharing (ICS) and Internet Connection Firewall (ICF)</a><br />
Covers Internet Connection Sharing (ICS) and Internet Connection Firewall (ICF).</p>
<p> <a href="http://www.techexams.net/technotes/xp/iis.shtml">Internet Information Services (IIS)</a><br />
Covers Internet Internet Information services, home directories, virtual directories, web sharing, permissions and troubleshooting.</p>
<p> <a href="http://www.techexams.net/technotes/xp/efs.shtml">Encrypted Files System (EFS)</a><br />
Covers Encrypted File System (EFS), Recovery Agents, and CIPHER command.</p>
<p> <a href="http://www.techexams.net/technotes/xp/auditing.shtml">Auditing</a> *NEW*<br />
Covers local Audit Policy and Event Viewer&#8217;s security log configuration.</p>
<p> <a href="http://www.techexams.net/technotes/xp/performance.shtml">Performance</a> *NEW*<br />
Covers memory, processor, disk, and application performance, Task Manager, System Monitor and Performance Logs and Alerts, Disk Defragmenter, Scheduled Tasks, and Visual Effects.</p>
<p> <a href="http://www.techexams.net/technotes/xp/localusersgroups.shtml">Local User and Group Accounts</a> *NEW*<br />
Covers Local Users and Groups, account settings, account policies, and user rights assignment.</p>
<p> <a href="http://www.techexams.net/technotes/xp/ie.shtml">Internet Explorer</a> *NEW*<br />
Covers Internet explorer security settings and access to resources. </p>
<p>This is from <a href="http://www.techexams.net/technotes/xp/administration.shtml">http://www.techexams.net/technotes/xp/administration.shtml</a>
<div class="lightsocial_container">
<a href="http://digg.com/submit?url=http%3A%2F%2Fwww.microsoftkit.com%2Fmcse-70-270-free-study-notes%2F&amp;title=MCSE+70-270+free+study+notes+"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;
<a href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.microsoftkit.com%2Fmcse-70-270-free-study-notes%2F&amp;title=MCSE+70-270+free+study+notes+"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.microsoftkit.com%2Fmcse-70-270-free-study-notes%2F&amp;title=MCSE+70-270+free+study+notes+"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;
<a href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.microsoftkit.com%2Fmcse-70-270-free-study-notes%2F&amp;headline=MCSE+70-270+free+study+notes+"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;
<a href="http://www.dzone.com/links/add.html?title=MCSE+70-270+free+study+notes+&amp;url=http%3A%2F%2Fwww.microsoftkit.com%2Fmcse-70-270-free-study-notes%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;
<a href="http://www.facebook.com/sharer.php?t=MCSE+70-270+free+study+notes+&amp;u=http%3A%2F%2Fwww.microsoftkit.com%2Fmcse-70-270-free-study-notes%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;
<a href="http://delicious.com/save?title=MCSE+70-270+free+study+notes+&amp;url=http%3A%2F%2Fwww.microsoftkit.com%2Fmcse-70-270-free-study-notes%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;
<a href="http://www.dotnetkicks.com/kick/?title=MCSE+70-270+free+study+notes+&amp;url=http%3A%2F%2Fwww.microsoftkit.com%2Fmcse-70-270-free-study-notes%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;
<a href="http://dotnetshoutout.com/Submit?title=MCSE+70-270+free+study+notes+&amp;url=http%3A%2F%2Fwww.microsoftkit.com%2Fmcse-70-270-free-study-notes%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;
<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.microsoftkit.com%2Fmcse-70-270-free-study-notes%2F&amp;title=MCSE+70-270+free+study+notes+&amp;summary=&amp;source="><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;
<a href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.microsoftkit.com%2Fmcse-70-270-free-study-notes%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;
<a href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.microsoftkit.com%2Fmcse-70-270-free-study-notes%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.microsoftkit.com/mcse-70-270-free-study-notes/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Free 70-270 Xp Exam TechNotes</title>
		<link>http://www.microsoftkit.com/free-70-270-xp-exam-technotes/</link>
		<comments>http://www.microsoftkit.com/free-70-270-xp-exam-technotes/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 09:49:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Certification materials]]></category>
		<category><![CDATA[Free resources]]></category>
		<category><![CDATA[MCSE /MCSA on server 2003]]></category>
		<category><![CDATA[70-270 practice test]]></category>
		<category><![CDATA[70-270 preparation guide]]></category>
		<category><![CDATA[70-270 questions]]></category>
		<category><![CDATA[free70-270 technotes]]></category>
		<category><![CDATA[MCSA 70-270]]></category>
		<category><![CDATA[MCSE 70-270]]></category>
		<category><![CDATA[RIS]]></category>
		<category><![CDATA[Server 2003]]></category>
		<category><![CDATA[USMT]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[xp 70-270 exam]]></category>

		<guid isPermaLink="false">http://www.microsoftkit.com/free-70-270-xp-exam-technotes/</guid>
		<description><![CDATA[&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Installing Windows XP Professional
Several weeks ago，we once talked about the 70-270 preparation guide. From that post, we have known some useful information such as the number of MCSE 70-270 questions, how to choose best practice tests or exam or other exam materials, passing or total scores and so on. Obviously, it is not enough [...]]]></description>
			<content:encoded><![CDATA[<h2>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Installing Windows XP Professional</h2>
<p>Several weeks ago，we once talked about the 70-270 preparation guide. From that post, we have known some useful information such as the number of MCSE 70-270 questions, how to choose best practice tests or exam or other exam materials, passing or total scores and so on. Obviously, it is not enough for us to grasp XP technologies such as Install, Configure, and Administer Microsoft Windows XP Professional, and so on. To help us get MCSE/MCSA on server 2003 in high rate, here we will share our 70-270 Xp Exam TechNotes(1) for free.</p>
<p> <span id="more-954"></span>
<p>&#160;</p>
<p>&#160;</p>
<p><strong>SYSTEM REQUIREMENTS</strong> </p>
<p>Before you install Windows XP Professional you should ensure that your hardware meets the system requirements. These may vary based on your system configuration, click here for more details and the complete system requirements listed at Microsoft.com   <br />&#160; CPU Minimum required: 233 MHz    <br />Recommended: 300 Mhz or higher processor    <br />Supports Dual-processor.     <br />RAM 64 MB minimum supported    <br />128 MB or higher recommended    <br />4 GB maximum supported     <br />Disk space 1.5 gigabytes (GB) of available hard disk space     <br />Other    <br />requirements&#160; &#8211; SVGA (800&#215;600 or higher) display adapter and monitor    <br />- CD-ROM or DVD drive    <br />- Keyboard and mouse or compatible pointing device </p>
<p>HCL </p>
<p>You should also ensure that you hardware is listed in the Hardware Compatibility List, You can download the HCL in text file format here. When not all your hardware is on the HCL it does not necessarily mean you cannot use it with Windows XP, check the vendor&#8217;s web site if they have a XP driver for their device. </p>
<p>THE INSTALLATION&#160;&#160;&#160;&#160; Back to top </p>
<p>A typical installation of Windows XP Professional from a CD-ROM consists of 4 stages described below: </p>
<p>1. Starting Setup </p>
<p>If your computer is able to boot from CD-ROM, the easiest way to start setup is to boot from the Windows XP Professional installation CD. During this stage, which is also known as the text-based portion of setup, a mini Windows XP is loaded on the target computer and starts the setup program. After accepting the license agreement, setup prompts you to create or choose a partition where Windows XP should be installed. If you choose to create a new partition setup formats the new partition as either FAT32 or NTFS, depending on your choice. </p>
<p>If the target computer is not able to boot from CD-ROM, or you want more control over the setup process and parameters, you can start setup manually using winnt32.exe or winnt.exe, both described below. </p>
<p>Winnt32.exe </p>
<p>Performs an installation of, or upgrade to Windows XP. You can run winnt32.exe on Windows 9x, ME, NT, 2000, or XP. The following table lists and describes the available command-line parameters for the winnt32.exe command: </p>
<p>Parameter Purpose    <br />/checkupgradeonly Checks your computer for upgrade compatibility with Windows XP. You can save the results in a file, upgrade.txt in the system root by default.     <br />/cmd:command_line&#160; Instructs Setup to carry out a specific command before the final phase of Setup. This would occur after your computer has restarted and after Setup has collected the necessary configuration information, but before Setup is complete.     <br />/cmdcons Adds the Recovery Console to the startup options. This option can only be used when Windows XP is already installed.     <br />/copydir:{i386|I64}\FolderName Creates an additional folder within the folder in which the Windows XP files are installed. For example use /copydir:i386\corpdrivers to have Setup copy that folder to your newly installed computer, making the new folder location systemroot\corpdrivers. Use /copydir multiple times to create additional folders.     <br />/copysource:FolderName&#160; Creates a temporary additional folder within the folder in which the Windows XP files are installed and is deleted after Setup completes. For example use /copysource:corpdrivers to have Setup copy that folder to your newly installed computer, making the temporary folder location systemroot\corpdrivers. Use /copysource multiple times to create additional folders.     <br />/debug[Level]:[FileName]&#160; Creates a debug log at the level specified, for example, /debug4:InstDbg.log. The default log file is C:\systemroot\Winnt32.log, and the default debug level is 2. Level 0 represents severe errors, 1 errors, 2 warnings, 3 information, and 4 detailed information for debugging.     <br />/dudisable Discussed below in &quot;Post-installation Updates&quot;     <br />/duprepare:pathname Discussed below in &quot;Post-installation Updates&quot;&#160; <br />/dushare:pathname&#160; Discussed below in &quot;Post-installation Updates&quot;     <br />/m:FolderName Instructs Setup to look for installation files in this alternate location first, instead of using the files from the default location.     <br />/makelocalsource Instructs Setup to copy all installation source files to your local hard disk.     <br />/noreboot&#160; Instructs Setup to not restart the computer after the file copy phase of Setup is completed so that you can run another command.     <br />/s:SourcePath&#160; Specifies the source location of the Windows XP files. You can copy files simultaneously from multiple servers, by using the /s:SourcePath option multiple times (up to a maximum of eight) to specify different source servers.     <br />/syspart:DriveLetter Copies Setup startup files to the hard disk and marks the disk as active. This disk can then be installed into another computer. When you start that computer, it automatically starts with the next phase of Setup. You must always use the /tempdrive parameter with the /syspart parameter. You can start Winnt32 with the /syspart option on an x86-based computer running Windows NT 4.0, 2000, or XP.     <br />/tempdrive:DriveLetter&#160; Specifies a drive letter to place temporary files. (note: for a clean installation, Windows XP will also be installed on the specified partition.)     <br />/unattend[num]:[answer_file] Specifies an answer file for unattended installations, discussed in detail below in &quot;unattended installations&quot;    <br />Num is the number of seconds between the time that Setup finishes copying the files and when it restarts your computer.&#160; <br />/unattend Discussed below in &quot;unattended installation&quot;     <br />/udf:id [,UDB_file] Specifies an UDB file for unattended installations    <br />Discussed below in &quot;unattended installations&quot; </p>
<p>Winnt.exe </p>
<p>Performs an installation of Windows XP. If your hardware is compatible with Windows XP, you can run winnt.exe at a Windows 3.x or MS-DOS command prompt. The following table lists and describes the available command-line parameters for the winnt.exe command: </p>
<p>Parameter Purpose    <br />/s:SourcePath Specifies the source location of the Windows XP files. The location must be a full path of the form x:\[Path] or \\server\share[\Path].&#160; <br />/t:TempDrive&#160; Directs Setup to place temporary files on the specified drive and to install Windows XP on that drive. If you do not specify a location, Setup attempts to locate a drive for you.&#160; <br />/u:answer file&#160; Discussed below in &quot;unattended installation&quot;     <br />/udf:ID [,UDB_file]&#160; Discussed below in &quot;unattended installation&quot;     <br />/r:folder&#160; Specifies an optional folder to be installed. The folder remains after Setup finishes.     <br />/rx:folder&#160; Specifies an optional folder to be copied. The folder is deleted after Setup finishes.     <br />/e:command&#160; Specifies a command to be carried out just before the final phase of Setup.     <br />/a&#160; Enables accessibility options.     <br />/? Displays the parameters listed above. </p>
<p>2. Setup Wizard </p>
<p>When the first stage of the installation completed, the computer reboots and the GUI portion, known as the Setup Wizard, will start. This will prompt you for regional settings to customize keyboard, language, and locale settings. Information such as your name and organization, the Computer name, Administrator password and time and date is also entered during this stage. </p>
<p>3. Installing Network components </p>
<p>The next stage is Installing Network components, which includes detecting the network interface card. You must also choose to join a Domain or Workgroup during this stage. Typically the following components are installed:   <br />- Client for Microsoft Networks    <br />- File and Print Sharing for Microsoft Networks    <br />- Qos Packet Scheduler    <br />- TCP/IP protocol suite. </p>
<p>4. Completing the installation </p>
<p>During this final stage Setup copies the remaining files, configures the computer, saves the settings, removes temporary installation files, and restarts the computer</p>
<p><strong>UNATTANTED INSTALLATIONS</strong><a name="unattended"></a></p>
<p>There are several ways to perform an unattended installation of Windows XP. Unattended means Setup will not require any user input during the installation, although in practice this is not always the case. But it allows you to install multiple computers without actually sitting in front of them.</p>
<p><strong>Setup Manager</strong></p>
<p>The Setup Manager (setupmgr.exe) can be used primarily to create or modify answer files. When you start the Setup Manager, a wizard will take you through all the steps involved, similar to going through a regular Setup. Although answer files can be created manually using a simple text editor, the Setup Manager provides a graphical interface allowing you to easily create complex answer files. For example, answer files with additional commands that run other installation and configuration scripts when Setup is finished. Besides creating the default unattend.txt answer files, you can also use the Setup Manager to create answer files for Sysprep and RIS installations. When a regular unattend.txt answer file is created you can also have Setup Manager create a distribution folder with the installation files. Additional files (applications, drivers, etc.) can be installed in the same folder.   <br />The Setupmgr.exe file must be extracted from the DEPLOY.CAB file located in the \Support\Tools folder on the XP installation CD. Before you enter the the information (the answers) you would normally enter during the installation process, you have to select the User Interaction Level. You can choose from 5 different options:</p>
<p>Provide Defaults   <br />During the installation the user will see the answers provided in the answer file as defaults, the user can accept or change them. </p>
<p>Fully Automated   <br />Fully automated installation.</p>
<p>Hide Pages   <br />During the installation the user will see the answers provided in the answer file as defaults. Pages which answers are completely provided by the answer file are hidden, the user cannot accept or change those. </p>
<p>Read Only   <br />During the installation the user will see the answers provided in the answer file as defaults, but cannot change them.</p>
<p>GUI Attended   <br />This automates only the text-based stage of the installation, the user will have to enter the answers starting from the Setup Wizard.</p>
<p>At some point during the wizard, you need to provide the computer name. If you specify multiple names, Setup Manager will also create <em>Uniqueness Database (UDB)</em> files. The computer or user specific values in these .udf files can be used to override the values provided in the answer file.     <br />If you want to perform an unattended installation from the command prompt on Windows 98, ME, NT, 2000, or XP, use Winnt32.exe, otherwise use winnt.exe. For example to perform an unattended installation on a computer named XPclient1, using unattend.txt as the answer file, and overriding some of the answers with XPclient1 specific values in the unnattend.udf file use the following command:    <br />winnt32 /unattend:unattend.txt /udf:XPclient1,unattend.udf    <br />or     <br />winnt /u:unattend.txt /udf:XPclient1,unattend.udf    <br />You can also use the /unattend parameter without specifying an answer file to upgrade Windows 98, ME, NT 4.0, or 2000 in unattended mode and take all user settings from the &#8216;previous&#8217; installation. If you use the /udf parameter and do not specify an UDB_file, Setup will prompt to insert a disk that contains the $Unique$.udb file.     <br />When you want to perform an unattended installation by booting from a CD-ROM, you need to rename the answer file to winnt.sif (default is unnattend.txt) and copy it to a floppy disk. When Setup starts, it looks for the winnt.sif file on the floppy disk and uses it to provide the answer during the unattended installation.     <br />Using answer files in combination with winnt32, winnt, or the CD rom/winnt.sif combination is used for standardized deployment of Windows XP Professional in situations where the target clients have many different hardware configurations. If the target clients all have the same or very similar hardware and configuration, RIS or disk duplexing is usually faster to deploy Windows XP to a large number of clients.    <br />Here&#8217;s a sample part of an answer file:    <br />[Data]    <br />UnattendedInstall=Yes    <br />MSDosInitiated=No    <br />AutoPartition=1    <br />[Unattended]    <br />UnattendMode = FullUnattended    <br />TargetPath = WinXPpro    <br />FileSystem = LeaveAlone    <br />OemPreinstall = No    <br />OemSkipEula = Yes</p>
<p>[GuiUnattended]   <br />TimeZone = &quot;YourTimeZone&quot;    <br />OemSkipWelcome = 1    <br />OemSkipRegional = 1</p>
<p>[UserData]   <br />ComputerName = *    <br />ProductKey = &quot;Your product key&quot;    <br />[SetupMgr]    <br />ComputerName0=XPclient1    <br />ComputerName1=XPclient2    <br />[Display]    <br />BitsPerPel = 16    <br />XResolution = 800    <br />YResolution = 600    <br />VRefresh = 60</p>
<p>[Components]   <br />iis_common = On    <br />iis_inetmgr = Off    <br />iis_www = Off    <br />iis_ftp = Off    <br />iis_doc = Off    <br />Fp_extensions = On    <br />Indexsrv_system = On    <br />Accessopt = On    <br />Calc = On    <br />Charmap = On    <br />Chat = Off    <br />Clipbook = On    <br />Deskpaper = On    <br />Dialer = On</p>
<p>[TapiLocation]   <br />CountryCode = &quot;1&quot;    <br />Dialing = Pulse    <br />AreaCode = &quot;Your telephone area code&quot;    <br />LongDistanceAccess = 9</p>
<p>[Networking]   <br />InstallDefaultComponents=Yes </p>
<p>[Identification]   <br />JoinDomain = TEcorp.net    <br />DomainAdmin = Administrator    <br />DomainAdminPassword = XEkdf7834H</p>
<p>[URL]   <br />Home_Page = http://www.techexams.net    <br />Search_Page = http://www.google.com    <br />Quick_Link_1 = http://www.techexams.net</p>
<p>[Proxy]   <br />HTTP_Proxy_Server = proxysrv12:80    <br />Use_Same_Proxy = 1    <br />[GuiRunOnce]    <br />Command0=c:\task1.bat </p>
<p>Here&#8217;s an example of a simple .udf file, which can be used in combination with the answer file above:   <br />;SetupMgrTag    <br />[UniqueIds]    <br />&#160;&#160;&#160; 1=UserData    <br />&#160;&#160;&#160; 2=UserData    <br />[1:UserData]    <br />&#160;&#160;&#160; ComputerName=xpclient1    <br />[2:UserData]    <br />&#160;&#160;&#160; ComputerName=xpclient2</p>
<p><strong>System Preparation Tool</strong><a name="sysprep"></a></p>
<p>The System Preparation Tool (sysprep.exe) is used to assist in performing a large deployment of Windows XP on clients with identical hardware configurations. This process is fairly simple:   <br />First Windows XP Professional is installed and completely configured on a master disk. Next, an image of the client is created using sysprep.exe (remember that only a single partition can be imaged). This image can be duplicated to other disks using third-party disk duplication software. A duplicate of the master disk is placed in a target machine, and when this computer boots a mini-setup will be performed and a new SID is generated. You can use the Setup Manager Wizard to create a mini-answer file named sysprep.inf. This file must be placed in the Sysprep folder on the root where Windows is installed or saved to a floppy disk, and inserted at the beginning of Mini-Setup. (Click <a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;314460">here</a> for more information about using Sysprep with sysprep.inf.)    <br />The Sysprep.exe file must be extracted from the DEPLOY.CAB file located in the \Support\Tools folder on the XP installation CD and supports the following parameters:</p>
<p><strong>Parameter</strong>    <br /><strong>Purpose</strong></p>
<p>pnp   <br />force Plug and Play enumeration on next restart</p>
<p>quiet   <br />run in Silent mode, with no dialog boxes</p>
<p>nosidgen   <br />do not regenerate security ID on restart (this is useful for creating a backup image of a client)</p>
<p>reboot   <br />automatically restart when the Sysprep.exe tool is finished</p>
<p>mini   <br />Configures Windows XP Professional to use Mini-Setup instead of Windows Welcome. This option has no effect on Windows XP Home Edition, where the first-run experience is always Windows Welcome. This switch also forces SysPrep to recognize the Sysprep.inf file.</p>
<p><strong>Remote Installation Services (RIS)</strong><a name="ris"></a></p>
<p>One of the best additions to Windows introduced in Windows 2000 is RIS. This service allows you to push automate remote installations of Windows 2000 Professional and Windows XP Professional clients.   <br />First Windows XP Professional is installed and configured on a client, including software applications and other settings. Next, an image of the client is created using riprep.exe ( only a single partition can be imaged). The riprep.exe command offers the same parameters as the sysprep.exe tool described earlier. The image is stored on the RIS server. When a target client&#8217;s boot order is set to &quot;boot from network&quot; (in the BIOS) it receives basic IP addressing info and a mini-Setup (Client Installation Wizard) starts. Again the answers to this mini-setup can be provided by a special answer file created with Setup Manager. (Click <a href="http://www.microsoft.com/windows2000/techinfo/reskit/en-us/distrib/dsed_dpl_cmxb.asp">here</a> for more information about using answer files and RIS).    <br />Instead of creating a new preconfigured RIS image, you can also use the default CD-ROM based image. There must be at least one Windows XP CD-ROM based image to allow target clients to request additional installation files if needed.    <br />There are a couple of things you need in a network to be able to install RIS and perform remote installations.    <br />Network in which clients are installed needs:    <br />- a DHCP server     <br />- Active Directory    <br />- a DNS server    <br />Target clients:    <br />Besides enough available disk space for Windows XP and temporary installation files the target clients must have a Network Interface Card equipped with PXE Boot Rom version .99c or greater. If Pre-boot Execution Environment (PXE) is not supported use rbfg.exe (located in the \remoteinstall\admin\i386 folder on the Windows 2000 RIS server) to create a remote boot floppy.     <br />Users:    <br />The user used to perform RIS installations needs the right <em>Create Computer Objects</em> in Active Directory.    <br />Click <a href="http://www.microsoft.com/techNet/prodtechnol/winxppro/reskit/prbc_cai_bowe.asp">here</a> for more detailed information in the chapter RIS in the Windows XP Resource Kit.    <br /><strong>UPGRADING TO WINDOWS XP</strong><a name="upgrade"></a>     <br />Windows 98, ME, NT 4 Workstation, 2000 Professional can be directly upgraded to Windows XP Professional. If you want to upgrade from Windows 95 you need to upgrade to Windows 98 first, and if you want to upgrade from Windows NT 3.x you need to upgrade to Windows NT 4 first.    <br />Run winnt32.exe with the /checkupgrade only parameter to check if the target machine meets the minimum system requirements. You can save the results in a file, upgrade.txt in the system root by default.    <br />There are several ways to address problems with applications that do not run properly after the upgrade:    <br />- Reinstall the applications after the upgrade.    <br />- Use migration dynamic-link libraries (DLLs)    <br />- Run the application in Compatibility Mode by right-clicking the application, selecting Properties, and then clicking the Compatibility tab. </p>
<p><strong>MIGRATING USER ENVIRONMENTS</strong></p>
<p><strong>Files and Settings Transfer Wizard</strong>    <br />This tool allows users who with a new computer to migrate their own files and settings by using a direct cable connection or the network and without the support of an admin. When you run the wizard you&#8217;ll have to choose the transportation method, which can be removable media, a direct serial cable connection or the network. Then you can customize which settings and files are included in the migration. This includes display settings, Internet Explorer and Outlook setting, and regional settings.    <br /><strong>User State Management Tool (USMT)</strong>    <br />The User State Management Tool (USMT) provides the same functionality as the wizard, but on a large scale, targeted at migrating multiple users. USMT gives administrators command line precision in customizing specific settings such as unique modifications to the registry. The User State Migration Tool consists of two executable files, ScanState.exe, LoadState.exe, and four migration rule information files Migapp.inf, Migsys.inf, Miguser.inf, and Sysfiles.inf. These files are located on the Windows XP CD in the \valueadd\msft\usmt\ folder.    <br />A user can run Scanstate.exe on a Windows 95, 98, NT Workstation 4.0, or 2000 Professional computer and it will collect the data and settings based on the information in the migration rule .inf files mentioned above. A local admin can then run Loadstate.exe on the target Windows XP Professional computer to migrate the data and the settings. </p>
<p><strong>POST-INSTALLATION UPDATES</strong>&#160;&#160;&#160; </p>
<p>If you are performing an upgrade to Windows XP Professional on a computer with Internet connectivity, you can have setup uses Dynamic Update to check online for newer versions of the installation files. Instead of using the Internet for each installation, you can also place the updated files on a share in the network. </p>
<p>There are three related parameters for the winnt32.exe command: </p>
<p>/dudisable    <br />Prevents Dynamic Update from running and will disable Dynamic Update even if you use an answer file and specify Dynamic Update options in that file. Setup will only use the original Setup files. </p>
<p>/duprepare:pathname    <br />Prepares an installation share so that it can be used with Dynamic Update files that you downloaded from the Windows Update Web site. This share can then be used for installing Windows XP for multiple clients. </p>
<p>/dushare:pathname    <br />Specifies a share on which you previously downloaded Dynamic Update files (updated files for use with Setup) from the Windows Update Web site, and on which you previously ran /duprepare:pathname. When used on a client, it specifies that the client installation will make use of the updated files on the share specified in pathname. </p>
<p>SERVICE PACKS&#160;&#160;&#160;&#160; </p>
<p>Once in a while Microsoft releases a Service Pack; a combination of all previous updates and hot-fixes and some new ones. A service pack can be installed by using the command:   <br />update.exe </p>
<p>To uninstall a service pack, change to the %systemroot%\$NtservicepackUninstall$\spuninst folder and type: spuninst.exe -u </p>
<p><strong>ACTIVATING WINDOWS XP</strong>&#160;&#160;&#160;&#160; </p>
<p>Windows XP introduces a new method to prevent piracy: if you don&#8217;t activate your copy of Windows online within 30 days you don&#8217;t you won&#8217;t be able to use it any longer. An Installation ID is created based on a hardware ID (based on several hardware components) and a Product ID (based on the Product Key) and is send to Microsoft. Replacing several hardware devices might require re-activation. MS does not know the actual hardware configuration, the information is encrypted using a on-way hash, which means it can&#8217;t be decrypted.   <br />To activate Windows from the command-prompt type: C:\WINDOWS\system32\oobe&gt;msoobe /a </p>
<p>To activate Windows XP unattended installations, add the following information to the Unattend.txt or Winnt.sif answer file:    <br />In the [Unattended] section: AutoActivate = Yes    <br />In the [UserData] section: ProductID = yourProductID </p>
<p>Windows Product Activation uses ports 80 &#8211; HTTP and 443 &#8211; HTTPS. </p>
<p><strong>TROUBLESHOOTING INSTALLATIONS</strong>&#160;&#160;&#160;&#160; </p>
<p>Installations of Windows XP Professional can fail partly or completely for many different reasons. Some common causes and possible solutions are listed in the following table: </p>
<p>Media errors Check/clean the CD-ROM drive and the installation CD.    <br />Dependency service fails to start This is almost always network related.     <br />SCSI disk not detected Install the drivers by pressing F6 during the text mode portion of setup. </p>
<p>Windows Setup creates several log files during the installation listed in the following table: </p>
<p>SETUPACT.LOG Keeps a record of all actions performed during setup.    <br />SETUPERR.LOG Keeps a record of errors that occurred during setup and their severity. The information in this file will be displayed at the end of setup if any errors occurred.     <br />%windir%\COMSETUP.LOG COM+ components     <br />%windir%\SETUPAPI.LOG Keeps a record of each processed line from an .inf file and related errors.&#160; <br />%windir%\debug\NETSETUP.LOG Logs the process of joining a domain or workgroup. </p>
<p>&#160;</p>
<p>This is from <a title="http://www.techexams.net/technotes/xp/installing.shtml" href="http://www.techexams.net/technotes/xp/installing.shtml">http://www.techexams.net/technotes/xp/installing.shtml</a></p>
<div class="lightsocial_container">
<a href="http://digg.com/submit?url=http%3A%2F%2Fwww.microsoftkit.com%2Ffree-70-270-xp-exam-technotes%2F&amp;title=Free+70-270+Xp+Exam+TechNotes"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;
<a href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.microsoftkit.com%2Ffree-70-270-xp-exam-technotes%2F&amp;title=Free+70-270+Xp+Exam+TechNotes"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.microsoftkit.com%2Ffree-70-270-xp-exam-technotes%2F&amp;title=Free+70-270+Xp+Exam+TechNotes"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;
<a href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.microsoftkit.com%2Ffree-70-270-xp-exam-technotes%2F&amp;headline=Free+70-270+Xp+Exam+TechNotes"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;
<a href="http://www.dzone.com/links/add.html?title=Free+70-270+Xp+Exam+TechNotes&amp;url=http%3A%2F%2Fwww.microsoftkit.com%2Ffree-70-270-xp-exam-technotes%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;
<a href="http://www.facebook.com/sharer.php?t=Free+70-270+Xp+Exam+TechNotes&amp;u=http%3A%2F%2Fwww.microsoftkit.com%2Ffree-70-270-xp-exam-technotes%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;
<a href="http://delicious.com/save?title=Free+70-270+Xp+Exam+TechNotes&amp;url=http%3A%2F%2Fwww.microsoftkit.com%2Ffree-70-270-xp-exam-technotes%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;
<a href="http://www.dotnetkicks.com/kick/?title=Free+70-270+Xp+Exam+TechNotes&amp;url=http%3A%2F%2Fwww.microsoftkit.com%2Ffree-70-270-xp-exam-technotes%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;
<a href="http://dotnetshoutout.com/Submit?title=Free+70-270+Xp+Exam+TechNotes&amp;url=http%3A%2F%2Fwww.microsoftkit.com%2Ffree-70-270-xp-exam-technotes%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;
<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.microsoftkit.com%2Ffree-70-270-xp-exam-technotes%2F&amp;title=Free+70-270+Xp+Exam+TechNotes&amp;summary=&amp;source="><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;
<a href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.microsoftkit.com%2Ffree-70-270-xp-exam-technotes%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;
<a href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.microsoftkit.com%2Ffree-70-270-xp-exam-technotes%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.microsoftkit.com/free-70-270-xp-exam-technotes/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Free Server 2003 exam 70-290 resource</title>
		<link>http://www.microsoftkit.com/free-server-2003-exam-70-290-resource/</link>
		<comments>http://www.microsoftkit.com/free-server-2003-exam-70-290-resource/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 09:39:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Free resources]]></category>
		<category><![CDATA[MCSE /MCSA on server 2003]]></category>
		<category><![CDATA[Free 70-290 resource]]></category>
		<category><![CDATA[MCSE]]></category>
		<category><![CDATA[NTFS Permissions]]></category>
		<category><![CDATA[permission inheritance]]></category>
		<category><![CDATA[Server 2003]]></category>
		<category><![CDATA[Shared Folder]]></category>

		<guid isPermaLink="false">http://www.microsoftkit.com/free-server-2003-exam-70-290-resource/</guid>
		<description><![CDATA[&#160;
Several weeks ago,We shared 70-290 free resource :Managing Groups.Today ,we continue to introduce the main topic of MCSE 70-290&#160; which&#160; Covers configuring, troubleshooting, and combining shared folders and NTFS permissions, effective permissions, ownership, and permission inheritance.hope them useful for Server 2003 candidates .
 
&#160;
By default, Windows 2003 assigns Full Control permissions to the Administrators group [...]]]></description>
			<content:encoded><![CDATA[<p>&#160;</p>
<p>Several weeks ago,We shared <a href="http://www.microsoftkit.com/70-290-free-technotes-managing-groups/"><u><font color="#0080c0">70-290 free resource :Managing Groups</font></u></a>.Today ,we continue to introduce the main topic of MCSE 70-290&#160; which&#160; Covers configuring, troubleshooting, and combining shared folders and NTFS permissions, effective permissions, ownership, and permission inheritance.hope them useful for Server 2003 candidates .</p>
<p> <span id="more-900"></span>
<p>&#160;</p>
<p>By default, Windows 2003 assigns Full Control permissions to the Administrators group and the System group to any NTFS volume, which are also inherited by the folders and files in it. The Users group is assigned Read &amp; Execute, List Folder Contents, and Read permissions. Users or groups who need to write and or modify files and folders will need additional permissions. </p>
<p>The above list describes what the NTFS permissions ‘allow’, but you can also explicitly deny the permissions to users. Denying permissions is usually only done to make an exception. For example, you could allow Modify permission for the Sales group and deny the same permission for certain user account in the Sales group for whom you want to make an exception. </p>
<p>Allow permissions are cumulative, which basically means the least restrictive permission becomes the effective permission. For example, John is a member of the Sales group and the Management group. Sales has been allowed Modify permissions for the folder SalesReports. Management has been allowed Read permissions for the same folder. Since John is a member of both groups, his effective permission in this case is Modify. The following table lists some more examples. Note that the listed permissions in these examples are ‘allowed’.</p>
<p><a href="http://www.microsoftkit.com/wp-content/uploads/2009/12/5ea8ae9897ba437eac37302ed3637ad7.png"><img title="{5EA8AE98-97BA-437E-AC37-302ED3637AD7}" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="73" alt="{5EA8AE98-97BA-437E-AC37-302ED3637AD7}" src="http://www.microsoftkit.com/wp-content/uploads/2009/12/5ea8ae9897ba437eac37302ed3637ad7-thumb.png" width="244" border="0" /></a> </p>
<p><a href="about:blank"></a></p>
</p>
<p><strong>Configuring NTFS Permissions     <br /></strong>There are several different ways to assign NTFS permissions but the most common way is to use Windows Explorer or My Computer, right-click a file, folder, or volume, click Properties and then the click on the Security tab. Under Group or user names on the Security tab, select or add a group or user. Then at the bottom allow or deny one of the available permissions.</p>
<p><a href="http://www.microsoftkit.com/wp-content/uploads/2009/12/permissions-clip-image001.jpg"><img title="permissions_clip_image001" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="244" alt="permissions_clip_image001" src="http://www.microsoftkit.com/wp-content/uploads/2009/12/permissions-clip-image001-thumb.jpg" width="193" border="0" /></a> </p>
<p>By default, when you add a user or group to the list in the dialog show above, this user or group will have Read &amp; Execute, List Folder Contents, and Read permissions. </p>
<p>File permissions override folder permissions. For example, if user David has been allowed Read permissions for the folder and Modify permission for a file work.doc, his effective permissions for the work.doc file is Modify. The exception to this rule is the permission Full Control on folders. Groups or users that have Full Control for a folder can delete files and subfolders in it regardless of the permissions set on those files and subfolders. </p>
<p>In addition to the permissions listed in the tables above, you can also assign special permissions by clicking the Advanced button on the Security tab to open the Advanced Security Settings dialog with the Permissions tab opened as displayed in the following screenshot. Here you can add, remove, and edit the permissions for users on a more granular level.</p>
<p><a href="http://www.microsoftkit.com/wp-content/uploads/2009/12/permissions-clip-image002.jpg"><img title="permissions_clip_image002" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="208" alt="permissions_clip_image002" src="http://www.microsoftkit.com/wp-content/uploads/2009/12/permissions-clip-image002-thumb.jpg" width="244" border="0" /></a> </p>
<p><strong>Permission Inheritance     <br /></strong>Besides explicitly assigned permissions on a file or folder, it may inherit permissions from its parent folder (up to the root folder, which is the volume itself). By default, permissions set on a folder are automatically inherited by all files and subfolders in it. This simplifies administration but is not always desired. </p>
<p>In the image above, you can see the following two options: </p>
<p>Allow inheritable permissions from the parent to propagate to this object and all child objects. Include these with entries explicitly defined here.   <br />When this option is cleared, the file or folder will not inherit permissions from the parent folder. </p>
<p>Replace permission entries on all child objects with entries shown here that apply to child objects.   <br />This option will actually reset the permissions on child objects (files and subfolders) to make sure they inherit the permissions from this folder and those permissions are not overridden by permissions explicitly assigned on child objects. </p>
<p>In some situation you may want to inherit most of the permissions from the parent, but make an exception for one or more users/groups. In that case you should set the opposite permission of the one that is inherited. For example, if James inherits Modify permissions from a parent folder through group permissions, you could deny Modify permissions for James on the child object to prevent inheritance for James only and still allow Modify access to the rest of the group. </p>
<p><strong>Effective Permissions</strong>    <br />On the Effective Permissions tab of the Advanced Security Settings for a file or folder you can select a user or group and see the effective permissions. These are the results of the permissions directly assigned to the file or folder and permission inherited from parent folders.</p>
<p><a href="http://www.microsoftkit.com/wp-content/uploads/2009/12/permissions-clip-image003.jpg"><img title="permissions_clip_image003" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="208" alt="permissions_clip_image003" src="http://www.microsoftkit.com/wp-content/uploads/2009/12/permissions-clip-image003-thumb.jpg" width="244" border="0" /></a> </p>
<p><strong>Change ownership of files and folders     <br /></strong>When a user creates a file or folder Windows 2003 automatically assigns Full Control permissions to the creator/owner. This allows the user to assign permissions to other users for the files he or she creates. This means that besides the ACL, files and folders need to include information about who owns the file. By default, this is the account who creates the file or folder or the Administrators group. For several different reasons, the ownership of a file or folder may need to change. For example, if a user leaves the company, the ownership of his or her files and folders may need to be transferred to other users. </p>
<p>You can take ownership of a file by replacing the owner with your own account or with one of the groups you are a member of. You must have Full Control or the special permissions Take Ownership to be able to take ownership of a file or folder. Users who has the Restore files and directories privilege can assign ownership to any user or group.</p>
<p><a href="http://www.microsoftkit.com/wp-content/uploads/2009/12/permissions-clip-image004.jpg"><img title="permissions_clip_image004" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="230" alt="permissions_clip_image004" src="http://www.microsoftkit.com/wp-content/uploads/2009/12/permissions-clip-image004-thumb.jpg" width="244" border="0" /></a> </p>
<p><strong>Moving and copying protected files     <br /></strong>Moving and copying NTFS protected files is similar to moving and copying compressed file. When you copy a protected file to a folder on the same, or a different volume, it inherits the permissions of the target folder. When you move a protected file to a different NTFS volume, the file inherits the permissions of the target folder. A move between volumes is actually considered a copy; the source file is deleted after it is copied to the target volume. </p>
<p>However, when you move a protected file to a different location on the same volume, the file retains its permission. When data is moved within the same volume, the data is not actually relocated, the pointer to it is merely changed and that is why it retains the ACL. In all cases the target volume needs to be a NTFS volume as well because as mentioned earlier, FAT, FAT32 and other file systems do not support NTFS file and folder permissions. </p>
<p><strong>Shared Folder Access     <br /></strong>A shared folder (commonly referred to as a share) is a folder or entire volume that is published on the network and can be remotely accessed by other users. The shared folder can be used as if it were a local folder; to store data, and even to run applications from the share over the network. Members of the built-in group Administrators, Server Operators and Power Users can share folders. If the shared folder is located on an NTFS volume, users need at least the NTFS permission Read for the local folder to be able to access it, regardless of the share permissions assigned to it. Following are some of the common methods for creating shared folders: </p>
<p>1. Using the Shared Folders snap-in, which is included by default in the Computer Management console. In the console tree, click Shares (below ComputerManagement|System Tools|Shared Folders). On the Action menu, click New File Share. You will be prompted to select the folder or drive, enter the share name and description, and set permissions. </p>
<p>2. Use the net share command at the prompt: net share sharename=drive:path </p>
<p>3. In Windows Explorer/My Computer right-click the folder or drive, click Properties and then the Sharing tab. Enable the option Share this folder, enter a name for the share, a description and configure other settings as depicted in the following image. </p>
<p><a href="http://www.microsoftkit.com/wp-content/uploads/2009/12/permissions-clip-image005.jpg"><img title="permissions_clip_image005" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="244" alt="permissions_clip_image005" src="http://www.microsoftkit.com/wp-content/uploads/2009/12/permissions-clip-image005-thumb.jpg" width="193" border="0" /></a>&#160;</p>
<p>Users can connect to a share in several ways, for example: </p>
<p>1. Use My Network Places/Windows Explorer a user can browse to the share or use the Add Network Place wizard to create a shortcut.   <br />2. Use a direct UNC path, for example: //FileServer12/ShareX    <br />3. Use My Network Places/Windows Explorer or the net use command to map a drive letter to a share. </p>
<p>By default, Windows 2003 creates the following hidden administrative shares depending on the configuration of the server: </p>
<p>Admin$    <br /> This is the system root, usually C:\Windows, Administrators are assigned Full Control share permissions.     <br />C$, D$, E$, etc.     <br /> Each volume on a hard disk is shared by default and provide easy access of the entire volume to Administrators. Administrators are assigned Full Control share permissions.     <br />IPC$     <br /> A system share that allows named pipes connections for communication between applications and other computers.     <br />Print$     <br /> This points to the %systemroot%\System32\Spool\Drivers folder, and is created when printers are shared to allow clients to automatically download the printer drivers.     <br />Fax$     <br /> A system share used by fax clients. </p>
<p>You can create hidden shared folders yourself by adding a $ sign to the end of the share&#8217;s name. Hidden shares do not show up when users browse the network through My Networks Places for example. To access these hidden shares, users need to enter the name including the $ sign. NETLOGON and SYSVOL are two other administrative shares that exist on domain controllers, but they are not hidden. </p>
<p>Shared Folder Permissions   <br />There are three different share permissions that can be assigned to groups and individual user accounts. These permissions apply only when connecting to the share over the network. The share permissions do not apply to users who log on to the local machine. The following share three permissions are available for shared folders: </p>
<p>READ   <br />Allows user to read files and list the contents of folders and volumes. This allows executing applications as well. The default for new shared folders is Read permissions for Everyone. </p>
<p>CHANGE   <br />Allows the same as Read and allows the user to modify, create and delete files and subfolders. </p>
<p>FULL CONTROL   <br />Allows the same as Change, but additionally allows the user to modify permissions. </p>
<p>Whether the permissions actually allow the desired access depends on the NTFS permission of the shared folder and the file subfolders in it. For example, if a user has the share permission Change for a shared folder, that user will not be able to actually change files for which the user has only Read NTFS permissions. We will go over some more examples in the following section “Combining Shared Folders with NTFS Permissions”. However, you can create share folders located on a FAT or FAT32 disk and assign share permissions to provide protected access for users that connect to the shared folder. Remember that share permissions are only used when a user connects to the shared folder from a remote computer. So if a user logs on locally to a computer with a FAT/FAT32 drive, the share permissions are ignored. </p>
<p>To configure share permissions in Windows Explorer/My Computer right-click the folder or drive, and then click Properties and then the Permissions button on the Sharing tab. Under Group or user names: select or add a group or user, and allow or deny one of the permissions listed in the table above .</p>
<p><a href="http://www.microsoftkit.com/wp-content/uploads/2009/12/permissions-clip-image006.jpg"><img title="permissions_clip_image006" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="244" alt="permissions_clip_image006" src="http://www.microsoftkit.com/wp-content/uploads/2009/12/permissions-clip-image006-thumb.jpg" width="203" border="0" /></a> </p>
<p>When you set permissions, you can either Allow or Deny them to a user or group. Typically you would allow a group share permissions and deny the same permissions to certain members of that group. The default permissions for new shared folders is Read to Everyone. Whether Everyone will actually be able to read depends on the NTFS permissions. </p>
<p>Combining Shared Folders with NTFS Permissions   <br />When you combine NTFS permissions and share permissions the most restrictive effective permission counts. For example, if you create a folder with files and assign them Full Control NTFS permissions to Everyone and share the same folder and assign the share permission Read to Everyone, users connecting through the network will have Read permissions. </p>
<p>Probably the most common mistake made when combining share permissions and NTFS permissions is to add them all to a single pile and then take the most restrictive. Instead, you need to determine the effective share permissions amd the effective NTFS permission before taking the most restrictive. </p>
<p>So to determine what the permissions are for a user connecting through a shared folder to a local folder protected with NTFS permissions you need to do the following: </p>
<p>1. Determine the ‘effective’ NTFS permissions   <br />2. Determine the ‘effective’ share permissions     <br />3. Take the most restrictive of these two. </p>
<p>Following is a practice questions that raised discussion in our forums several times: </p>
<p>X. You share a folder on your computer and you assigned the share permission Change to Everyone. John, a user from the Sales department, has been granted Full Control NTFS permission to the folder. John is also a member of the Sales group, which has been assigned Read NTFS permissions. What are John&#8217;s effective permissions when connecting to the shared folder? </p>
<p>a. Read    <br />b. Read &amp; Execute     <br />c. Change     <br />d. Full Control </p>
<p>The correct answer is c. Change, but many people seem to be inclined to choose answer a. Read instead because Read is the most restrictive permission. However, it is the most restrictive effective permissions that counts. </p>
<p>1. Determine the effective NTFS permissions:   <br />As mentioned earlier in the NTFS permissions section, NTFS permissions are cumulative. This means the least restrictive applies when considering only NTFS permissions. In this case, this means John has Read NTFS permissions for the folder through the Sales group, and Full Control NTFS permission through his own account, hence his effective NTFS permissions is Full Control. </p>
<p>2. Determine the effective share permissions:   <br />The question only mentions that the share permissions are Change to Everyone, so no other share permissions have been explicitly assigned for the Sales group or John and hence the effective share permission is Change. </p>
<p>3. Take the most restrictive of these two:   <br />The most restrictive of the previous two effective permissions is Change. Although John has Full Control NTFS permission for the folder, he is accessing the folder through a shared folder for which he only has Change permissions. </p>
<p>Troubleshoot access to files and shared folders   <br />Problems accessing shared folders are often caused by underlying network connectivity problems. Before you scratch yourself a bold spot trying to find an incorrectly configured ACL or Shared Folder, make sure you check basic network connectivity, ping the file server by name, check if the user is properly logged on to the domain, etc. </p>
<p>Probably the most common cause of problems with accessing files and shared folders is an incorrect configuration, so when things are not working as expected you should verify the configuration. A user that is not able to access a file or folder maybe a member of a group who was recently denied certain permissions. Configuration changes of permissions assigned to a parent folder my also cause problems through inheritance. </p>
<p>The Effective Permission tool on the Advanced Security Settings dialog provides an easy method to determine the NTFS permissions, but it does not include share permissions. I n large environments with many users and groups, it can be hard to determine the effective share permissions so it is important to maintain a structured user and group design and folder hierarchy. The following link points to document with Best practices for Shared Folders. </p>
<p>The Shared Folders snap-in, included by default in the System Tools of the Computer Management console, provides an overview of the Shares configured on the local computer, the active Sessions, and the currently Open Files. These can provide valuable information when troubleshooting access to shared folders. </p>
<p><a href="http://www.microsoftkit.com/wp-content/uploads/2009/12/permissions-clip-image007.jpg"><img title="permissions_clip_image007" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="120" alt="permissions_clip_image007" src="http://www.microsoftkit.com/wp-content/uploads/2009/12/permissions-clip-image007-thumb.jpg" width="203" border="0" /></a> </p>
<p>&#160;</p>
<p>This is copied from <a title="http://www.techexams.net/technotes/70290/permissions.shtml" href="http://www.techexams.net/technotes/70290/permissions.shtml">http://www.techexams.net/technotes/70290/permissions.shtml</a></p>
<div class="lightsocial_container">
<a href="http://digg.com/submit?url=http%3A%2F%2Fwww.microsoftkit.com%2Ffree-server-2003-exam-70-290-resource%2F&amp;title=Free+Server+2003+exam+70-290+resource"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;
<a href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.microsoftkit.com%2Ffree-server-2003-exam-70-290-resource%2F&amp;title=Free+Server+2003+exam+70-290+resource"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.microsoftkit.com%2Ffree-server-2003-exam-70-290-resource%2F&amp;title=Free+Server+2003+exam+70-290+resource"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;
<a href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.microsoftkit.com%2Ffree-server-2003-exam-70-290-resource%2F&amp;headline=Free+Server+2003+exam+70-290+resource"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;
<a href="http://www.dzone.com/links/add.html?title=Free+Server+2003+exam+70-290+resource&amp;url=http%3A%2F%2Fwww.microsoftkit.com%2Ffree-server-2003-exam-70-290-resource%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;
<a href="http://www.facebook.com/sharer.php?t=Free+Server+2003+exam+70-290+resource&amp;u=http%3A%2F%2Fwww.microsoftkit.com%2Ffree-server-2003-exam-70-290-resource%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;
<a href="http://delicious.com/save?title=Free+Server+2003+exam+70-290+resource&amp;url=http%3A%2F%2Fwww.microsoftkit.com%2Ffree-server-2003-exam-70-290-resource%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;
<a href="http://www.dotnetkicks.com/kick/?title=Free+Server+2003+exam+70-290+resource&amp;url=http%3A%2F%2Fwww.microsoftkit.com%2Ffree-server-2003-exam-70-290-resource%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;
<a href="http://dotnetshoutout.com/Submit?title=Free+Server+2003+exam+70-290+resource&amp;url=http%3A%2F%2Fwww.microsoftkit.com%2Ffree-server-2003-exam-70-290-resource%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;
<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.microsoftkit.com%2Ffree-server-2003-exam-70-290-resource%2F&amp;title=Free+Server+2003+exam+70-290+resource&amp;summary=&amp;source="><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;
<a href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.microsoftkit.com%2Ffree-server-2003-exam-70-290-resource%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;
<a href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.microsoftkit.com%2Ffree-server-2003-exam-70-290-resource%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.microsoftkit.com/free-server-2003-exam-70-290-resource/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>70-290 Free Technotes: Managing Groups</title>
		<link>http://www.microsoftkit.com/70-290-free-technotes-managing-groups/</link>
		<comments>http://www.microsoftkit.com/70-290-free-technotes-managing-groups/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 03:20:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Free resources]]></category>
		<category><![CDATA[MCSE /MCSA on server 2003]]></category>
		<category><![CDATA[70-290 objectives]]></category>
		<category><![CDATA[IIS_WPG]]></category>
		<category><![CDATA[manage groups]]></category>
		<category><![CDATA[MCSE 2003]]></category>
		<category><![CDATA[Windows 2003 Active Directory]]></category>

		<guid isPermaLink="false">http://www.microsoftkit.com/70-290-free-technotes-managing-groups/</guid>
		<description><![CDATA[Several weeks ago,We shared Davis&#8217;s experience on MCSE 2003 70-290 and 7 tips on the Study guide for 70-290 .Both of the articles just talked about how to prepare 70-290 and some common questions related with MCSA 2003 70-290.To help the candidates better pass 70-290 exams ,here ,we&#8217;ll share study notes from those who have [...]]]></description>
			<content:encoded><![CDATA[<p>Several weeks ago,We shared <a href="http://www.microsoftkit.com/my-experience-on-mcsa-mcse-70-290/"><span style="text-decoration: underline;"><span style="color: #ff0000;">Davis&#8217;s experience on MCSE 2003 70-290</span></span></a> and <a href="http://www.microsoftkit.com/7-tips-on-the-study-guide-mcse-70-290-mcsa/"><span style="color: #ff0000;"><span style="text-decoration: underline;">7 tips on the Study guide for 70-290</span></span></a> .Both of the articles just talked about how to prepare 70-290 and some common questions related with MCSA 2003 70-290.To help the candidates better pass 70-290 exams ,here ,we&#8217;ll share study notes from those who have passed 70-290 to make sure more and more people can get MCSA 2003 with high scores 。<br />
all of the notes are related to main topic area ,in my opinon ,except the technet documentation ,those notes are best free materials for us to prepare MCSA 70-290.<br />
Get down to business .In the microsoft learning page ,we can find one of the 70-290 objectives is Managing Users, Computers, and Groups:create and manage groups.So,here we will talk about how to manage groups.<span id="more-835"></span></p>
<p>GROUPS<br />
The main purpose of a group is to simplify administration by allowing permissions to be assigned to a collection of users instead of individual users. A group can contain user accounts, computer accounts, or contacts, as its members. In addition to the previous, a group can also contain other groups, which is referred to as group nesting. Which items a group can contain and what they can be used for, depends on the group type, the group scope and the domain functional level.</p>
<p>Group Types<br />
Windows 2003 Active Directory supports the following two group types:<br />
• Security Groups – Used for assigning permissions for directory objects and resources such as shared folders and printers. Security groups are also used for assigning rights to users, for example by using Group Policies.<br />
• Distribution Groups – Used for creating e-mail distribution lists (ie. for MS Exchange server). It allows a user to send e-mail to all the members by using a single address.<br />
You can change the group type from security to distribution, or vice versa, if the domain functional level is set to Windows 2000 native or Windows 2003. Group types cannot be changed if the domain is running in Windows 2000 mixed mode.</p>
<p>Group Scopes<br />
A group scope defines from which domain from which members can be added and in which domain, tree, of forest, rights and permissions can be assigned to a group. When you create a new group, it will be a security group with global scope by default. You can modify the group scope if the domain functional level is set to Windows 2000 native or Windows Server 2003. Changing a group scope in Windows 2000 mixed mode domains is not possible.</p>
<p>Windows 2003 Active Directory supports the following three group scopes:<br />
• Domain Local – Used for assigning permissions within the local domain only. A domain local group can contain user accounts and global and universal groups with from any domain, and other domain local groups from the same domain. A domain local group can be changed to a universal group only if it does not have other domain local groups as its members.<br />
• Global – Used for assigning permissions throughout the entire forest. A global group can only contain user accounts and global groups from the same domain the global group is in. If the domain is running in Windows 2000 Mixed mode, you can add only user accounts to a global group. A global group can be changed to a universal group if it is not a member of another global group.<br />
• Universal – Used for assigning permissions throughout the entire forest. A universal group can contain user accounts, computer accounts, and global and universal groups from any domain in the forest. Security type universal groups can be created only when the domain functional level is set to Windows 2000 native or Windows Server 2003. Opposite to domain local and global groups, universal groups are replicated to every global catalog in the entire forest. A universal group can be changed to a domain local group at any time. A universal group can be changed to a global group only if it does not have other universal groups as its members.<br />
The preferred method to use these group scopes is explained in the following example:<br />
When you assign permissions to all the users in the Sales department, for a shared resource, i.e. Printer1, you should create a domain local group for the sales department, i.e. SalesPrinters, and assign it permissions for Printer1. Then you should group the users into a global group, i.e. Sales, and add the global group to the domain local group. A universal group is particularly useful when the group needs to contain members from multiple domains. Universal groups should be members of domain local groups, and have global groups as their members.<br />
Local vs. Active Directory Groups<br />
The group types and scopes outlined above are pertinent to Windows 2003 servers that are members or domain controllers in an Active Directory domain. They are stored in the Active Directory on domain controllers. However, groups also exist on a local machine level, even if ADS is not in use. You can create local groups on the local computer using the Local Users and Group MMC snap-in and the can be used for assigning permissions on that computer only.<br />
Default Groups<br />
Windows 2003 creates default groups in the Builtin container and the Users container. The following lists show the groups created in a Windows 2003 domain by default (this may vary per configuration and on the installed Windows components). The first list shows the groups in the Builtin container. These groups are all domain local groups and cannot be moved to another container or OU.<br />
• Account Operators &#8211; Members of this group can administer domain user and group accounts, log on locally, and can shutdown domain controllers. Account Operators cannot modify the Administrators or Domain Admins groups and accounts.<br />
• Administrators &#8211; Members of this group have full access to the domain or computer. By default, this group contains the Domain Admins and Enterprise Admins groups and the Administrator user account.<br />
• Backup Operators &#8211; Members of this group can back up or restore files without being limited by file permissions. Back up Operators can also log on locally and shutdown domain systems.<br />
• Guests – Members of this group have the same permissions and right as the Users group by default, The Guest user account is disabled by default. This Guests group contains the Domain Guests group as a member.<br />
• Incoming Forest Trust Builders -Members of this group can create incoming, one-way trust relationships to this forest. This group appears only in the root domain of the forest.<br />
• Network Configuration Operators &#8211; Members of this group can change the TCP/IP settings on domain controllers in the domain.<br />
• Performance Monitor Users &#8211; Members of this group can monitor performance counters on domain controllers in the domain.<br />
• Performance Log Users &#8211; Members of this group can manage performance counters, logs and alerts on domain controllers in the domain.<br />
• Pre-Windows 2000 Compatible Access &#8211; Members of this group have read access to all users and groups in the domain. This group provides backward compatibility for computers running Windows version pre-Windows 2000, such as Windows NT 4. The Everyone group is a member of this group by default.<br />
• Print Operators &#8211; Members of this group have the appropriate rights to administer printers connected to domain controllers and shared printer objects in the Active Directory. Print Operators can also log on locally and shutdown domain systems.<br />
• Remote Desktop Users &#8211; Members in this group are granted the right to logon remotely using a terminal session.<br />
• Replicator – A system group account used for file replication in a domain. This group has no members and you should not add them either.<br />
• Server Operators &#8211; Members of this group can administer shared resources on domain servers, start and stop certain services, and format hard disks. Additionally, members of this group have the same rights Backup Operators have.<br />
• Users – Members of this group have sufficient permissions and rights to run certified Windows applications, but cannot run most legacy applications. This prevents regular users from making system-wide changes.<br />
The following default groups reside in the Users container in the Active Directory. The Users container contains domain local, global, and universal scope default groups. These groups can be moved to another OU if desired.<br />
• Cert Publishers &#8211; Members of this group can publish digital certificates for users and computers.<br />
• DnsAdmins &#8211; Members of this group have permissions to administer DNS.<br />
• DnsUpdateProxy &#8211; Members of this group can act as a DNS proxy for clients. A DHCP server that handles dynamic updates for DCHP clients should be a member of this group.<br />
• Domain Admins &#8211; Members of this group have full control of the domain. This group is a member of the Administrators group on all domain members including domain controller. The Administrator user account is a member of this group by default.<br />
• Domain Computers &#8211; This group contains all the computer accounts of the client and servers joined to the domain.<br />
• Domain Controllers &#8211; This group contains all domain controllers in the domain.<br />
• Domain Guests &#8211; This group contains all domain guests.<br />
• Domain Users &#8211; This group contains all domain users. When you create a new user account in the domain, it will automatically become a member of the Domain Users group.<br />
• Enterprise Admins &#8211; Members of this group have full control of all domains in the forest. This group is a member of the Administrators group on all domain controllers in the forest. The Administrator user account is a member of this group by default.<br />
• Group Policy Creator Owners &#8211; Members of this group can modify Group Policy settings in the domain. The Administrator user account is a member of this group by default.<br />
• IIS_WPG – A system group account used by Internet Information Services (IIS) 6.0.<br />
• RAS and IAS Servers &#8211; Servers in this group have access to the remote access properties of users. This group is used for IAS servers that perform authentication for a collection of RRAS servers.<br />
• Schema Admins &#8211; Members of this group can modify the Active Directory schema. The Administrator user account is a member of this group by default.<br />
The following special identities can also be considered groups as they allow you to assign permissions to a dynamic group of users:<br />
• Everyone – Includes everyone with a user account.<br />
• Anonymous Logon – Includes everyone without a user account.<br />
• Network &#8211; Includes users that are currently logged on to a computer over the network. This is the opposite of the Interactive group.<br />
• Interactive – Includes users that are currently logged on to the local computer. This is the opposite of the Network group.<br />
Managing Groups<br />
Groups are created by using the Active Directory Users and Computers MMC snap-in. To create a new group, right-click the domain or OU in which you want to create the user, select New, and then click Group. The New Object – Group dialog, displayed below, will open. You will need to provide a name and you can choose the group scope and group type.</p>
<p><a href="http://www.microsoftkit.com/wp-content/uploads/2009/12/w2k3-newgroup.gif"></a><img class="alignnone size-full wp-image-840" title="w2k3_newgroup" src="http://www.microsoftkit.com/wp-content/uploads/2009/12/w2k3_newgroup.gif" alt="w2k3_newgroup" width="441" height="371" /> </p>
<p>When you open the properties sheet of an existing group, you can associate a description and an e-mail address with the group and change the scope and type on the General tab. The Members tab of the group’s properties allows you to add members to this group, and the Member Of tab allows you to join this group to other groups. On the Managed By tab, you can specify a person that is responsible for this group, and specify whether this person should be able to add and remove members to and from this group.</p>
<p><a href="http://www.microsoftkit.com/wp-content/uploads/2009/12/w2k3-group-properties.gif"></a><img class="alignnone size-full wp-image-839" title="w2k3_group_properties" src="http://www.microsoftkit.com/wp-content/uploads/2009/12/w2k3_group_properties.gif" alt="w2k3_group_properties" width="404" height="448" /> </p>
<p>You can move a group to another container, from the Users container to a departmental OU for example, by right-clicking the group and selecting Move from the context menu. With the exception of universal groups, groups can be moved within a domain only. When you move a universal group from one domain to another, you will have to reassign permissions and rights as they will be lost in the process. The member settings of the universal group will be retained.<br />
Find domain groups in which a user is a member<br />
On a large Active Directory with many group it can be hard to keep track of which groups a user belongs to. The Member Of tab of a user’s properties, displays a list of groups the user is a member of. It does not show groups that reside in trusted domains but the user is a member of. For a more complete list of groups a user belongs too, you can use the Dsget.exe command line utility. The syntax for displaying group membership is:<br />
dsget user UserDN -memberof -expand</p>
<p>The UserDN parameter is the user’s distinguished name, for example:<br />
dsget user &#8220;CN=Johan Hiemstra,CN=users,dc=testdomain,dc=techexams,dc=corp&#8221; -memberof -expand</p>
<p>Without the -expand option, only the groups the user is joined to directly are displayed. With this option, each group is expanded to determine membership through nested groups. For example, when a user is a member of the Domain Users default group, it is also a member of the Users built-in group, because the Domain Users group is a member of the Users group.<br />
Click here for more information about the dsget command.</p>
<p>Automated Group Management<br />
Instead of creating and modifying groups manually, you can also automate group management using command-line utilities. Csvde.exe is one of the tools that can be used to perform batch changes to the Active Directory. It can be used to import and export data from and to a file in comma separated value (CSV) format. Ldifde.exe is a more advanced tool that allows you to create, modify, and delete active directory objects. You can use Ldifde to extend the schema, and export and import Active Directory user and group data to or from other directories.</p>
<p>This is from <a href="http://www.techexams.net/technotes/70290/man_groups.shtml">http://www.techexams.net/technotes/70290/man_groups.shtml</a>
<div class="lightsocial_container">
<a href="http://digg.com/submit?url=http%3A%2F%2Fwww.microsoftkit.com%2F70-290-free-technotes-managing-groups%2F&amp;title=70-290+Free+Technotes%3A+Managing+Groups"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;
<a href="http://www.reddit.com/submit?url=http%3A%2F%2Fwww.microsoftkit.com%2F70-290-free-technotes-managing-groups%2F&amp;title=70-290+Free+Technotes%3A+Managing+Groups"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.microsoftkit.com%2F70-290-free-technotes-managing-groups%2F&amp;title=70-290+Free+Technotes%3A+Managing+Groups"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;
<a href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwww.microsoftkit.com%2F70-290-free-technotes-managing-groups%2F&amp;headline=70-290+Free+Technotes%3A+Managing+Groups"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;
<a href="http://www.dzone.com/links/add.html?title=70-290+Free+Technotes%3A+Managing+Groups&amp;url=http%3A%2F%2Fwww.microsoftkit.com%2F70-290-free-technotes-managing-groups%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;
<a href="http://www.facebook.com/sharer.php?t=70-290+Free+Technotes%3A+Managing+Groups&amp;u=http%3A%2F%2Fwww.microsoftkit.com%2F70-290-free-technotes-managing-groups%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;
<a href="http://delicious.com/save?title=70-290+Free+Technotes%3A+Managing+Groups&amp;url=http%3A%2F%2Fwww.microsoftkit.com%2F70-290-free-technotes-managing-groups%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;
<a href="http://www.dotnetkicks.com/kick/?title=70-290+Free+Technotes%3A+Managing+Groups&amp;url=http%3A%2F%2Fwww.microsoftkit.com%2F70-290-free-technotes-managing-groups%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;
<a href="http://dotnetshoutout.com/Submit?title=70-290+Free+Technotes%3A+Managing+Groups&amp;url=http%3A%2F%2Fwww.microsoftkit.com%2F70-290-free-technotes-managing-groups%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;
<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.microsoftkit.com%2F70-290-free-technotes-managing-groups%2F&amp;title=70-290+Free+Technotes%3A+Managing+Groups&amp;summary=&amp;source="><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;
<a href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.microsoftkit.com%2F70-290-free-technotes-managing-groups%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;
<a href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwww.microsoftkit.com%2F70-290-free-technotes-managing-groups%2F"><img src="http://www.microsoftkit.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.microsoftkit.com/70-290-free-technotes-managing-groups/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
