<?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>Lazarus Graveyard</title>
	<atom:link href="http://www.lazarusgraveyard.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lazarusgraveyard.co.uk</link>
	<description></description>
	<lastBuildDate>Mon, 15 Feb 2010 20:34:40 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Subnetting</title>
		<link>http://www.lazarusgraveyard.co.uk/tek/subnetting/</link>
		<comments>http://www.lazarusgraveyard.co.uk/tek/subnetting/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 02:17:54 +0000</pubDate>
		<dc:creator>Lazarus</dc:creator>
				<category><![CDATA[Tek]]></category>
		<category><![CDATA[ip address]]></category>
		<category><![CDATA[ipv4]]></category>
		<category><![CDATA[subnet mask]]></category>
		<category><![CDATA[tcp/ip]]></category>

		<guid isPermaLink="false">http://www.lazarusgraveyard.co.uk/tek/subnetting/</guid>
		<description><![CDATA[A subnet mask determines which part of an ipv4 address refers to the network and which part refers to the host. For example a standard class C private address used in many home ADSL networks might be;
192.168.1.1 with a subnet mask of 255.255.255.0
In binary the subnet mask is: 11111111.11111111.11111111.00000000
All the bits that are switched on [...]]]></description>
			<content:encoded><![CDATA[<p>A subnet mask determines which part of an ipv4 address refers to the network and which part refers to the host. For example a standard class C private address used in many home ADSL networks might be;</p>
<p>192.168.1.1 with a subnet mask of 255.255.255.0</p>
<p>In binary the subnet mask is: 11111111.11111111.11111111.00000000</p>
<p>All the bits that are switched on (1) are naming the network.</p>
<p>All the bits that are switched off (0) are naming the host.</p>
<p>So in this example 192.168.1.1 describes host number 1 on the network segment 192.168.1</p>
<p>On this network the subnet mask informs us that the last octet is available for host addresses. This includes 0 to 255 minus 2. (255 is reserved for broadcasts and 0 is the network name) Meaning we could have a total of 253 hosts on the 192.168.1.0/24 network.</p>
<p>The &#8216;/24&#8242; at the end refers to the number of bits in the subnet mask. In a 255.255.255.0 subnet mask 24 bits are switched on (1). Subnet masks expressed in this fashion is called &#8216;bit notation&#8217;.</p>
<p>Subnetting is basically altering the bit length of a network subnet mask to either increase the number of available networks (moving the number of &#8216;on/1&#8242; bits to the right which therefore decrease the number of hosts) or increasing the number of hosts (by moving the number of &#8216;off /0&#8242; bits to the left).</p>
<p>Cisco recommend that you should not have more than 500 hosts on a network.</p>
<p>Certainly in most private class A network ranges (10.0.0.0 to 10.255.255.255) the default class A subnet mask would be 255.0.0.0 (11111111.00000000.00000000.00000000) allowing 255 networks and millions of hosts. This would obviously be an unmanageable number of hosts and so the subnet mask will normally be &#8217;subnetted&#8217; to increase the number of available networks while also reducing the available number of hosts on each network. This would be accomplished by moving the on (1) bits to the right changing the mask from 255.0.0.0 to, perhaps, 255.255.255.0 or 255.255.128.0 any other combination that gives the desired balance of network/host addresses.</p>
<p><span style="font-family: Arial; font-size: 10pt;"><strong>To create more networks</strong></span><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
<p><span style="font-family: Arial; font-size: 10pt;">1) determine number of networks and convert to binary (right to left)</span><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
<p><span style="font-family: Arial; font-size: 10pt;">2) reserve bits in subnet mask and find your increment (lowest bit, left to right &#8211; add the number of bits it takes to represent the desired number of networks in decimal to the subnet mask from left to right &#8211; the lowest bit at the far right is the increment.)</span><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
<p><span style="font-family: Arial; font-size: 10pt;">3) use increment to find your network ranges</span><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
<p><span style="font-family: Arial; font-size: 10pt;"><strong>To create more hosts</strong></span><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
<p><span style="font-family: Arial; font-size: 10pt;">1) determine number of hosts and convert to binary</span><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
<p><span style="font-family: Arial; font-size: 10pt;">2) reserve bits in subnet mask and find your increment </span><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
<p><span style="font-family: Arial; font-size: 10pt;">(tweak = save the hosts! work out how may bits it takes to represent the desired number of hosts in binary and save that many zeros in the mask from right to left &#8211; all zeros in the mask that aren&#8217;t in the reserved portion are converted to 1.)</span><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
<p><span style="font-family: Arial; font-size: 10pt;">3) use increment to find your network ranges</span><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
<p><span style="font-family: Arial; font-size: 10pt;"><strong><em>if subnetting the next range is 256 carry the one to the left octet until the one can be added without exceeding 255.</em></strong></span><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
<p><span style="font-family: Arial; font-size: 10pt;"><strong>Reverse engineering subnets</strong></span><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
<p><span style="font-family: Arial; font-size: 10pt;">is this ip address valid? what range does it belong to? = 192.168.1.127, 255.255.255.224</span><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
<p><span style="font-family: Arial; font-size: 10pt;">the answer is 224&#8230;</span><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
<p><span style="font-family: Arial; font-size: 10pt;">what increment was used to build the network ranges? the lowest subnet mask octet and break into binary and find the lowest bit value (left to right) so it&#8217;s 32.</span><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
<p><span style="font-family: Arial; font-size: 10pt;">192.168.1.0</span><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
<p><span style="font-family: Arial; font-size: 10pt;">192.168.1.32</span><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
<p><span style="font-family: Arial; font-size: 10pt;">192.168.1.64</span><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
<p><span style="font-family: Arial; font-size: 10pt;">192.168.1.96 &#8211; 192.168.1.127 = ip address belongs to this range but is invalid as is last address of the range and so is the broadcast address.</span><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
<p><span style="font-family: Arial; font-size: 10pt;">192.168.1.128</span><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
<p><span style="font-family: Arial; font-size: 10pt;"><strong>The great exception</strong></span><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
<p><span style="font-family: Arial; font-size: 10pt;">because binary begins counting from zero</span><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
<p><span style="font-family: Arial; font-size: 10pt;">these network values may throw off calculations for the number of networks;</span><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
<p><span style="font-family: Arial; font-size: 10pt;">2, 4, 8, 16, 32, 128</span><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
<p><span style="font-family: Arial; font-size: 10pt;">these host values may throw off calculations for number of hosts,</span><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
<p><span style="font-family: Arial; font-size: 10pt;">3, 7, 15, 31, 127</span><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
<p><span style="font-family: Arial; font-size: 10pt;">to play it safe;</span><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
<p><span style="font-family: Arial; font-size: 10pt;">subtract 1 when finding networks (ie if asked to find 128 networks subtract 1 and find it on 127 networks)</span><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
<p><span style="font-family: Arial; font-size: 10pt;">add 1 when finding hosts (ie if asked to find 63 hosts add 1 and find 64 hosts)</span><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
<p><span style="font-family: Times New Roman; font-size: 12pt;"><br />
</span></p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.lazarusgraveyard.co.uk/tek/subnetting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Outlook profiles</title>
		<link>http://www.lazarusgraveyard.co.uk/tek/outlook-profiles/</link>
		<comments>http://www.lazarusgraveyard.co.uk/tek/outlook-profiles/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 22:55:56 +0000</pubDate>
		<dc:creator>Lazarus</dc:creator>
				<category><![CDATA[Tek]]></category>

		<guid isPermaLink="false">http://www.lazarusgraveyard.co.uk/tek/outlook-profiles/</guid>
		<description><![CDATA[Profiles are useful if you move around to different location so you can switch between office exchange and external pop3 to pst.
It could also be used to switch between primary mailboxes – this is useful if you want to set up an out of office notification on a mailbox which is not your primary &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>Profiles are useful if you move around to different location so you can switch between office exchange and external pop3 to pst.</p>
<p>It could also be used to switch between primary mailboxes – this is useful if you want to set up an out of office notification on a mailbox which is not your primary &#8211; however you need to have &#8216;full mailbox rights&#8217; selected in the mailbox rights section of the exchange advanced tab on the profile of the user who owns the mailbox in question.</p>
<ol>
<li>Go to control panel and open the mail icon</li>
<li>Click on show profiles</li>
<li>Click on add</li>
<li>Name the profile</li>
<li>Click ok</li>
<li>Go through account wizard</li>
<li>You now have two profiles (including default &#8216;Outlook&#8217;)</li>
<li>You can set it to always use a profile by default or to prompt you for which one you want to use.</li>
</ol>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.lazarusgraveyard.co.uk/tek/outlook-profiles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Group mailbox exchange 2003</title>
		<link>http://www.lazarusgraveyard.co.uk/tek/group-mailbox-exchange-2003/</link>
		<comments>http://www.lazarusgraveyard.co.uk/tek/group-mailbox-exchange-2003/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 22:34:56 +0000</pubDate>
		<dc:creator>Lazarus</dc:creator>
				<category><![CDATA[Tek]]></category>
		<category><![CDATA[exchange]]></category>
		<category><![CDATA[group]]></category>
		<category><![CDATA[mailbox]]></category>

		<guid isPermaLink="false">http://www.lazarusgraveyard.co.uk/tek/group-mailbox-exchange-2003/</guid>
		<description><![CDATA[Server level task


Open ADUC and create a dummy user account. 

In user properties go to exchange advanced tab/mailbox rights

Add group and assign all permissions except associate external account (NB till user logs on or mail is sent to the mailbox will only list &#8216;SELF&#8217; in ACL)

Go to exchange security tab (view/advanced features)

Advanced/add (group)/set apply onto [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Server level task<br />
</strong></p>
<ol>
<li>Open ADUC and create a dummy user account. <strong><br />
</strong></li>
<li>In user properties go to exchange advanced tab/mailbox rights<strong><br />
</strong></li>
<li>Add group and assign all permissions except associate external account (NB till user logs on or mail is sent to the mailbox will only list &#8216;SELF&#8217; in ACL)<strong><br />
</strong></li>
<li>Go to exchange security tab (view/advanced features)<strong><br />
</strong></li>
<li>Advanced/add (group)/set apply onto &#8216;this object only&#8217; (top of drop down menu)<strong><br />
</strong></li>
<li>Tick the &#8217;send as&#8217; permission<strong><br />
</strong></li>
</ol>
<p>Now all group members should be able to access this mailbox</p>
<p>The users need to add the mailbox to their outlook client.</p>
<ol>
<li>Tools/email accounts/view or change/change/more settings/advanced tab/add mailbox/ok</li>
</ol>
<p>(or access the same screen by right clicking mailbox/properties/advanced/advanced tab)</p>
<p>Now mailbox is available to user, add the &#8216;from&#8217; field on the mail (from the options drop down menu)</p>
<p>As multiple users are working on the same mailbox its useful if they turn off &#8216;mark as read&#8217;  which can be accomplished by accessing a menu when you right click on the vertical grey line between the email list and preview pane.</p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.lazarusgraveyard.co.uk/tek/group-mailbox-exchange-2003/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>‘Send as’ permissions in Outlook 2003</title>
		<link>http://www.lazarusgraveyard.co.uk/tek/%e2%80%98send-as%e2%80%99-permissions-in-outlook-2003/</link>
		<comments>http://www.lazarusgraveyard.co.uk/tek/%e2%80%98send-as%e2%80%99-permissions-in-outlook-2003/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 22:18:49 +0000</pubDate>
		<dc:creator>Lazarus</dc:creator>
				<category><![CDATA[Tek]]></category>
		<category><![CDATA[exchange]]></category>
		<category><![CDATA[outlook]]></category>
		<category><![CDATA[send]]></category>

		<guid isPermaLink="false">http://www.lazarusgraveyard.co.uk/tek/%e2%80%98send-as%e2%80%99-permissions-in-outlook-2003/</guid>
		<description><![CDATA[Different from &#8217;send on behalf of&#8217; as the mail is sent with complete control and access rights to the mailbox. The email will not say &#8217;sent on behalf of&#8217;.

Server level task


Open ADUC
Locate user who&#8217;s mailbox you want to edit
Right click/properties/exchange advanced tab/mailbox rights
Add nominated user to ACL and give all rights except associated external account
Go [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Different from &#8217;send on behalf of&#8217; as the mail is sent with complete control and access rights to the mailbox. The email will not say &#8217;sent on behalf of&#8217;.<br />
</strong></p>
<p><strong>Server level task<br />
</strong></p>
<ol>
<li>Open ADUC</li>
<li>Locate user who&#8217;s mailbox you want to edit</li>
<li>Right click/properties/exchange advanced tab/mailbox rights</li>
<li>Add nominated user to ACL and give all rights except associated external account</li>
<li>Go to security tab (have to have view/advanced features enabled)</li>
<li>Click advanced</li>
<li>Add nominated user</li>
<li>Edit/apply onto &#8220;this object only&#8221; (from drop down menu)</li>
<li>Select &#8217;send as&#8217;</li>
<li>Ok/ok/ok.</li>
</ol>
<p>On designated client add the mailbox.</p>
<ol>
<li>Tools/email accounts/view or change/more settings/advanced tab/add</li>
</ol>
<p>Add the &#8216;from&#8217; field on the email (from the options drop down menu in the tool bar)</p>
<p><strong>Emails sent on behalf of the mail box now appear as if they were sent by the mailbox owner.<br />
</strong></p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.lazarusgraveyard.co.uk/tek/%e2%80%98send-as%e2%80%99-permissions-in-outlook-2003/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>‘Send on behalf of’ mailbox rights in Outlook 2003</title>
		<link>http://www.lazarusgraveyard.co.uk/tek/%e2%80%98send-on-behalf-of%e2%80%99-mailbox-rights-in-outlook-2003/</link>
		<comments>http://www.lazarusgraveyard.co.uk/tek/%e2%80%98send-on-behalf-of%e2%80%99-mailbox-rights-in-outlook-2003/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 22:06:04 +0000</pubDate>
		<dc:creator>Lazarus</dc:creator>
				<category><![CDATA[Tek]]></category>

		<guid isPermaLink="false">http://www.lazarusgraveyard.co.uk/tek/%e2%80%98send-on-behalf-of%e2%80%99-mailbox-rights-in-outlook-2003/</guid>
		<description><![CDATA[
 
User/client level task.


 

Select mailbox to delegate.

Goto tools/options/delegates tab

Add nominated user

Choose permissions levels for calendar/tasks/inbox/contacts/notes/journal


Give mailbox rights! Right click mailbox and go to properties/permissions/add user choose folder visible rights


 


Now delegated user can send on behalf of the mailbox.

In the delegated user&#8217;s outlook add the delegated mailbox.


 

To send a message on behalf of the delegated mailbox you [...]]]></description>
			<content:encoded><![CDATA[<p>
 </p>
<p><strong>User/client level task.<br />
</strong></p>
<p style="margin-left: 36pt">
 </p>
<ol>
<li>Select mailbox to delegate.
</li>
<li>Goto tools/options/delegates tab
</li>
<li>Add nominated user
</li>
<li>Choose permissions levels for calendar/tasks/inbox/contacts/notes/journal
</li>
<li>
<div><strong>Give mailbox rights! Right click mailbox and go to properties/permissions/add user choose folder visible rights<br />
</strong></div>
<p>
 </p>
</li>
</ol>
<p>Now delegated user can send on behalf of the mailbox.
</p>
<p>In the delegated user&#8217;s outlook add the delegated mailbox.
</p>
<p style="margin-left: 36pt">
 </p>
<ol>
<li>To send a message on behalf of the delegated mailbox you need to add the &#8216;from&#8217; field on the email by clicking on the &#8216;options&#8217; drop down on the mail toolbar.<strong><br />
			</strong></li>
<li>In the from field enter the email address of the mailbox you are sending on behalf of.</li>
</ol>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.lazarusgraveyard.co.uk/tek/%e2%80%98send-on-behalf-of%e2%80%99-mailbox-rights-in-outlook-2003/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sharing folders in Outlook 2003</title>
		<link>http://www.lazarusgraveyard.co.uk/tek/sharing-folders-in-outlook-2003/</link>
		<comments>http://www.lazarusgraveyard.co.uk/tek/sharing-folders-in-outlook-2003/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 21:55:21 +0000</pubDate>
		<dc:creator>Lazarus</dc:creator>
				<category><![CDATA[Tek]]></category>

		<guid isPermaLink="false">http://www.lazarusgraveyard.co.uk/tek/sharing-folders-in-outlook-2003/</guid>
		<description><![CDATA[Share folders with another user (user/client level task)

This enables the nominated user to see the contents of the folder but not act on the folder owners behalf.


Right click on the relevant folder (ie inbox).

Go to properties/permissions tab.

Add the nominated user.

Assign permission level.

Give permissions at the mailbox level!! Right click on &#8216;mailbox – name&#8217; and go [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Share folders with another user (user/client level task)<br />
</strong></p>
<p>This enables the nominated user to see the contents of the folder but not act on the folder owners behalf.
</p>
<ol>
<li>Right click on the relevant folder (ie inbox).
</li>
<li>Go to properties/permissions tab.
</li>
<li>Add the nominated user.
</li>
<li>Assign permission level.
</li>
<li><strong>Give permissions at the mailbox level!! Right click on &#8216;mailbox – name&#8217; and go to it properties/permissions tab and choose the &#8216;make folder visible&#8217; option.<br />
</strong></li>
</ol>
<p>Now the nominated user has permission to view the folders specified;
</p>
<ol>
<li>Right click mailbox/open other folder/other user&#8217;s folder.
</li>
<li>Select name to open global address list.
</li>
<li>Select the right name from the list/ok.
</li>
</ol>
<p>This enables the user to see one inbox at a time and can be quirky. If the email isn&#8217;t displayed try closing and reopening outlook.
</p>
<p>To set it up on a permanent basis add the mailbox;
</p>
<ol>
<li>Right click on mailbox/properties/advanced/advanced tab/add/mailbox/ok.</li>
</ol>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.lazarusgraveyard.co.uk/tek/sharing-folders-in-outlook-2003/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The end of the Vista thing.</title>
		<link>http://www.lazarusgraveyard.co.uk/tek/the-end-of-the-vista-thing/</link>
		<comments>http://www.lazarusgraveyard.co.uk/tek/the-end-of-the-vista-thing/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 21:37:07 +0000</pubDate>
		<dc:creator>Lazarus</dc:creator>
				<category><![CDATA[Tek]]></category>
		<category><![CDATA[vista]]></category>

		<guid isPermaLink="false">http://www.lazarusgraveyard.co.uk/?p=497</guid>
		<description><![CDATA[I have had a love hate love relationship with vista. I have played with windows 7 and think it is what vista should have been, but I still like vista.
I fell out of love with vista (as you can see by recent posts) due to a problem it developed with automatic updates and the pending.xml [...]]]></description>
			<content:encoded><![CDATA[<p>I have had a love hate love relationship with vista. I have played with windows 7 and think it is what vista should have been, but I still like vista.</p>
<p>I fell out of love with vista (as you can see by recent posts) due to a problem it developed with automatic updates and the pending.xml file that I spent hours fruitlessly trying to repair.</p>
<p>But its ok now.  It has been patched and automatic updates now work as they should and with no action on my part.</p>
<p>So good news but Im still owed 2 months of free time by microsoft for the crap they put me through!! grrr</p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.lazarusgraveyard.co.uk/tek/the-end-of-the-vista-thing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Delegate Active Directory permissions to a user</title>
		<link>http://www.lazarusgraveyard.co.uk/tek/delegate-active-directory-permissions-to-a-user/</link>
		<comments>http://www.lazarusgraveyard.co.uk/tek/delegate-active-directory-permissions-to-a-user/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 12:35:47 +0000</pubDate>
		<dc:creator>Lazarus</dc:creator>
				<category><![CDATA[Tek]]></category>

		<guid isPermaLink="false">http://www.lazarusgraveyard.co.uk/tek/delegate-active-directory-permissions-to-a-user/</guid>
		<description><![CDATA[
Open ADUC, locate the ou where the user exists – right click on ou and choose delegate control.

Add/enter name/check name/ok/next.

Choose what tasks to delegate (e.g. &#8216;create delete and manage user accounts&#8217;/reset user passwords and force password change at next logon&#8217; &#8216;modify membership of a group&#8217; etc..)


Next/Finish


 
Now in security tab of OU (need to have advanced [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>Open ADUC, locate the ou where the user exists – right click on ou and choose delegate control.
</li>
<li>Add/enter name/check name/ok/next.
</li>
<li>Choose what tasks to delegate (e.g. &#8216;create delete and manage user accounts&#8217;/reset user passwords and force password change at next logon&#8217; &#8216;modify membership of a group&#8217; etc..)
</li>
<li>
<div>Next/Finish
</div>
<p>
 </p>
<p>Now in security tab of OU (need to have advanced features selected from view menu of ADUC) designated user will show as having &#8217;special permissions&#8217;.
</p>
<p>
 </p>
</li>
<li>
<div>To enabled user to access ADUC from their PC they need to be made a local administrator of that PC. Open MMC and add local users and groups snap in for the target computer. Add &#8216;domainname\username&#8217; account to the administrators group.
</div>
<p>
 </p>
<p>You now have to install management tools on the client machine to be able to manage active directory from the pc. To do this you need to have the server 2003 cd and copy i386/ADMINPACK.MSI from the disc to a shared folder on the server.
</p>
<p>
 </p>
</li>
<li>Create a console for the user by running mmc and adding ADUC snap in. Save in &#8216;User Mode&#8217; (File/options/user mode full access.) save in a shared folder on the server.
</li>
<li>User now logs onto their PC (they are now local administrator). Access the shared folder on the server where the console is saved by using a UNC path.
</li>
<li>Copy and Paste the mmc console AND the ADMINPACK.MSI to the user&#8217;s desktop.
</li>
<li>
<div>Run ADMINPACK.MSI on the client machine.
</div>
<p>User can now open and create management consoles as per there delegation rights.
</p>
<p>To remove delegation from the user you need to go into the advanced ACL for the ou where the user is located in ADUC and remove the special permissions assigned to them.
</p>
</li>
</ol>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.lazarusgraveyard.co.uk/tek/delegate-active-directory-permissions-to-a-user/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Non domain pc on same subnet as domain members</title>
		<link>http://www.lazarusgraveyard.co.uk/tek/non-domain-pc-on-same-subnet-as-domain-members/</link>
		<comments>http://www.lazarusgraveyard.co.uk/tek/non-domain-pc-on-same-subnet-as-domain-members/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 21:45:44 +0000</pubDate>
		<dc:creator>Lazarus</dc:creator>
				<category><![CDATA[Tek]]></category>

		<guid isPermaLink="false">http://www.lazarusgraveyard.co.uk/tek/non-domain-pc-on-same-subnet-as-domain-members/</guid>
		<description><![CDATA[

a workgroup XP Pro computer on the same subnet as a domain controller should be able to ping and be pinged on both ip address and hostname.


 
However




 

The XP computer will not appear in the DNS namespace of the domain (is there will be no record in the forward lookupzone) and there will be no computer [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<div>a workgroup XP Pro computer on the same subnet as a domain controller should be able to ping and be pinged on both ip address and hostname.
</div>
<p>
 </p>
<p><strong>However<br />
</strong></p>
</li>
</ul>
<p>
 </p>
<ul>
<li>The XP computer will not appear in the DNS namespace of the domain (is there will be no record in the forward lookupzone) and there will be no computer account in active directory as the computer is not domain member.
</li>
<li>server shares can be accessed from the XP workgroup computer using unc paths if domain credentials are supplied
</li>
<li>XP workgroup computer shares can be accessed from the server however there is a local security setting that can be adjusted to allow people to log on as guests or themselves (&#8220;Network access: sharing and security model for local accounts&#8221;) also under &#8216;user rights assignment&#8217; in secpol.msc ensure the everyone group is present in &#8220;Access this computer from the network&#8221; and absent from &#8220;deny access to this computer from the network.&#8221; Try adding and removing relevant user account from these policies also try enabling netbios over tcp/ip in internet protocol/properties/advanced/wins tab.</li>
</ul>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.lazarusgraveyard.co.uk/tek/non-domain-pc-on-same-subnet-as-domain-members/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Exchange 2003 terminology</title>
		<link>http://www.lazarusgraveyard.co.uk/tek/simple-exchange-2003-terminology/</link>
		<comments>http://www.lazarusgraveyard.co.uk/tek/simple-exchange-2003-terminology/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 18:55:40 +0000</pubDate>
		<dc:creator>Lazarus</dc:creator>
				<category><![CDATA[Tek]]></category>

		<guid isPermaLink="false">http://www.lazarusgraveyard.co.uk/tek/simple-exchange-2003-terminology/</guid>
		<description><![CDATA[Recipient Objects

Any object that receives mail from an exchange server


AD users

AD groups (security and distribution)

Contacts

Public folders


Mail Types

Recipient objects can be;

Mailbox-enabled: has a mailbox on the Exchange server, send and receive. Users can be Mailbox-enabled but contacts and groups cannot.

Mail-enabled: has an email address but no mailbox. Can receive email from exchange server but cant send [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Recipient Objects<br />
</strong></p>
<p>Any object that receives mail from an exchange server
</p>
<ul>
<li>AD users
</li>
<li>AD groups (security and distribution)
</li>
<li>Contacts
</li>
<li>Public folders
</li>
</ul>
<p><strong>Mail Types<br />
</strong></p>
<p>Recipient objects can be;
</p>
<p><strong>Mailbox-enabled: </strong>has a mailbox on the Exchange server, send and receive. Users can be Mailbox-enabled but contacts and groups cannot.
</p>
<p><strong>Mail-enabled: </strong>has an email address but no mailbox. Can receive email from exchange server but cant send through it. AD users, contacts and Groups can be Mail enabled.
</p>
<p><strong>Exchange Alias: </strong>By default is the same as the user logon name. Its what shows up in the global address list.
</p>
<p><strong>Primary address: </strong> If you have multiple aliases in the email address tab of a user AD account the primary address is the one that is bolded and the one that appears on the recipient side when you reply to them.
</p>
<p><strong>Groups;<br />
</strong></p>
<p>Created in ADUC;
</p>
<p><strong>Security Group: </strong>A group that can be used for Permissions and email.
</p>
<p><strong>Distribution Group: </strong>Only used for email.
</p>
<p>  </p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.lazarusgraveyard.co.uk/tek/simple-exchange-2003-terminology/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
