<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/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>Ilija Lazarov: Thrill 2 Xplore</title><link>http://blogs.msdn.com/ilija/default.aspx</link><description>This is Ilija's journey to the known,  unknown and beoynd.</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>Server Core installation Option of Windows Server 2008 and AD DS role enablement</title><link>http://blogs.msdn.com/ilija/archive/2008/05/25/server-core-installation-option-of-windows-server-2008-and-ad-ds-role-enablement.aspx</link><pubDate>Sun, 25 May 2008 23:04:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8551465</guid><dc:creator>ilija</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/ilija/comments/8551465.aspx</comments><wfw:commentRss>http://blogs.msdn.com/ilija/commentrss.aspx?PostID=8551465</wfw:commentRss><wfw:comment>http://blogs.msdn.com/ilija/rsscomments.aspx?PostID=8551465</wfw:comment><description>&lt;P&gt;I started to install a new environment for customer demonstrations today and decided also&amp;nbsp;to upgrade existing one to Windows Server 2008. My environment has always included multiple virtual machines (dc, db and&amp;nbsp;moss) and basic demos I have been showing using my laptop with Windows Server 2008 as host operating system and MOSS included. Now I wanted to be able to show demos also in virtual Windows Server&amp;nbsp;2008 based environment.&lt;BR&gt;The following is a short story of how did I put up the first server in the environment.&lt;/P&gt;
&lt;P&gt;The first thing to install was a server with Active Directory Domain Services (AD DS) using the core option of Windows Server 2008 Standard edition. I downloaded the x64 media from MSDN and created a new virtual machine for it&amp;nbsp;using Hyper-V RC1. You need to have RC1 or later for Hyper-V to be able to use Integration disk for guest operating system. &lt;BR&gt;The first part was like installing full version but after the first boot I had to log in with administrator account, change the password from blank into something else and I saw only the command prompt for managing the server.&lt;/P&gt;
&lt;P&gt;First thing I did was I installed Hyper-V Integration services to enable e.g. virtual NIC. I did it by selecting Inser Integration Services Setup Disk from the Hyper-V Virtual Machine Connection.&lt;/P&gt;
&lt;P&gt;After having bits intalled I renamed the server. To do it I needed to find out the current name using the hostname command&amp;nbsp;and after that&amp;nbsp;I renamed the server.&lt;BR&gt;- hostname &lt;BR&gt;- netdom renamecomputer &amp;lt;Current Computer Name&amp;gt; /NewName:dc&lt;BR&gt;- shutdown /r /t 0&lt;/P&gt;
&lt;P&gt;To install AD DS&amp;nbsp;I needed to&amp;nbsp;set static&amp;nbsp;static ip&amp;nbsp; and dns settings.&amp;nbsp;First I needed to check the index number of my NIC to be used.&amp;nbsp;&lt;BR&gt;- netsh interface ipv4 show interfaces&lt;BR&gt;- netsh interface ipv4 set address name="&amp;lt;index number of the nic&amp;gt;" source=static address=10.0.0.10 mask=255.255.255.0 gateway=10.0.0.1&lt;BR&gt;- netsh interface ipv4 add dnsserver name="&amp;lt;index number of the nic&amp;gt;" address=10.0.0.10 index=1&lt;/P&gt;
&lt;P&gt;Before running the dcpromo I started the&amp;nbsp;DNS role for the server&lt;BR&gt;- start /w ocsetup DNS-Server-Core-Role&lt;/P&gt;
&lt;P&gt;Then&amp;nbsp;I created an&amp;nbsp;unattend&amp;nbsp;file&amp;nbsp;into c:\temp directory to be used when running dcpromo. I did basic setting in the file and set the forest and domain to be on Windows Server 2003 compatible mode.&lt;BR&gt;- md c:\temp&lt;BR&gt;- notepad c:\temp\unattend_ad.txt&lt;BR&gt;---clip content of the unattend file below---&lt;BR&gt;[DCINSTALL] &lt;BR&gt;InstallDNS=yes&lt;BR&gt;NewDomain=forest&lt;BR&gt;NewDomainDNSName=&amp;lt;the FQDN for the domain like mydomain.local&amp;gt;&lt;BR&gt;DomainNetBiosName=&amp;lt;the netbios name for the domain like mydomain&amp;gt;&lt;BR&gt;SiteName=Default-First-Site-Name&lt;BR&gt;ReplicaOrNewDomain=domain&lt;BR&gt;ForestLevel=2 &lt;BR&gt;DomainLevel=2&lt;BR&gt;DatabasePath="%systemroot%\NTDS" &lt;BR&gt;LogPath="%systemroot%\NTDS" &lt;BR&gt;RebootOnCompletion=yes&lt;BR&gt;SYSVOLPath="%systemroot%\SYSVOL" &lt;BR&gt;SafeModeAdminPassword=&amp;lt;your safe mode admin pwd&amp;gt;&lt;BR&gt;---clip content of the unattend file above---&lt;BR&gt;- dcpromo /unattend:c:\temp\unattend_ad.txt&lt;BR&gt;- shutdown /r /t 0&lt;/P&gt;
&lt;P&gt;&lt;BR&gt;I enabled remote desktop for remote administration&lt;BR&gt;- cscript C:\Windows\System32\Scregedit.wsf /ar 0&lt;/P&gt;
&lt;P&gt;I disabled the&amp;nbsp;firewall to be able to connect to the server from remote. I could have also done it&amp;nbsp;using rules but I will have ISA also in the environment to protect the servers.&lt;BR&gt;- netsh firewall set opmode disable&lt;/P&gt;
&lt;P&gt;I activatited the server&amp;nbsp;with MAK key&lt;BR&gt;- slmgr.vbs -ipk mak_key&lt;BR&gt;- slmgr.vbs -ato&lt;/P&gt;
&lt;P&gt;I changed&amp;nbsp;time settings and time zone&lt;BR&gt;- control timedate.cpl&lt;/P&gt;
&lt;P&gt;I enabled&amp;nbsp;autoupdates to update the server and afterwards I will disable the feature&lt;BR&gt;- cscript c:\windows\system32\scregedit.wsf /au 4&lt;BR&gt;- (cscript c:\windows\system32\scregedit.wsf /au 1) will disable autoupdate&lt;/P&gt;
&lt;P&gt;I&amp;nbsp;joined a full Windows Server 2008 guest into the domain (the future db server)&amp;nbsp;and was able to do rest of the settings like for DNS, checking out event log&amp;nbsp;etc using the GUI.&lt;/P&gt;
&lt;P mce_keep="true"&gt;Am I missing something?&lt;/P&gt;
&lt;P&gt;ilija&lt;BR&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8551465" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/ilija/archive/tags/English/default.aspx">English</category><category domain="http://blogs.msdn.com/ilija/archive/tags/Windows+Server+2008/default.aspx">Windows Server 2008</category></item><item><title>IW architecture is not only about MOSS</title><link>http://blogs.msdn.com/ilija/archive/2008/04/28/iw-architecture-is-not-only-about-moss.aspx</link><pubDate>Tue, 29 Apr 2008 00:09:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8436170</guid><dc:creator>ilija</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/ilija/comments/8436170.aspx</comments><wfw:commentRss>http://blogs.msdn.com/ilija/commentrss.aspx?PostID=8436170</wfw:commentRss><wfw:comment>http://blogs.msdn.com/ilija/rsscomments.aspx?PostID=8436170</wfw:comment><description>&lt;P&gt;Sure we all know that but do we really take all the aspect into account? As we all know MOSS can be used as a platform for internal and external services which require different approaches. At the same time we must think about availability and/or scalability of the service. Security is required piece always in the picture. How about services around MOSS like instant messaging, ecommerce, backend integration, management etc.&lt;/P&gt;
&lt;P&gt;Please find below pictures of the logical topology for Information Worker services and also sample topologies for MOSS based collaboration sites with simple and failover scenarios. You can also utilize the &lt;A class="" href="http://sharepoint.microsoft.com/blogs/ilija/Attachments/MOSS_base_architecture.vsd" mce_href="http://sharepoint.microsoft.com/blogs/ilija/Attachments/MOSS_base_architecture.vsd"&gt;picture set&lt;/A&gt; using the original Visio format. Pictures can be used as a starting point for discussions regarding MOSS implementations with customers or integrators.&lt;/P&gt;
&lt;P&gt;Enjoy.&lt;/P&gt;
&lt;P&gt;&lt;A class="" title="Logical topology" href="http://sharepoint.microsoft.com/blogs/ilija/Attachments/MOSS_base_architecture_page_1.jpg" target=_blank mce_href="http://sharepoint.microsoft.com/blogs/ilija/Attachments/MOSS_base_architecture_page_1.jpg"&gt;&lt;IMG src="http://sharepoint.microsoft.com/blogs/ilija/Attachments/MOSS_base_architecture_page_1_small.jpg" mce_src="http://sharepoint.microsoft.com/blogs/ilija/Attachments/MOSS_base_architecture_page_1_small.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Logical topology with required and optional services for implementation and web zone for external facing services.&lt;/P&gt;
&lt;P&gt;&lt;A class="" title="Simple implementation" href="http://sharepoint.microsoft.com/blogs/ilija/Attachments/MOSS_base_architecture_page_2.jpg" target=_blank mce_href="http://sharepoint.microsoft.com/blogs/ilija/Attachments/MOSS_base_architecture_page_2.jpg"&gt;&lt;IMG title="Simple MOSS install" style="WIDTH: 465px; HEIGHT: 342px" height=342 alt="Simple MOSS install" src="http://sharepoint.microsoft.com/blogs/ilija/Attachments/MOSS_base_architecture_page_2_small.jpg" width=465 mce_src="http://sharepoint.microsoft.com/blogs/ilija/Attachments/MOSS_base_architecture_page_2_small.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Simple implementation of the environment.&lt;/P&gt;
&lt;P&gt;&lt;A class="" title="Failover implementation" href="http://sharepoint.microsoft.com/blogs/ilija/Attachments/MOSS_base_architecture_page_3.jpg" target=_blank mce_href="http://sharepoint.microsoft.com/blogs/ilija/Attachments/MOSS_base_architecture_page_3.jpg"&gt;&lt;IMG title="Intall with failover" style="WIDTH: 465px; HEIGHT: 342px" height=342 alt="Intall with failover" src="http://sharepoint.microsoft.com/blogs/ilija/Attachments/MOSS_base_architecture_page_3_small.jpg" width=465 mce_src="http://sharepoint.microsoft.com/blogs/ilija/Attachments/MOSS_base_architecture_page_3_small.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Implementation with scalability and availability in mind&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8436170" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/ilija/archive/tags/MOSS/default.aspx">MOSS</category><category domain="http://blogs.msdn.com/ilija/archive/tags/English/default.aspx">English</category><category domain="http://blogs.msdn.com/ilija/archive/tags/Architecture/default.aspx">Architecture</category></item><item><title>MOSS is a Solution platform</title><link>http://blogs.msdn.com/ilija/archive/2008/04/20/moss-is-a-solution-platform.aspx</link><pubDate>Mon, 21 Apr 2008 01:58:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8413072</guid><dc:creator>ilija</dc:creator><slash:comments>3</slash:comments><comments>http://blogs.msdn.com/ilija/comments/8413072.aspx</comments><wfw:commentRss>http://blogs.msdn.com/ilija/commentrss.aspx?PostID=8413072</wfw:commentRss><wfw:comment>http://blogs.msdn.com/ilija/rsscomments.aspx?PostID=8413072</wfw:comment><description>&lt;P&gt;I confront customers almost daily asking me the question what MOSS, Microsoft Office SharePoint Server, is for and what can you do with it out of the box (OOB). Most of you have probably seen the following pie with feature areas of MOSS at some point.&lt;/P&gt;
&lt;P&gt;&lt;IMG height=364 alt="MOSS feature areas" src="http://sharepoint.microsoft.com/blogs/ilija/Attachments/MOSS_pie.jpg" width=357 mce_src="http://sharepoint.microsoft.com/blogs/ilija/Attachments/MOSS_pie.jpg"&gt;&lt;/P&gt;
&lt;P&gt;It gives you some idea, but to embrace the platform I decided to take it to the next level and invite you to collaborate. The &lt;A href="http://sharepoint.microsoft.com/blogs/ilija/pages/mosssolutionplatform.aspx" mce_href="http://sharepoint.microsoft.com/blogs/ilija/pages/mosssolutionplatform.aspx"&gt;MOSS mindmap&lt;/A&gt;&amp;nbsp;based version will start the life cycle today and continue in various ways.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://sharepoint.microsoft.com/blogs/ilija/pages/mosssolutionplatform.aspx" target=_blank mce_href="http://sharepoint.microsoft.com/blogs/ilija/pages/mosssolutionplatform.aspx"&gt;&lt;IMG height=333 alt="MOSS Mindmap" src="http://sharepoint.microsoft.com/blogs/ilija/Attachments/MOSS_Solution_platform.gif" width=377 border=0 mce_src="http://sharepoint.microsoft.com/blogs/ilija/Attachments/MOSS_Solution_platform.gif"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;I will blog about each feature during the next weeks and months to ensure common understanding how I see the platform with OOB features and what it takes to deploy MOSS successfully. Feel free to suggest new topics and content into topics like partners, ISVs etc. This is just the beginning of the drill-down. Stay tuned.&lt;/P&gt;
&lt;P&gt;ilija&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8413072" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/ilija/archive/tags/MOSS/default.aspx">MOSS</category><category domain="http://blogs.msdn.com/ilija/archive/tags/English/default.aspx">English</category></item></channel></rss>