<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://www.block.net.au/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>J Blog</title><link>http://www.block.net.au/blogs/james/default.aspx</link><description>A random place for me to listen to the sound of my own typing</description><dc:language>en</dc:language><generator>CommunityServer 2008 (Build: 30417.1769)</generator><item><title>Single AD and your Remote WAN offices</title><link>http://www.block.net.au/blogs/james/archive/2008/07/01/single-ad-and-your-remote-wan-offices.aspx</link><pubDate>Wed, 02 Jul 2008 02:27:00 GMT</pubDate><guid isPermaLink="false">39dbe0eb-6070-40b4-bb7b-e3178263f421:44</guid><dc:creator>James.Kindon</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.block.net.au/blogs/james/rsscomments.aspx?PostID=44</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.block.net.au/blogs/james/commentapi.aspx?PostID=44</wfw:comment><comments>http://www.block.net.au/blogs/james/archive/2008/07/01/single-ad-and-your-remote-wan-offices.aspx#comments</comments><description>&lt;p&gt;&amp;nbsp;Over the last 12 months, I have been undertaking a centralisation of AD project across over 100 Sites. If you read through some of my previous AD design and implementation articles, you will see that i push the single AD path quite heavily inline with both Microsoft reccomendations and real world experience&lt;/p&gt;
&lt;p&gt;Unfortunately, there are one or two small bugs that still need to be addressed in a Single AD environment, with remote sites that do not host a Domain Controller. In reality, with sites that have 4 or 5 computers, there is not a justification of cost to implement a local DC at each site. Whilst this would be a Fantastic environment to work in, its simply not something that can always be justified. &lt;/p&gt;
&lt;p&gt;The biggest problem that i have found so far, is that when a WAN link drops at a remote site, certain functions of everyday network no longer work, the biggest is local drive mappings. For example, say you have an XP machine that hosts a small POS application, and all other clients MAP to this machine. If the WAN link drops, the user can logon with Cached Credentials, but drive mappings to other machines fail, due to no local GC being contactable to provide authentication. This may be ok for an hour or so, but when you start talking of days without a Link being restored, this becomes a very serious matter&lt;/p&gt;
&lt;p&gt;The ony work around to date that i have found is to emulate a workgroup environment temporarily. When i say emulate, i mean drop back to the Authentication of mapped drives occuring at a SAM level, rather than AD. This isnt as bad as it sounds, considering that cached computer security settings from a GPO still apply so your security isnt breached&lt;/p&gt;
&lt;p&gt;Basically, i have created a small script that runs as a startup script within GPO whilst the link is up, that creates a local user account on each machine. When the Link drops and is not returned to an operation state (time period set by internal SLA&amp;#39;s) we simply guide the local staff in logging in with the local account, and mapping drives to the appropriate machine - to enhance efficiency, you can even create a set of batch or vbs files to take care of this all for your users depending on your environment. a local logon script still runs and makes life much easier. This must be run as a startup script rather than a logon script as local users do not have permissions to create users&lt;/p&gt;
&lt;p&gt;This runs on all local machines, uncluding terminal services, and includes the appropriate group membership for the loca user to allow both local, and TS access when no link is present.&lt;/p&gt;
&lt;p&gt;2008 Server introduces RODC&amp;#39;s, which will start taking care of a lot of these problems, especially for sites that may contain a local 2008 file and print server. 2008 Group Policy also allows for local user create via GPO, which will make this script redundant (yay!) and make life much easier&lt;/p&gt;
&lt;p&gt;Here is the code that i am currently using - its simple and easy - feel free to use it as you see fit&lt;/p&gt;
&lt;p&gt;James&lt;/p&gt;
&lt;p&gt;DIM strUserName&lt;br /&gt;DIM strFullName&lt;br /&gt;DIM strDescr&lt;br /&gt;DIM strPassword&lt;br /&gt;DIM strComputer&lt;/p&gt;
&lt;p&gt;Set WshNetwork = WScript.CreateObject(&amp;quot;WScript.Network&amp;quot;)&lt;/p&gt;
&lt;p&gt;strUserName = &amp;quot;LanLogon&amp;quot; &lt;br /&gt;strFullName = &amp;quot; WAN Down&amp;quot; &lt;br /&gt;strDescr = &amp;quot;Local Logon Account WAN Link is Down&amp;quot; &lt;br /&gt;strPassword = &amp;quot;PassWord0099&amp;quot; &lt;br /&gt;strComputer = WshNetwork.ComputerName&lt;/p&gt;
&lt;p&gt;Set colAccounts = GetObject(&amp;quot;WinNT://&amp;quot; &amp;amp; strComputer &amp;amp; &amp;quot;&amp;quot;)&lt;br /&gt;colAccounts.Filter = Array(&amp;quot;user&amp;quot;)&lt;br /&gt;result = false&lt;br /&gt;For Each objAccount In colAccounts&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (objAccount.Name = strUserName) then&lt;br /&gt;&amp;nbsp;result = true&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end if&lt;br /&gt;Next&lt;/p&gt;
&lt;p&gt;If result= false Then&lt;br /&gt;&amp;nbsp;set objSystem = GetObject(&amp;quot;WinNT://&amp;quot; &amp;amp; strComputer)&lt;br /&gt;&amp;nbsp;set objUser = objSystem.Create(&amp;quot;user&amp;quot;, strUserName)&lt;br /&gt;&amp;nbsp;objUser.FullName = strFullName&lt;br /&gt;&amp;nbsp;objUser.Description = strDescr&lt;br /&gt;&amp;nbsp;objUser.SetPassword strPassword&lt;br /&gt;&amp;nbsp;objUser.SetInfo&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Set objUserGroup = GetObject(&amp;quot;WinNT://&amp;quot; &amp;amp; strComputer &amp;amp; &amp;quot;/Users&amp;quot;)&lt;br /&gt;&amp;nbsp;Set objRemoteGroup = GetObject(&amp;quot;WinNT://&amp;quot; &amp;amp; strComputer &amp;amp; &amp;quot;/Remote Desktop Users&amp;quot;)&lt;br /&gt;&amp;nbsp;objUserGroup.Add(objUser.ADsPath)&lt;br /&gt;&amp;nbsp;objRemoteGroup.Add(objUser.ADsPath)&lt;/p&gt;
&lt;p&gt;End If&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://www.block.net.au/aggbug.aspx?PostID=44" width="1" height="1"&gt;</description><category domain="http://www.block.net.au/blogs/james/archive/tags/Active+Directory/default.aspx">Active Directory</category><category domain="http://www.block.net.au/blogs/james/archive/tags/Cached+Credentials/default.aspx">Cached Credentials</category></item><item><title>Server 2003 R2 - Server 2008 File Screening</title><link>http://www.block.net.au/blogs/james/archive/2008/06/23/server-2003-r2-server-2008-file-screening.aspx</link><pubDate>Mon, 23 Jun 2008 23:09:00 GMT</pubDate><guid isPermaLink="false">39dbe0eb-6070-40b4-bb7b-e3178263f421:35</guid><dc:creator>James.Kindon</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.block.net.au/blogs/james/rsscomments.aspx?PostID=35</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.block.net.au/blogs/james/commentapi.aspx?PostID=35</wfw:comment><comments>http://www.block.net.au/blogs/james/archive/2008/06/23/server-2003-r2-server-2008-file-screening.aspx#comments</comments><description>&lt;p&gt;One of the most underused and most powerful (and awesome) features of the R2 release of Server&amp;nbsp;2003 and standard in 2008, is file screening.....This is a really really cool&amp;nbsp;feature that&amp;nbsp;gives you complete&amp;nbsp;control of what is stored on your server - the control is unbeleivable, you can block on file types, size, user, etc&lt;/p&gt;
&lt;p&gt;A great run through as usual from the guys on the windowsnetworking site is worth a read &lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.windowsnetworking.com/articles_tutorials/Implementing-File-Screening-Windows-Server-2003-R2.html"&gt;http://www.windowsnetworking.com/articles_tutorials/Implementing-File-Screening-Windows-Server-2003-R2.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Have a try of this on your own servers, i guarrantee you will find a use for it, and tie it&amp;nbsp;in with storage quotas etc, and your&amp;nbsp;control&amp;nbsp;over your file servers takes a step in a whole new&amp;nbsp;direction&lt;/p&gt;
&lt;p&gt;James&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://www.block.net.au/aggbug.aspx?PostID=35" width="1" height="1"&gt;</description><category domain="http://www.block.net.au/blogs/james/archive/tags/File+Screening/default.aspx">File Screening</category></item><item><title>Group Policy Security Filtering</title><link>http://www.block.net.au/blogs/james/archive/2008/06/01/group-policy-security-filtering.aspx</link><pubDate>Mon, 02 Jun 2008 05:33:00 GMT</pubDate><guid isPermaLink="false">39dbe0eb-6070-40b4-bb7b-e3178263f421:32</guid><dc:creator>James.Kindon</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.block.net.au/blogs/james/rsscomments.aspx?PostID=32</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.block.net.au/blogs/james/commentapi.aspx?PostID=32</wfw:comment><comments>http://www.block.net.au/blogs/james/archive/2008/06/01/group-policy-security-filtering.aspx#comments</comments><description>&lt;p&gt;One of the common requirements of GPO is making sure it only applies to certain servers or objects, you may have a terminal server that you dont want certain GPO&amp;#39;s being assigned to, yet this server sits in the same OU as multiple other servers that do need to GPO in question to be applied&lt;/p&gt;
&lt;p&gt;What are your options? Basically there are two&lt;/p&gt;
&lt;p&gt;1) Create an additional OU for the objects in questions that you do not want the policy to apply too, move the object to it (If its a sub OU then you will need to block policy inheritence from above) and you are done&lt;/p&gt;
&lt;p&gt;In a more complex environment, segmenting OU&amp;#39;s like this may not be an acceptable solution, so we have a second option that allows you to keep your AD structure as is, yet allows more control on which objects get what policy. This is known as Security Filtering&lt;/p&gt;
&lt;p&gt;2) Group Policy Security Filtering&lt;/p&gt;
&lt;p&gt;This is pretty much a self explanatory procedure. Basically, you control the security on the Policy, the same as you would on a NTFS share. You can allow or deny permissions on users and groups, to actually apply the persmission.&lt;/p&gt;
&lt;p&gt;Best practices on this are similar to NTFS permissions, the primary being, dont use the deny permission. A basic simple set of steps is as follows&lt;/p&gt;
&lt;p&gt;I would also reccomend using Group Policy Management Console for this task&lt;/p&gt;
&lt;p&gt;1) Create a Group&lt;br /&gt;2) Add your objects to the group (Users, Computers, Servers)&lt;br /&gt;3) Create your GPO&lt;br /&gt;4) Under the delegation TAB of the GPO, Advanced, Remove the groups you do not wish the policy to apply to and add your newly created group that you do want the policy to apply to)&lt;br /&gt;5) Assign the allow read and apply group policy settings&lt;br /&gt;6) Link the GPO to the OU that holds the objects.&lt;/p&gt;
&lt;p&gt;You have now ensured that users within your group, can apply the policy, you have also ensured that no other objects will&lt;/p&gt;
&lt;p&gt;Simple Yes&lt;/p&gt;
&lt;p&gt;For the &amp;quot;how to&amp;quot; and some more in depth reading, this is the best link I have found&lt;br /&gt;&lt;a href="http://www.windowsnetworking.com/articles_tutorials/Group-Policy-Security-Filtering.html"&gt;http://www.windowsnetworking.com/articles_tutorials/Group-Policy-Security-Filtering.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;James&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://www.block.net.au/aggbug.aspx?PostID=32" width="1" height="1"&gt;</description><category domain="http://www.block.net.au/blogs/james/archive/tags/Group+Policy/default.aspx">Group Policy</category></item><item><title>Active Directory Sites and Services</title><link>http://www.block.net.au/blogs/james/archive/2008/05/27/active-directory-sites-and-services.aspx</link><pubDate>Wed, 28 May 2008 06:29:00 GMT</pubDate><guid isPermaLink="false">39dbe0eb-6070-40b4-bb7b-e3178263f421:30</guid><dc:creator>James.Kindon</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.block.net.au/blogs/james/rsscomments.aspx?PostID=30</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.block.net.au/blogs/james/commentapi.aspx?PostID=30</wfw:comment><comments>http://www.block.net.au/blogs/james/archive/2008/05/27/active-directory-sites-and-services.aspx#comments</comments><description>&lt;p&gt;The long forgotten configuration of Sites and Services - amazing how many times its not actually&amp;nbsp;configured,&amp;nbsp;yet its the crux of Active Directory replication and control of rogue&amp;nbsp;and&amp;nbsp;uncontrolled logon traffic across your WAN links... Figured it would be a good time to document the basics&amp;nbsp;on some of the configuration and why it should be done - not a hugely indepth article, but enough to give some understanding of how it works, why it should&amp;nbsp;be done, and the problems you&amp;nbsp;will get if you&amp;nbsp;don&amp;#39;t do it...&lt;/p&gt;
&lt;p&gt;Enjoy&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.block.net.au/help/AD-Sites/"&gt;http://www.block.net.au/help/AD-Sites/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;James&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://www.block.net.au/aggbug.aspx?PostID=30" width="1" height="1"&gt;</description><category domain="http://www.block.net.au/blogs/james/archive/tags/Sites+and+Services/default.aspx">Sites and Services</category></item><item><title>Active Directory &amp; Why You Should Use It</title><link>http://www.block.net.au/blogs/james/archive/2008/05/25/active-directory-amp-why-you-should-use-it.aspx</link><pubDate>Mon, 26 May 2008 04:44:00 GMT</pubDate><guid isPermaLink="false">39dbe0eb-6070-40b4-bb7b-e3178263f421:28</guid><dc:creator>James.Kindon</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.block.net.au/blogs/james/rsscomments.aspx?PostID=28</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.block.net.au/blogs/james/commentapi.aspx?PostID=28</wfw:comment><comments>http://www.block.net.au/blogs/james/archive/2008/05/25/active-directory-amp-why-you-should-use-it.aspx#comments</comments><description>&lt;p&gt;I banter regularly across forum posts about&amp;nbsp;why Workgroups are Evil and why Active Directory is the source of all things good in the Windows World....Why do like it? Because it makes me happy....I have virtually no overhead adminstration for management of users, groups, Printers, Shares, Drives, Resource Assignment etc....Active Directory is A logical, Efficient and Easy way of making me look good in my job - And the best thing is, you can use it in any environment - from 2 users, to 50,000 users - its perfectly scalable for businesses of all Shapes and Sizes...no limits! All you need is your Server Operating System and away you go...&lt;/p&gt;
&lt;p&gt;Need help convincing management of why you should implement Active Directory - hopefully this will help&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.block.net.au/help/Why-AD/"&gt;http://www.block.net.au/help/Why-AD/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Enjoy - as always, anything i have missed, let me know&lt;/p&gt;
&lt;p&gt;James&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://www.block.net.au/aggbug.aspx?PostID=28" width="1" height="1"&gt;</description><category domain="http://www.block.net.au/blogs/james/archive/tags/Active+Directory/default.aspx">Active Directory</category></item><item><title>D-D-D-DNS In A Windows Domain Environment </title><link>http://www.block.net.au/blogs/james/archive/2008/05/14/d-d-d-dns-in-a-windows-domain-environment.aspx</link><pubDate>Thu, 15 May 2008 00:12:00 GMT</pubDate><guid isPermaLink="false">39dbe0eb-6070-40b4-bb7b-e3178263f421:27</guid><dc:creator>James.Kindon</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.block.net.au/blogs/james/rsscomments.aspx?PostID=27</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.block.net.au/blogs/james/commentapi.aspx?PostID=27</wfw:comment><comments>http://www.block.net.au/blogs/james/archive/2008/05/14/d-d-d-dns-in-a-windows-domain-environment.aspx#comments</comments><description>&lt;p&gt;Domain Naming Service..... Experienced Admins good friend, and the not so experienced or new Admins worst nightmare - Why? Lack of clear cut basic understanding of what DNS does in the Windows Domain World.....So here we go, an article on the basics of DNS and how it functions in a Windows Domain Environment - what you should and shouldn&amp;#39;t do and how simple it is to actually configure &lt;/p&gt;
&lt;p&gt;This is just a small guide that barely touches on what DNS can do, but will get you out of trouble when it comes to setting a basic Windows Domain&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.block.net.au/help/DNS-Basics/"&gt;http://www.block.net.au/help/DNS-Basics/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;James&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://www.block.net.au/aggbug.aspx?PostID=27" width="1" height="1"&gt;</description><category domain="http://www.block.net.au/blogs/james/archive/tags/DNS/default.aspx">DNS</category></item><item><title>Active Directory Design &amp; The Real World</title><link>http://www.block.net.au/blogs/james/archive/2008/05/13/active-directory-design-amp-the-real-world.aspx</link><pubDate>Wed, 14 May 2008 00:35:00 GMT</pubDate><guid isPermaLink="false">39dbe0eb-6070-40b4-bb7b-e3178263f421:26</guid><dc:creator>James.Kindon</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.block.net.au/blogs/james/rsscomments.aspx?PostID=26</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.block.net.au/blogs/james/commentapi.aspx?PostID=26</wfw:comment><comments>http://www.block.net.au/blogs/james/archive/2008/05/13/active-directory-design-amp-the-real-world.aspx#comments</comments><description>&lt;p&gt;Ever been in position where you have to decide between Single Active Directory, Child Domains or Seperate Forest Architectural Designs? So have I...Numerous times...and it can get quite complex without asking the right questions and taking a holistic approach to your company and business structure as a whole....Design goes past simply Active Directory Modelling and what you would like to do, but also calls upon Management and company direction for the future...&lt;/p&gt;
&lt;p&gt;The most confusing parts and the hardest Questions to answer are often &amp;quot;Do I use child domains and if so Why?&amp;quot; or &amp;quot;Do I use a seperate Forest, and again, why?&amp;quot; The reality is, these are indeed hard questions to answer without having the right background information on your company and what they want to do. Decisions can change in a split second depending on a response from a CEO, or Director or any Departmental manager, and if you already have a structure in place, this can be hard to change....&lt;/p&gt;
&lt;p&gt;I have posted an article based on my experience in the AD world when it comes to design, I have worked in numerous companies that have charged me with the role of redesigning and future proofing their AD Architecture, and so far so good, The key point i had to learn very quickly was take a step back from the Technical world and focus just as heavily on the business roles and plans for the future.&lt;/p&gt;
&lt;p&gt;As always, I am open to review and comments, and stress that this is only what i have seen and done in the past, you may find that your needs and questions are different from mine, but i hope that i can pass through some sort of guidance and help with what i have dealt with in both the Technical and Business Worlds&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.block.net.au/help/ad-architecture/"&gt;http://www.block.net.au/help/ad-architecture/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;James&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://www.block.net.au/aggbug.aspx?PostID=26" width="1" height="1"&gt;</description><category domain="http://www.block.net.au/blogs/james/archive/tags/Active+Directory/default.aspx">Active Directory</category><category domain="http://www.block.net.au/blogs/james/archive/tags/Architecture/default.aspx">Architecture</category></item><item><title>Web Based GAL Management? Yes Please!</title><link>http://www.block.net.au/blogs/james/archive/2008/05/12/web-based-gal-management-yes-please.aspx</link><pubDate>Mon, 12 May 2008 23:21:00 GMT</pubDate><guid isPermaLink="false">39dbe0eb-6070-40b4-bb7b-e3178263f421:23</guid><dc:creator>James.Kindon</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.block.net.au/blogs/james/rsscomments.aspx?PostID=23</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.block.net.au/blogs/james/commentapi.aspx?PostID=23</wfw:comment><comments>http://www.block.net.au/blogs/james/archive/2008/05/12/web-based-gal-management-yes-please.aspx#comments</comments><description>&lt;p&gt;I&amp;#39;m not a huge person for putting myself out there and pushing products - but this is one of the exceptions - rDirectory - &lt;/p&gt;
&lt;p&gt;I came across this software when looking for a nicer way to manage the GAL than installing the Support Tools and giving people access to AD....this was fantastic - nice gui, nice functionality, and the best thing is, the community version is free - no strings attached - the enterprise edition pretty much lets loose on every part of AD and your management feel of AD is entirely new - but for the basic tasks such as an HR person managing the GAL....this rocks...&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.namescape.com/"&gt;http://www.namescape.com/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Enjoy&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://www.block.net.au/aggbug.aspx?PostID=23" width="1" height="1"&gt;</description><category domain="http://www.block.net.au/blogs/james/archive/tags/GAL+Management/default.aspx">GAL Management</category></item><item><title>Replacing a Domain Controller</title><link>http://www.block.net.au/blogs/james/archive/2008/05/11/article-1-up.aspx</link><pubDate>Sun, 11 May 2008 22:52:00 GMT</pubDate><guid isPermaLink="false">39dbe0eb-6070-40b4-bb7b-e3178263f421:22</guid><dc:creator>James.Kindon</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.block.net.au/blogs/james/rsscomments.aspx?PostID=22</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.block.net.au/blogs/james/commentapi.aspx?PostID=22</wfw:comment><comments>http://www.block.net.au/blogs/james/archive/2008/05/11/article-1-up.aspx#comments</comments><description>&lt;p&gt;Morning, &lt;/p&gt;
&lt;p&gt;I have posted an article on how to replace a domain controller - a simple concept,&amp;nbsp;yet a fairly unkown process when&amp;nbsp;it actually comes time to do it.....&amp;nbsp;Listed within is step by step guidelines based on the who knows how many times i have done it so feel free to use, abuse, and comment on anything within the article - I am very open to suggestions in improvements and anything thats been missed - but this should get most people through the migration &lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.block.net.au/help/replace-dc/"&gt;http://www.block.net.au/help/replace-dc/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Cheers&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://www.block.net.au/aggbug.aspx?PostID=22" width="1" height="1"&gt;</description><category domain="http://www.block.net.au/blogs/james/archive/tags/Replace+Domain+Controller/default.aspx">Replace Domain Controller</category></item><item><title>Introduction</title><link>http://www.block.net.au/blogs/james/archive/2008/05/10/introduction.aspx</link><pubDate>Sat, 10 May 2008 07:47:00 GMT</pubDate><guid isPermaLink="false">39dbe0eb-6070-40b4-bb7b-e3178263f421:5</guid><dc:creator>James.Kindon</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.block.net.au/blogs/james/rsscomments.aspx?PostID=5</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://www.block.net.au/blogs/james/commentapi.aspx?PostID=5</wfw:comment><comments>http://www.block.net.au/blogs/james/archive/2008/05/10/introduction.aspx#comments</comments><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;So Kieran has been good enough to lend me a space where i can&amp;nbsp;let out all the things that annoy me about the IT world, as well as post some hopefully helpful articles based on my experience in the&amp;nbsp;Directory Services&amp;nbsp;world over the last few years, my aim is to try and tackle some of those common everyday problems and projects that we all face as Admins and Architects, that havent yet been&amp;nbsp;documented clearly....As well as post up some of the things that i have found within Windows Server, Active Directory and Exchange that you may or may not be aware of, little ways of making your life easier along the way&lt;/p&gt;
&lt;p&gt;I am no different to any of you, but i do have a passion for Active Directory, and one for sharing knowledge with others that can benefit from it and make their lives easier in the workplace&lt;/p&gt;
&lt;p&gt;You may know me around the Experts Exchange Site as Jay_Jay70 (terrible name - dont ask) and those that do, will know i have a few pet hates and a few things that i swear by and will stick up for until the end....I am sure you will find them as these postings grow - and i spend more quality time on the phone to India with Symantecs amazing support team etc etc etc....&lt;/p&gt;
&lt;p&gt;Enough for now, this is my first personal blog ever, so play nice and i welcome any feedback on the article and posts that come in the future&lt;/p&gt;
&lt;p&gt;Cheers&lt;/p&gt;
&lt;p&gt;James&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://www.block.net.au/aggbug.aspx?PostID=5" width="1" height="1"&gt;</description></item></channel></rss>