<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/wordpress-mu-1.2.1" -->
<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/"
	>

<channel>
	<title>Network Administrator Knowledgebase</title>
	<link>http://itknowledgeexchange.techtarget.com/network-administrator</link>
	<description></description>
	<pubDate>Thu, 15 May 2008 01:55:25 +0000</pubDate>
	<generator>http://wordpress.org/?v=wordpress-mu-1.2.1</generator>
	<language>en</language>
			<item>
		<title>BGP</title>
		<link>http://itknowledgeexchange.techtarget.com/network-administrator/bgp/</link>
		<comments>http://itknowledgeexchange.techtarget.com/network-administrator/bgp/#comments</comments>
		<pubDate>Thu, 15 May 2008 01:55:25 +0000</pubDate>
		<dc:creator>Michael Khanin</dc:creator>
		
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/network-administrator/bgp/</guid>
		<description><![CDATA[BGP is the protocol that binds the Internet together. It is what sends  one packet across the globe in a few milliseconds and allows you to send email,  . Typically, you will see Cisco routers that will handle this sort of heavy  lifting and that is the IOS that we will review [...]]]></description>
			<content:encoded><![CDATA[<p><strong>BGP</strong> is the protocol that binds the Internet together. It is what sends  one packet across the globe in a few milliseconds and allows you to send email,  . Typically, you will see Cisco routers that will handle this sort of heavy  lifting and that is the IOS that we will review briefly.</p>
<p><strong>ASN</strong> –  <em>Starting point</em><br />
In order to have a BGP connection you will need to  have an ASN(Autonomous System Number). You can get one of these through ARIN  (American Registry for Internet Numbers). BGP uses ASN&#8217;s like VLAN id&#8217;s or a  higher level view of subnetting. There are private ASN&#8217;s if you are planning on  using BGP for internal purposes only. The private BPG range is AS64512 through  to AS65535.</p>
<p><strong>IOS</strong> – <em>Configuration info</em><br />
Here is the basic  output of two connections to two different autonomous systems from one Cisco  router.</p>
<p class="code">router bgp 64512<br />
no synchronization<br />
bgp  log-neighbor-changes<br />
bgp dampening<br />
network 3.3.3.0<br />
neighbor 1.1.1.1  remote-as AS64513<br />
neighbor 1.1.1.1 description Provider 1 &gt;&gt;Provider 1  Support Line&lt;&lt;<br />
neighbor 1.1.1.1 password 7 09823490822093482F<br />
neighbor 1.1.1.1 update-source Loopback1<br />
neighbor 1.1.1.1 version 4<br />
neighbor 1.1.1.1 route-map Provider1 out<br />
neighbor 2.2.2.2 remote-as  AS64514<br />
neighbor 2.2.2.2 description Provider 2 &gt;&gt;Provider 2 Support  Line&lt;&lt;<br />
neighbor 2.2.2.2 password 7 09823490822093482F<br />
neighbor  2.2.2.2 update-source Loopback2<br />
neighbor 2.2.2.2 version 4<br />
neighbor  2.2.2.2 weight 50<br />
Let&#8217;s walk through the configuration a bit. Here  are the same commands but with comments added in at various places</p>
<p>!  This line is telling the BGP router which ASN it should advertise.<br />
! A Cisco  BGP router can only administer one ASN at a time.<br />
router bgp 64512</p>
<p class="code">
! Log the changes when the neighbor goes up and down.<br />
!  This way you can see if the other BGP router that you are peering with is  stable.<br />
bgp log-neighbor-changes</p>
<p>! This is the network that you are  advertising via BGP<br />
network 3.3.3.0<br />
! This is the ASN of your ISP or  peered BGP network.<br />
neighbor 1.1.1.1 remote-as AS64513<br />
! While you don&#8217;t  technically need this line it is important that you use it<br />
! for your own  clarification<br />
neighbor 1.1.1.1 description Provider 1 &gt;&gt;Provider 1  Support Line&lt;&lt;<br />
! Encrypted password for transferring your BGP data  back and forth with your peer.<br />
! Encrypting your BGP data will ensure that  no one hijacks you routers.<br />
neighbor 1.1.1.1 password 7 0934099082282F8234<br />
! Using a loop back interface will ensure that the BGP peer always sees one<br />
! interface that is in the network that you are advertising as being up.<br />
! This will always keep the peering with your ISP up.<br />
neighbor 1.1.1.1  update-source Loopback1<br />
! The version of BGP that you are using. Version 4  is the most widely used and most recent.<br />
neighbor 1.1.1.1 version 4<br />
neighbor 1.1.1.1 route-map Provider1 out<br />
As a final note, BGP  is a powerful protocol with lots of features and options. However, most ISP’s  don’t support the full suite of options that BGP provides so don’t expect to use  all of them in order to shape your traffic.</p>
]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/network-administrator/bgp/feed/</wfw:commentRss>
		</item>
		<item>
		<title>iSCSI in VMWare ESX 3</title>
		<link>http://itknowledgeexchange.techtarget.com/network-administrator/iscsi-in-vmware-esx-3/</link>
		<comments>http://itknowledgeexchange.techtarget.com/network-administrator/iscsi-in-vmware-esx-3/#comments</comments>
		<pubDate>Thu, 15 May 2008 01:54:21 +0000</pubDate>
		<dc:creator>Michael Khanin</dc:creator>
		
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/network-administrator/iscsi-in-vmware-esx-3/</guid>
		<description><![CDATA[iSCSI has become a very popular way of having shared storage among  several physical or virtual computers. The benefits of shared storage are even  greater when combined with the abilities of VMWare such as  VMotion, High Availability and Distributed Resource  Scheduler.
Below are the basic (and I do emphasize basic) to  [...]]]></description>
			<content:encoded><![CDATA[<p><strong>iSCSI </strong>has become a very popular way of having shared storage among  several physical or virtual computers. The benefits of shared storage are even  greater when combined with the abilities of <strong>VMWare</strong> such as  <strong>VMotion</strong>, <strong>High Availability</strong> and <strong>Distributed Resource  Scheduler</strong>.</p>
<p>Below are the basic (and I do emphasize basic) to  configuring iSCSI storage with VMWare 3.0. Like any shared storage  infrastructure there are a number of possible methods and structures that could  change the way that iSCSI is installed and used.</p>
<p><strong>Step 1</strong> - Add in  extra Service Console and iSCSI VMKernal<br />
The service console and VMKernal  need to be on the same physical NIC on the ESX server. The IP’s for these  services need to be on the same subnet as the iSCSI storage device. The pictures  below outline the end-result if your iSCSI VLAN were to be 192.168.4.0/24. Note  that the service console that you is shown below is the second and therefore  additional service console. The original stays unchanged.</p>
<p>Sample  Configuration Page</p>
<p><img src="http://thesystemadministrator.com/images/stories/iSCSI_VMWARE_P1.jpg" align="bottom" border="0" hspace="0" />Sample End Result</p>
<p><img src="http://thesystemadministrator.com/images/stories/iSCSI_VMWARE_P2.jpg" align="bottom" border="0" hspace="0" /></p>
<p><strong>Step 2</strong> - Allow iSCSI traffic through the firewall<br />
The Software  iSCSI Client for ESX needs to be allowed through the firewall which is located  under the security profile section. If you don&#8217;t do this then you will not be  able to use the service. I found this interface “tricky” to use. Sometimes I  would make changes and they wouldn&#8217;t take effect until the server was rebooted.<br />
<img src="http://thesystemadministrator.com/images/stories/iSCSI_VMWARE_P3.jpg" align="bottom" border="0" hspace="0" /></p>
<p><strong>Step 3</strong> - Enable Software Initiator Properties<br />
The iSCSI storage  adapter needs to be configured. Find the newly created iSCSI Software Adapter on  the Storage Adapters tab you will need to:</p>
<ol>
<li>Open the properties</li>
<li>Configure and subsequently enable the iSCSI Initiator</li>
<li>On the Dynamic Discovery tab you can add in the iSCSI server IP</li>
</ol>
<p><img src="http://thesystemadministrator.com/images/stories/iSCSI_VMWARE_P4.jpg" border="0" hspace="0" /><br />
<strong>Step 4</strong> - Create iSCSI targert on iSCSI device<br />
This will depend  on your iSCSI hardware as to how you do this. Each manufacturer has their own  way of doing this.</p>
<p><strong>Step 5</strong> - Add LUN to target</p>
<p>Links:<br />
VMWare&#8217;s design guide for iSCSI – short but good:  http://www.vmware.com/pdf/vi3_iscsi_cfg.pdf<br />
Really good blog post by David  Davis about VMWare and iSCSI:<br />
http://www.petri.co.il/connect-vmware-esx-server-iscsi-san-openflier.htm</p>
]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/network-administrator/iscsi-in-vmware-esx-3/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Download Windows XP Service Pack 3 Now!</title>
		<link>http://itknowledgeexchange.techtarget.com/network-administrator/download-windows-xp-service-pack-3-now/</link>
		<comments>http://itknowledgeexchange.techtarget.com/network-administrator/download-windows-xp-service-pack-3-now/#comments</comments>
		<pubDate>Thu, 01 May 2008 01:54:00 +0000</pubDate>
		<dc:creator>Michael Khanin</dc:creator>
		
		<category><![CDATA[Microsoft Windows]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/network-administrator/download-windows-xp-service-pack-3-now/</guid>
		<description><![CDATA[It is available on public Windows Update Servers:http://download.windowsupdate.com/msdownload/update/software/svpk/2008/04/windowsxp-kb936929-sp3-x86-enu_c81472f7eeea2eca421e116cd4c03e2300ebfde4.exe
]]></description>
			<content:encoded><![CDATA[<p>It is available on public <strong>Windows Update Servers</strong>:<a href="http://download.windowsupdate.com/msdownload/update/software/svpk/2008/04/windowsxp-kb936929-sp3-x86-enu_c81472f7eeea2eca421e116cd4c03e2300ebfde4.exe" target="_blank">http://download.windowsupdate.com/msdownload/update/software/svpk/2008/04/windowsxp-kb936929-sp3-x86-enu_c81472f7eeea2eca421e116cd4c03e2300ebfde4.exe</a></p>
]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/network-administrator/download-windows-xp-service-pack-3-now/feed/</wfw:commentRss>
		</item>
		<item>
		<title>System center Virtual Machine Manager 2008 Beta</title>
		<link>http://itknowledgeexchange.techtarget.com/network-administrator/system-center-virtual-machine-manager-2008-beta/</link>
		<comments>http://itknowledgeexchange.techtarget.com/network-administrator/system-center-virtual-machine-manager-2008-beta/#comments</comments>
		<pubDate>Thu, 01 May 2008 01:52:16 +0000</pubDate>
		<dc:creator>Michael Khanin</dc:creator>
		
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/network-administrator/system-center-virtual-machine-manager-2008-beta/</guid>
		<description><![CDATA[At the Management Summit in Vegas, Microsoft announced the beta of System Center Virtual Machine Manager 2008. This version can manage Hyper-V hosts!
It should be available on connect.
Microsoft has announced the formal name and beta availability of System Center Virtual Machine Manager 2008, a member of the System Center suite of server management products. The [...]]]></description>
			<content:encoded><![CDATA[<p>At the <strong>Management Summit </strong>in Vegas, <strong>Microsoft</strong> announced the <strong>beta</strong> of <strong>System Center Virtual Machine Manager 2008</strong>. This version can manage <strong>Hyper-V</strong> hosts!</p>
<p>It should be available on connect.</p>
<p><em>Microsoft has announced the formal name and beta availability of System Center Virtual Machine Manager 2008, a member of the System Center suite of server management products. The announcements came April 29 at the Microsoft Management Summit in Las Vegas, which showcased the beta of the System Center Virtual Machine Manager 2008 (VMM), managing both Hyper-V and VMware virtual infrastructure. Additional functionality new to this version of VMM includes Performance and Resource Optimization (Pro), which dynamically tunes virtual infrastructure, simplified virtual host cluster support, and other improvements and enhancements.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/network-administrator/system-center-virtual-machine-manager-2008-beta/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Configuring the Firewall on Server Core for Remote Management</title>
		<link>http://itknowledgeexchange.techtarget.com/network-administrator/configuring-the-firewall-on-server-core-for-remote-management/</link>
		<comments>http://itknowledgeexchange.techtarget.com/network-administrator/configuring-the-firewall-on-server-core-for-remote-management/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 15:35:27 +0000</pubDate>
		<dc:creator>Michael Khanin</dc:creator>
		
		<category><![CDATA[Microsoft Windows]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/network-administrator/configuring-the-firewall-on-server-core-for-remote-management/</guid>
		<description><![CDATA[On all Windows 2008 Editions, the firewall is on by default. This true in  a Server Core as well. Many IT Pro loves a new Windows 2008  Server Core Edition, but friendly speaking manage it from a command line for  many Administrators is not so easy. Yes, We can manage Windows 2008 [...]]]></description>
			<content:encoded><![CDATA[<p>On all <strong>Windows 2008 Editions</strong>, the firewall is on by default. This true in  a <strong>Server Core</strong> as well. Many <strong>IT Pro </strong>loves a new <strong>Windows 2008  Server Core Edition</strong>, but friendly speaking manage it from a command line for  many Administrators is not so easy. Yes, We can manage Windows 2008 Core  remotely, but we have to configure Firewall on the Core box. There are then  three scenarios for remote management via <strong>MMC</strong>:</p>
<ol>
<li><strong>Server Roles</strong> – when a server role is installed, the appropriate ports  are opened to allow the role to function as well as to allow remote management,  so no additional configuration is required. Using the Remote Server  Administration Tools (RSAT) feature on a full server installation, we can  install just the MMC snap-ins for a role and use them to remotely manage the  role on Server Core.</li>
<li><strong>Domain joined</strong> – Once domain joined, the firewall profile is changed  to the domain profile which allows remote management. Again, no additional  configuration is required.</li>
<li><strong>Workgroup server</strong> – This is the scenario (<em>is most popular when IT  Pro demonstrates or tests a new Windows 2008</em>) in which We may need to make  firewall configuration changes to allow remote management. If we want all remote  <span class="blackClass">managements</span> to <span class="blackClass">work,</span> we can use: </li>
</ol>
<p class="code"><em>Netsh advfirewall firewall set rule group=“remote  administration” new enable=yes</em></p>
<p>However, there may be  situations where we only want to allow certain <strong>MMCs</strong> to connect for remote  administration. Not every MMC snap-in has a firewall group, here are those that  do:</p>
<p class="MsoNormal"><span></span></p>
<table class="MsoTableGrid" border="1" cellpadding="0" cellspacing="0">
<tr>
<td valign="top" width="295">
<p class="MsoNormal"><strong><span>MMC  Snap-in</span></strong></p>
</td>
<td valign="top" width="295">
<p class="MsoNormal"><strong><span>Rule  Group</span></strong></p>
</td>
</tr>
<tr>
<td valign="top" width="295">
<p class="MsoNormal"><span><font size="3">Event  Viewer</font></span></p>
</td>
<td valign="top" width="295">
<p class="MsoNormal"><span><font size="3">Remote Event Log  Management</font></span></p>
</td>
</tr>
<tr>
<td valign="top" width="295">
<p class="MsoNormal"><span><font size="3">Services</font></span></p>
</td>
<td valign="top" width="295">
<p class="MsoNormal"><span><font size="3">Remote Service  Management</font></span></p>
</td>
</tr>
<tr>
<td valign="top" width="295">
<p class="MsoNormal"><span><font size="3">Shared  Folders</font></span></p>
</td>
<td valign="top" width="295">
<p class="MsoNormal"><span><font size="3">File and Printer  Sharing</font></span></p>
</td>
</tr>
<tr>
<td valign="top" width="295">
<p class="MsoNormal"><span><font size="3">Task  Scheduler</font></span></p>
</td>
<td valign="top" width="295">
<p class="MsoNormal"><span><font size="3">Remote Scheduled Tasks  Management</font></span></p>
</td>
</tr>
<tr>
<td valign="top" width="295">
<p class="MsoNormal"><span><font size="3">Reliability and  Performance </font></span></p>
</td>
<td valign="top" width="295">
<p class="MsoNormal"><span><font size="3">“Performance Logs and  Alerts” and “File and Printer Sharing”</font></span></p>
</td>
</tr>
<tr>
<td valign="top" width="295">
<p class="MsoNormal"><span><font size="3">Disk  Management</font></span></p>
</td>
<td valign="top" width="295">
<p class="MsoNormal"><span><font size="3">Remote Volume  Management</font></span></p>
</td>
</tr>
<tr>
<td valign="top" width="295">
<p class="MsoNormal"><span><font size="3">Windows Firewall with  Advanced Security</font></span></p>
</td>
<td valign="top" width="295">
<p class="MsoNormal"><span><font size="3">Windows Firewall Remote  Management</font></span></p>
</td>
</tr>
</table>
<p>On the Server Core box we can enable these by running:</p>
<p class="code"><em>Netsh advfirewall firewall set rule group=“&lt;rule  group&gt;” new enable=yes </em></p>
<p>Where <em>&lt;rule group&gt;</em> is  the name in the above table.</p>
<p>Not every MMC snap-in has a rule group to  allow it access through the firewall.</p>
<p><strong>MMC Snap-ins that Require  Addition Configuration </strong><br />
In addition to allowing the MMC snap-ins through  the firewall, the following MMC snap-ins require additional configuration:</p>
<ul>
<li><strong>Device Manager</strong><br />
To allow Device Manager to connect, you must first  enable the “Allow remote access to the PnP interface” policy</p>
<ol>
<li>On a Windows Vista or full Server installation, start the Group Policy  Object MMC snap-in</li>
<li>Connect to the Server Core installation</li>
<li>Navigate to Computer Configuration\Administrative Templates\Device  Installation</li>
<li>Enable “Allow remote access to the PnP interface”</li>
<li>Restart the Server Core installation</li>
</ol>
</li>
</ul>
<ul>
<li><strong>Disk Management</strong><br />
You must first start the Virtual Disk Service  (VDS) on the Server Core installation</li>
</ul>
<ul>
<li><strong>IPSec Mgmt</strong><br />
On the Server Core installation you must first enable  remote management of IPSec. This can be done using the scregedit.wsf script:</li>
</ul>
<p class="code"><em>Cscript \windows\system32\scregedit.wsf /im  1/span&gt;</em></p>
]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/network-administrator/configuring-the-firewall-on-server-core-for-remote-management/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What already installed on Windows 2008 Core</title>
		<link>http://itknowledgeexchange.techtarget.com/network-administrator/what-already-installed-on-windows-2008-core/</link>
		<comments>http://itknowledgeexchange.techtarget.com/network-administrator/what-already-installed-on-windows-2008-core/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 22:27:07 +0000</pubDate>
		<dc:creator>Michael Khanin</dc:creator>
		
		<category><![CDATA[Microsoft Windows]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/network-administrator/what-already-installed-on-windows-2008-core/</guid>
		<description><![CDATA[By running Oclist on Windows 2008 Server Core we can get full information what Installed and what Not installed on server.
The full list is very long and not comfortable for reading. If you don’t want to include all of the many &#8220;Not Installed&#8221; options in the output of Oclist, run:
Oclist &#124; find &#8220;  Installed&#8221;
]]></description>
			<content:encoded><![CDATA[<p>By running<strong> Oclist</strong> <strong>on Windows 2008 Server Core</strong> we can get full information what <strong>Installed </strong>and what <strong>Not installed </strong>on server.<br />
The full list is very long and not comfortable for reading. If you don’t want to include all of the many &#8220;<strong>Not Installed</strong>&#8221; options in the output of <strong>Oclist</strong>, run:</p>
<p><em>Oclist | find &#8220;  Installed&#8221;</em></p>
]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/network-administrator/what-already-installed-on-windows-2008-core/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to figure out what OS Edition is running on Server 2008?</title>
		<link>http://itknowledgeexchange.techtarget.com/network-administrator/how-to-figure-out-what-os-edition-is-running-on-server-2008/</link>
		<comments>http://itknowledgeexchange.techtarget.com/network-administrator/how-to-figure-out-what-os-edition-is-running-on-server-2008/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 22:03:30 +0000</pubDate>
		<dc:creator>Michael Khanin</dc:creator>
		
		<category><![CDATA[Microsoft Windows]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/network-administrator/how-to-figure-out-what-os-edition-is-running-on-server-2008/</guid>
		<description><![CDATA[We can do this via WMI.
The command line is:
wmic path  win32_operatingsystem get OperatingSystemSKU / value
The value Should be  converted to hex and then mapped to the list at:
http://msdn2.microsoft.com/en-us/library/ms724358. aspx
]]></description>
			<content:encoded><![CDATA[<p>We can do this via <strong>WMI</strong>.<br />
The command line is:<br /><span class="redClass"><br />
<em>wmic</em></span><em> path  win32_operatingsystem get OperatingSystemSKU /<span class="greenClass"> value</span></em><br />
The value Should be  converted to hex and then mapped to the list at:<br />
<a href="http://msdn2.microsoft.com/en-us/library/ms724358. aspx" target="_blank">http://msdn2.microsoft.com/en-us/library/ms724358.<span class="redClass"> aspx</span></a></p>
]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/network-administrator/how-to-figure-out-what-os-edition-is-running-on-server-2008/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Running Windows 2008 Server core under VMware</title>
		<link>http://itknowledgeexchange.techtarget.com/network-administrator/running-windows-2008-server-core-under-vmware/</link>
		<comments>http://itknowledgeexchange.techtarget.com/network-administrator/running-windows-2008-server-core-under-vmware/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 17:06:15 +0000</pubDate>
		<dc:creator>Michael Khanin</dc:creator>
		
		<category><![CDATA[Microsoft Windows]]></category>

		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/network-administrator/running-windows-2008-server-core-under-vmware/</guid>
		<description><![CDATA[One of the first software that I install on any OS under VMWARE is  VMware Tools. The most important benefit is the VMware enhanced  video and mouse drivers. On VMware ESX, VMWare tools must be installed to  get the NIC working. The Installation process of VMware Tools on  Windows 2008 Server [...]]]></description>
			<content:encoded><![CDATA[<p>One of the first software that I install on any <strong>OS</strong> under <strong>VMWARE</strong> is  <strong>VMware Tools</strong>. The most important benefit is the <strong>VMware</strong> enhanced  video and mouse drivers. On <strong>VMware ESX</strong>, VMWare tools must be installed to  get the NIC working. The Installation process of <strong>VMware Tools</strong> on  <strong>Windows 2008 Server Core</strong> edition is a bit tricky. As far as you remember,  <strong>Server Core</strong> it is a <strong>command line only</strong> version of <strong>Windows Server  2008</strong>. VMWareTools is a GUI installation so this is not an option for  <strong>Server Core</strong>. Today we have few workarounds <img src='http://itknowledgeexchange.techtarget.com/network-administrator/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> &#8230;<strong>Solution 1 </strong></p>
<ul>
<li>Log into your Windows Server 2008 Server Core VM with an admin account</li>
<li>From the VMware Workstation console, click the VM menu Install VMware Tools.  This will mount the VMware Tools disk (Windows. iso file) in the virtual CD-Rom  drive.</li>
<li>Switch to drive D: (or whatever drive is your CD drive)</li>
<li>Type Setup and press Enter</li>
<li>Click Install to the VMware informational message. The VMware Tools will  begin to setup.</li>
<li>Click Next to install</li>
<li>Click Next to perform a Typical setup</li>
<li>Click Install to begin the installation</li>
<li>When you see the status stall, open Task Manager (Ctrl-Alt-Ins Start Task  Manager)</li>
<li>Click the Applications tab, select the RUNDLL process and choose End Task</li>
<li>Close Task Manager and click OK to any error messages. Setup will continue  as normal.</li>
<li>Click Finish and click Yes to restart the server</li>
<li>When Windows Server 2008 Server Core starts up, it will be in 640×480  resolution. As a quick solution, read my &#8220;<a href="http://thesystemadministrator.com/the_system_administrator/tools/coreconfigurator_-_graphic_management_tool_for_windows_server_2008_core/" target="_blank"><strong>CoreConfigurator - Graphic Management Tool  for Windows Server  2008 Core</strong></a>&#8221; post to explain how to configure the resolution in <strong>Windows  2008 Server Core</strong> :).</li>
</ul>
<p><strong>Solution 2</strong></p>
<ul>
<li>First step, On Server Core we need to mount the VMware Tools ISO by  selecting the “Install VMware Tools” option:</li>
<li>From a command line run the following command:
<p class="code">msiexec / i “d:\VMware Tools. msi” / qn</p>
</li>
</ul>
<p><strong>Solution 3 </strong><br />
This solution a specially for <strong>VMware ESX  Server</strong>. The workaround is to transfer <strong>VMWareTools </strong>(<em>contained in a  file called <strong>windows.iso</strong></em>) from your <strong>ESX server</strong> to a local  drive. Use <strong>Virtual Center</strong> to mount the <strong>windows.iso</strong> file as a CDROM  drive in the Windows 2008 Server Core VM. The exact location of driver is:  <strong><em>\ Program Files\VMWare\VMWare Tools\Drivers\VMXNet\w2k </em></strong>of the  <strong>windows.iso</strong> file. The command used to install the drivers is:</p>
<p class="code"><em>C:\Windows\System32&gt; pnputil - i -a vmxnet. inf  </em></p>
<p>You should get the following message:</p>
<p class="code"><em>Microsoft PnP Utility<br />
Processing inf : vmxnet. inf<br />
Successfully installed the driver on a device on the system.<br />
Driver  package added successfully.<br />
Published name : oem2. inf<br />
</em><br />
The  next step is to set “<em><strong>Hardware Acceleration</strong></em>” for the display  adaptor to “<strong>Full</strong>”. Well, you have to use <strong>Registry</strong>.<br />
Launch the  Registry editor on the command prompt by typing “ regedit”. Then you navigate  to:</p>
<p class="code"><em>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Video\{81E0A29D-B654-4848-9421-BEA1C8A6F938}000<br />
</em></p>
<p>The long number is a GUID and it will be different on your  system. You should find <em><strong>Acceleration.Level</strong></em> key in the  <em><strong>0000</strong></em> folder. To be sure that you&#8217;ve found a correct key check in  the same location key &#8220;<em><strong>Device Description</strong></em>&#8221; with a value  &#8220;<em><strong>VMware SVGA II</strong></em>&#8220;. You have to set the  <em><strong>Acceleration.Level</strong></em> key value to 0.</p>
<p>Exit from registry and  reboot your server.</p>
<p>The END :).</p>
]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/network-administrator/running-windows-2008-server-core-under-vmware/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CoreConfigurator - Graphic Management Tool for Windows Server 2008 Core</title>
		<link>http://itknowledgeexchange.techtarget.com/network-administrator/coreconfigurator-graphic-management-tool-for-windows-server-2008-core/</link>
		<comments>http://itknowledgeexchange.techtarget.com/network-administrator/coreconfigurator-graphic-management-tool-for-windows-server-2008-core/#comments</comments>
		<pubDate>Sun, 20 Apr 2008 19:31:22 +0000</pubDate>
		<dc:creator>Michael Khanin</dc:creator>
		
		<category><![CDATA[Microsoft Windows]]></category>

		<category><![CDATA[Networking]]></category>

		<category><![CDATA[Windows Security]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/network-administrator/coreconfigurator-graphic-management-tool-for-windows-server-2008-core/</guid>
		<description><![CDATA[The default management for Windows Server 2008 Core is the command line.  Yes, the main powerful of Windows Server Core becomes available when  using such an approach, but sometimes it&#8217;s not so user friendly. This is why  I&#8217;ve been asking so many times if exist anything more graphic :). Yes, one of [...]]]></description>
			<content:encoded><![CDATA[<p>The default management for <strong>Windows Server 2008 Core </strong>is the command line.  Yes, the main powerful of <strong>Windows Server Core </strong>becomes available when  using such an approach, but sometimes it&#8217;s not so user friendly. This is why  I&#8217;ve been asking so many times if exist anything more graphic :). Yes, one of  the first recommendations to work and manage <strong>Windows 2008 Server Core </strong>is  to use <strong>MMC</strong> from a remote machine, but <strong>MMC</strong> cannot do everything. Of  course to allow work with remote tools this tool should be allowed passage  through the firewall packages Server Core. In addition, this is for many more  difficult than editing the registry. <img src='http://itknowledgeexchange.techtarget.com/network-administrator/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> Therefore, I would like to have a simple  graphical tool for configuring local system. The task of developing such an  interface is complicated by that the Server Core has a limited set of graphics  API, this is a reason why so beautiful MMC doesn&#8217;t work on it.</p>
<p>So, if  Microsoft has not established such utilities anybody else did this. Look at the  utility <strong>CoreConfigurator</strong> developed by <strong>Guy Teverovsky</strong>, <em>MVP from  Israel</em>.</p>
<p>This is what it can:</p>
<ul>
<li>Product Activation Product Activation</li>
<li>Configuration of display resolution Configuration of display resolution</li>
<li>Clock and time zone configuration Clock and time zone configuration</li>
<li>Remote Desktop configuration Remote Desktop configuration</li>
<li>Management of local user accounts (creation, deletion, group membership,  passwords) Management of local user accounts (creation, deletion, group  membership, passwords)</li>
<li>Firewall configuration Firewall configuration</li>
<li>WinRM configuration WinRM configuration</li>
<li>IP configuration IP configuration</li>
<li>Computer name and domain/workgroup membership Computer name and domain /  workgroup membership</li>
<li>Installation of Server Core features/roles Installation of Server Core  features / roles</li>
</ul>
<p>To setup this utility use MSI package and then run  the CoreConfigurator. exe file. The following interface will appear.</p>
<p align="center"><img src="http://thesystemadministrator.com/images/stories/Windows_2008_Core/coreconfigurator_1.jpg" align="bottom" border="0" hspace="0" /></p>
<p>Just in case, it&#8217;s not necessary to install  CoreConfigurator, we can simply copy its files into the system. The result will  be the same. The video settings look like this:</p>
<p align="center"><img src="http://thesystemadministrator.com/images/stories/Windows_2008_Core/coreconfigurator_2.jpg" align="bottom" border="0" hspace="0" /></p>
<p>Setting &#8220;Show window content while  dragging&#8221; may very markedly improve display window objects, if you work with the  server via terminal connection. Please note that the setting affects only the  current user. According to the picture, to change the time zone, the developer  did not reinvent the wheel, and just call to standard <strong>timedate.cpl  </strong></p>
<p align="center"><img src="http://thesystemadministrator.com/images/stories/Windows_2008_Core/coreconfigurator_3.jpg" align="bottom" border="0" hspace="0" /></p>
<p>Remote Desktop Options look like this:</p>
<p align="center"><img src="http://thesystemadministrator.com/images/stories/Windows_2008_Core/coreconfigurator_4.jpg" align="bottom" border="0" hspace="0" /></p>
<p>All would be good, but in this version you  still have to allow RDP connections in the firewall manually using netsh.  Hopefully, in the next version this will be fixed. Management of local users and  groups is done through the following windows.</p>
<p align="center"><img src="http://thesystemadministrator.com/images/stories/Windows_2008_Core/coreconfigurator_5.jpg" align="bottom" border="0" hspace="0" /></p>
<p align="center"><img src="http://thesystemadministrator.com/images/stories/Windows_2008_Core/coreconfigurator_6.jpg" align="bottom" border="0" hspace="0" /></p>
<p>Installation of Roles and Features became a  more visual :</p>
<p align="center"><img src="http://thesystemadministrator.com/images/stories/Windows_2008_Core/coreconfigurator_7.jpg" align="bottom" border="0" hspace="0" /></p>
<p>Instantly, functionality of firewall  management is very limited, but at least he had already to incorporate all  necessary rules for the remote control.</p>
<p align="center"><img src="http://thesystemadministrator.com/images/stories/Windows_2008_Core/coreconfigurator_8.jpg" align="bottom" border="0" hspace="0" /></p>
<p>Configuring your network interfaces  habitually looks fairly.</p>
<p align="center"><img src="http://thesystemadministrator.com/images/stories/Windows_2008_Core/coreconfigurator_9.jpg" align="bottom" border="0" hspace="0" /></p>
<p>To set the activation key and Activate the  OS is also very simple and all this done via GUI <img src='http://itknowledgeexchange.techtarget.com/network-administrator/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p align="center"><img src="http://thesystemadministrator.com/images/stories/Windows_2008_Core/coreconfigurator_10.jpg" align="bottom" border="0" hspace="0" /></p>
<p>In addition, let me show winrm interface,  interface to rename computer and join it to domain:</p>
<p align="center"><img src="http://thesystemadministrator.com/images/stories/Windows_2008_Core/coreconfigurator_11.jpg" align="bottom" border="0" hspace="0" /></p>
<p align="center"><img src="http://thesystemadministrator.com/images/stories/Windows_2008_Core/coreconfigurator_12.jpg" align="bottom" border="0" hspace="0" /></p>
<p>It is understandable that  <strong>CoreConfigurator</strong> is not officially supported by Microsoft. Many IT  professionals probably have any doubts, whether to trust manufacturer of the  software. As usual choice, set its server utility or not is up to you. <img src='http://itknowledgeexchange.techtarget.com/network-administrator/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/network-administrator/coreconfigurator-graphic-management-tool-for-windows-server-2008-core/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PowerShell - The Next Step for System Administrator</title>
		<link>http://itknowledgeexchange.techtarget.com/network-administrator/powershell-the-next-step-for-system-administrator/</link>
		<comments>http://itknowledgeexchange.techtarget.com/network-administrator/powershell-the-next-step-for-system-administrator/#comments</comments>
		<pubDate>Sun, 20 Apr 2008 16:29:49 +0000</pubDate>
		<dc:creator>Michael Khanin</dc:creator>
		
		<category><![CDATA[Microsoft Windows]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/network-administrator/powershell-the-next-step-for-system-administrator/</guid>
		<description><![CDATA[I&#8217;ve just come back from Seattle where I have been on Global MVP Summit  2008.
Microsoft spoke about new technologies, about new products,  about plans and visions.
I have been on many sessions, and I&#8217;d like to  say what I see as of the highest importance.
If you are Network or  Systems Administrator and [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just come back from Seattle where I have been on <strong>Global MVP Summit  2008</strong>.<br />
<strong>Microsoft </strong>spoke about new technologies, about new products,  about plans and visions.</p>
<p>I have been on many sessions, and I&#8217;d like to  say what I see as of the highest importance.</p>
<p>If you are Network or  <strong>Systems Administrator</strong> and dealing with Windows environment, you SHOULD  start to learn and using <strong>PowerShell</strong> (if you already not doing so :)). An  absolutely every new program / system from <strong>Microsoft </strong>supports  <strong>PowerShell</strong>, I remember just one exception, <strong>Windows 2008 Core</strong>. We  cannot install and use <strong>PowerShell</strong> on <strong>Windows 2008 Core</strong> box, but we  can manage and control <strong>Windows 2008 Core </strong>by using <strong>PowerShell</strong> on  other <strong>Windows 2008</strong>, <strong>Vista</strong> or even <strong>Windows XP</strong> machines.</p>
<p>I&#8217;ll try to speak more about <strong>PowerShell</strong> and I&#8217;ll show how  <strong>PowerShell </strong>can serve us in our daily stuff. If you want to do any script  and consider about doing it in <strong>PowerShell</strong>, <strong>VB</strong> or simple Batch  file, I suggest to do it in PowerShell. I&#8217;ll try to assist you as much as I  could.</p>
]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/network-administrator/powershell-the-next-step-for-system-administrator/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
