<?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>Tech for the Enterprise</title>
	<atom:link href="http://www.epnetworking.com/blog/index.php?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.epnetworking.com</link>
	<description>Tech Notes for the Enterprise</description>
	<lastBuildDate>Mon, 03 May 2010 16:40:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Moving SharePoint 3.0 from one server to another</title>
		<link>http://www.epnetworking.com/?p=179</link>
		<comments>http://www.epnetworking.com/?p=179#comments</comments>
		<pubDate>Mon, 03 May 2010 16:21:21 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.epnetworking.com/blog/?p=179</guid>
		<description><![CDATA[(Specifically Windows 2003 32-bit to Windows 2008 R2 64-bit) This should also work if you are moving SharePoint from a Windows 2003 32-bit to a Windows 2008 R2 64-bit. This is for a single server farm. The SQL Server can be on a separate machine. Make a batch file. If you are using Windows 2008 [...]]]></description>
			<content:encoded><![CDATA[<p>(Specifically Windows 2003 32-bit to Windows 2008 R2 64-bit)</p>
<p>This should also work if you are moving SharePoint from a Windows 2003 32-bit to a Windows 2008 R2 64-bit. This is for a single server farm. The SQL Server can be on a separate machine.</p>
<p>Make a batch file. <em>If you are using Windows 2008 or 2008 R2 make sure when you run the batch file to right click and click “Run as administrator”</em></p>
<p>********* Start Batch File *************</p>
<p>C:</p>
<p>cd\</p>
<p>cd Program Files\Common Files\Microsoft Shared\web server extensions\12\BIN</p>
<p>stsadm -o backup -url https://sharepoint.domain.com -directory \\192.168.1.50\Wholesite -backupmethod full -percentage 10 -backupthreads 3</p>
<p>pause</p>
<p>********* End Batch File *************</p>
<p>The batch file needs to have the URL of the site you are backing up and a UNC path to the folder that will store the backup files. <em>Note: The UNC path is only needed if the SQL Server is a separate machine from the SharePoint server. Without the UNC path the SQL Server would not know where to put the backups of the databases and thus error.</em></p>
<p>Run the backup batch file.</p>
<p>Install SharePoint on the new server.</p>
<p>When I install SharePoint I use the Advanced Option then I select “Web Front End…” then I click “Install Now” This gives you more options and allows you to select whatever SQL Server you want.</p>
<p>At the end I leave the box checked that says “Run the SharePoint and …” and Click Close.</p>
<p>When the Wizard runs I select “No, I want to create a new server farm”. Now is when you need to put in your database information. The user name needs to be a Windows login not SQL. <em>Note: “If you are using both 64-bit SQL and SharePoint you may need to enable the TCP/IP protocols for the 64-bit the 32-bit seem to be enabled by default. </em></p>
<p>That is it. Now let’s restore.</p>
<p>Create a batch file. <em>If you are using Windows 2008 or 2008 R2 make sure when you run the batch file to right click and click “Run as administrator”</em></p>
<p><em> </em></p>
<p><em>Here you can use a SQL login</em></p>
<p>********* Start Batch File *************</p>
<p>c:</p>
<p>cd\</p>
<p>cd Program Files\Common Files\Microsoft Shared\web server extensions\12\BIN</p>
<p>stsadm -o restore -hostheaderwebapplicationurl http://sharepoint.domain.com -directory \\sharepointtest\restoresp -restoremethod new -username sa -password xxxxxxxx -newdatabaseserver sql2008</p>
<p>pause</p>
<p>********* End Batch File *************</p>
<p><strong>KEY: The SQL Server SQL Service has to be running under an account that has access to the Share where your restore files are located.<br />
</strong><br />
The first thing you will get asked is <strong>“New web application URL”</strong> and it will give you a default option but do not use it. This will be the default from the server you backed up from. The only exception is if this server has the same server name. We want to use something like <a href="https://servername:portnumber">https://servername:portnumber</a>. The S in https is optional and will depend on if you used SSL in the backed up SharePoint site.</p>
<ol>
<li>Then it asks you for the <strong>“New web application name”</strong> I leave this at the default.</li>
<li>Now it asks you for <strong>“New server name”</strong>. This is your SQL server name. You need to enter the name of the SQL server. It can be just the server name or you may need to enter servername\incidentname.</li>
<li> <strong>“New directory name”</strong> I look at the default data path on the SQL server and I use that. Sample “C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\DATA”</li>
<li> <strong>“New database name”</strong> you can select the default.</li>
<li> <strong>“New web application URL”</strong> this is where you want to use the URL of your SharePoint Site. Example <a href="https://sharepoint.domain.com/">https://sharepoint.domain.com/</a> Make sure and use the S if you are using SSL.</li>
<li> <strong>“New web application name”</strong> You can use the Default.</li>
<li> <strong>“New server name”</strong> this is the SQL Server name again. Same as #2</li>
<li><strong>“New directory name”</strong> Same as #3.</li>
<li><strong>“New database name”</strong> You can use the Default.</li>
<li><strong>“New server name”</strong> Same as #2.</li>
<li><strong>“New directory name”</strong> Same as #3.</li>
<li><strong>“New database name”</strong> You can use the Default.</li>
</ol>
<p>Now if you restored a site that uses an SSL Certificate you need to attach that certificate to the IIS web site that was created during the Restore.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.epnetworking.com/?feed=rss2&amp;p=179</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ESX hosts upgraded to ESX 4.0 disconnect in vCenter Server 4.0 with a status of Not Responding</title>
		<link>http://www.epnetworking.com/?p=176</link>
		<comments>http://www.epnetworking.com/?p=176#comments</comments>
		<pubDate>Mon, 12 Apr 2010 17:20:46 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://www.epnetworking.com/blog/?p=176</guid>
		<description><![CDATA[I have a vCenter server 4.0 and I went to upgrade one of my host machines. They were all running 3.5. The upgrade could not have been easier using the vCenter upgrade manager. Once the host rebooted it would not stay connected to the vCenter server. I could not figure it out the remaining 3.5 [...]]]></description>
			<content:encoded><![CDATA[<p>I have a vCenter server 4.0 and I went to upgrade one of my host machines. They were all running 3.5. The upgrade could not have been easier using the vCenter upgrade manager. Once the host rebooted it would not stay connected to the vCenter server. I could not figure it out the remaining 3.5 hosts stayed connected just fine.</p>
<p>Did some searching turned out I needed to add the IP address of the vCenter server into the Managed IP Address field under vCenter Server Settings.</p>
<p>See this article. http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&amp;cmd=displayKC&amp;externalId=1011647</p>
]]></content:encoded>
			<wfw:commentRss>http://www.epnetworking.com/?feed=rss2&amp;p=176</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backing up MS SQL Database with no access to the Phisical Console or RDP to the Server.</title>
		<link>http://www.epnetworking.com/?p=173</link>
		<comments>http://www.epnetworking.com/?p=173#comments</comments>
		<pubDate>Wed, 24 Mar 2010 04:50:53 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[Backup]]></category>

		<guid isPermaLink="false">http://www.epnetworking.com/blog/?p=173</guid>
		<description><![CDATA[Before you do anything you have to create a dumpdevice. Once that is created I was able to backup no problem. This was done with Owner Rights to this Database in MS SQL 2005. EXEC sp_addumpdevice &#8216;disk&#8217;, &#8216;anynameyouwant&#8217;, &#8216;E:\backup\databasename.bak&#8217; BACKUP database databasename TO anynameyouwant GO]]></description>
			<content:encoded><![CDATA[<p>Before you do anything you have to create a dumpdevice. Once that is created I was able to backup no problem. This was done with Owner Rights to this Database in MS SQL 2005.</p>
<p>EXEC sp_addumpdevice &#8216;disk&#8217;, &#8216;anynameyouwant&#8217;, &#8216;E:\backup\databasename.bak&#8217;<br />
BACKUP database databasename TO anynameyouwant<br />
GO</p>
]]></content:encoded>
			<wfw:commentRss>http://www.epnetworking.com/?feed=rss2&amp;p=173</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing sql studio express Error 29506</title>
		<link>http://www.epnetworking.com/?p=170</link>
		<comments>http://www.epnetworking.com/?p=170#comments</comments>
		<pubDate>Wed, 24 Mar 2010 04:33:27 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.epnetworking.com/blog/?p=170</guid>
		<description><![CDATA[I tried to install SQL Studio Express and got and error Error 29506. Windows 7 &#8211; 64 Bit but I do not think that was the issue. I right clicked on the command prompt and clicked run as Administrator and then ran the msi and it ran with no error.]]></description>
			<content:encoded><![CDATA[<p>I tried to install SQL Studio Express and got and error Error 29506. Windows 7 &#8211; 64 Bit but I do not think that was the issue. I right clicked on the command prompt and clicked run as Administrator and then ran the msi and it ran with no error.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.epnetworking.com/?feed=rss2&amp;p=170</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Netflix streaming we want Star Trek</title>
		<link>http://www.epnetworking.com/?p=168</link>
		<comments>http://www.epnetworking.com/?p=168#comments</comments>
		<pubDate>Fri, 12 Feb 2010 06:30:16 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.epnetworking.com/blog/?p=168</guid>
		<description><![CDATA[Netflix we want Star Trek on streaming. You have a lot of great shows on but why don&#8217;t you have Star Trek (any of them). Also you have no way for your customer to tell you what they want via your web site. You should have a feedback page to know what your customers want.]]></description>
			<content:encoded><![CDATA[<p>Netflix we want Star Trek on streaming. You have a lot of great shows on but why don&#8217;t you have Star Trek (any of them). Also you have no way for your customer to tell you what they want via your web site. You should have a feedback page to know what your customers want.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.epnetworking.com/?feed=rss2&amp;p=168</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An I/O operation initiated by the Registry failed unrecoverably. The Registry could not read in, or write out, or flush, one of the files that contain the system&#8217;s image of the Registry.</title>
		<link>http://www.epnetworking.com/?p=163</link>
		<comments>http://www.epnetworking.com/?p=163#comments</comments>
		<pubDate>Mon, 08 Feb 2010 05:51:10 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.epnetworking.com/blog/?p=163</guid>
		<description><![CDATA[As time went on I realized this did not fix the issue. I restored the machine to an earlier vision and then restored the databases and that did work. This is a virtual machine this made restoring very easy. Started getting this error* the other day. I look on line and searched but could not [...]]]></description>
			<content:encoded><![CDATA[<p>As time went on I realized this did not fix the issue. I restored the machine to an earlier vision and then restored the databases and that did work. This is a virtual machine this made restoring very easy.</p>
<p>Started getting this error* the other day. I look on line and searched but could not come up with anything that fixed it.</p>
<p>*An I/O operation initiated by the Registry failed unrecoverably. The Registry could not read in, or write out, or flush, one of the files that contain the system&#8217;s image of the Registry.</p>
<p>Seeing it was an I/O error and I saw something on Microsoft saying something about disk operations I thought why not try a chkdsk /f and sure enough that fixed it. I took a re-boot because this was the system drive but it worked.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.epnetworking.com/?feed=rss2&amp;p=163</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>mapi32.dll is an invalid Extended MAPI Library and Mail is not installed</title>
		<link>http://www.epnetworking.com/?p=157</link>
		<comments>http://www.epnetworking.com/?p=157#comments</comments>
		<pubDate>Thu, 04 Feb 2010 07:00:24 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[Exchange Server]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.epnetworking.com/blog/?p=157</guid>
		<description><![CDATA[I had a customer that uses Word 2007. They were having a problem when they clicked Send and &#8220;Send as PDF&#8221; and was getting this error &#8220;mapi32.dll is an invalid Extended MAPI Library&#8221; and &#8220;Mail is not installed&#8221;. I could not figure it out. Finally I got to another computer in the office and compared [...]]]></description>
			<content:encoded><![CDATA[<p>I had a customer that uses Word 2007. They were having a problem when they clicked Send and &#8220;Send as PDF&#8221; and was getting this error &#8220;mapi32.dll is an invalid Extended MAPI Library&#8221; and &#8220;Mail is not installed&#8221;. I could not figure it out.</p>
<p>Finally I got to another computer in the office and compared the mapi32.dll files. They both had Office 2007. They were quite different  in size so I renamed the mapi32.dll on the machine throwing the error and copied over the mapi32.dll from the second computer and after that it worked fine.</p>
<p>Before I copied the mapi32.dll I also installed &#8220;<a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=4d951911-3e7e-4ae6-b059-a2e79ed87041&amp;displaylang=en">2007 Microsoft Office Add-in: Microsoft Save as PDF or XPS</a>&#8221; but I do not think I really needed to do that.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.epnetworking.com/?feed=rss2&amp;p=157</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Invalid LBAI Ghost HP 6735B</title>
		<link>http://www.epnetworking.com/?p=139</link>
		<comments>http://www.epnetworking.com/?p=139#comments</comments>
		<pubDate>Sat, 30 Jan 2010 16:41:45 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.epnetworking.com/blog/?p=139</guid>
		<description><![CDATA[I&#8217;ve been beating my head against the wall on this one for 2 days now. In case any of you have this same issue I will document what I did. I was setting up to image about 30 HP6735B machines and after I would image one I kept getting an Invalid LBAI when I rebooted. [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been beating my head against the wall on this one for 2 days now. In case any of you have this same issue I will document what I did.</p>
<p>I was setting up to image about 30 HP6735B machines and after I would image one I kept getting an Invalid LBAI when I rebooted. Normally I would simply run gdisk32 /mbr and that would fix it. Now I did not set up the master machine as this was from a customer but as I investigated I finally figured out they had changed the BIOS setting for the Disk. The reason they did this is XP does not support the AMD SATA AHCI Controller unless you press F6 during install and add the AMD SATA AHCI Controller Driver. This is a pain to do because you need to have a floppy so it was easier for them to just change the BIOS.</p>
<p>Generally if you have this error you can just use gdisk or gdisk32 /mbr and that will fix it. Sometimes you will also have to use the switch /p that would be after the /mbr. Example: (gdisk32.exe 1 /mbr /p). The 1 stands for the disk number.</p>
<p>But in the HP 6735B it did not do it. So here is what I did to fix it.</p>
<p>First thing the configuration:<br />
HP 6735B<br />
Windows XP SP 3<br />
Symantec GhostCast Server 11.5.0.2113</p>
<p>First thing you need to do is change the Bios.<br />
See image below.<br />
System Configuration / Device Configuration / SATA Device Mode.<br />
Select IDE then Save, also click, File (on the left), Changes &amp; Exit</p>
<p>Then you still need to run: gdisk32 1 /mbr /p</p>
<p>I also ran the ghostWalker to change the SID. This is really not needed if you are going to join these machines to a Domain but I do it anyway. What I did is create a BATCH file that I run after the ghosting is done. I called it walker.bat and here are the lines:</p>
<p>gdisk32.exe 1 /mbr /p<br />
GhWalk32.exe /BV=1:1 /CN=&#8221;ELM-&lt;RANDOM_HEX&gt;&#8221; /SURE</p>
<div id="attachment_143" class="wp-caption alignnone" style="width: 160px"><a href="http://www.epnetworking.com/blog/wp-content/uploads/2010/01/photo4.jpg" target="_blank"><img class="size-thumbnail wp-image-143" title="Bios" src="http://www.epnetworking.com/blog/wp-content/uploads/2010/01/photo1-150x150.jpg" alt="Invalid LBAI " width="150" height="150" /></a><p class="wp-caption-text">BIOS Screen Shot</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.epnetworking.com/?feed=rss2&amp;p=139</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Is it possible to &#8220;power off&#8221; a suspended VM? Workstation</title>
		<link>http://www.epnetworking.com/?p=137</link>
		<comments>http://www.epnetworking.com/?p=137#comments</comments>
		<pubDate>Fri, 29 Jan 2010 16:56:28 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://www.epnetworking.com/blog/?p=137</guid>
		<description><![CDATA[Is it possible to &#8220;power off&#8221; a suspended VM Workstation? Yes. I had this problem when I tried to resume a suspended VM on Workstation 6.5 and it kept getting an error. I knew there was nothing going on when I suspended it so I decided to just power it down. Well, there is no [...]]]></description>
			<content:encoded><![CDATA[<p>Is it possible to &#8220;power off&#8221; a suspended VM Workstation? Yes. I had this problem when I tried to resume a suspended VM on Workstation 6.5 and it kept getting an error. I knew there was nothing going on when I suspended it so I decided to just power it down. Well, there is no option for that.</p>
<p>What you have to do is go into the folder that contains the VM and delete or as I did rename the .vmss files. If you rename them make sure the name change is in or after the extension. Example: myvmfile.vmss.old. This essentially pulls the plug on the power. You should be able to boot up your VM now.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.epnetworking.com/?feed=rss2&amp;p=137</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google leaves ATT out in the rain with Nexus One.</title>
		<link>http://www.epnetworking.com/?p=133</link>
		<comments>http://www.epnetworking.com/?p=133#comments</comments>
		<pubDate>Wed, 06 Jan 2010 17:31:19 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[Google Apps]]></category>
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.epnetworking.com/blog/?p=133</guid>
		<description><![CDATA[Google just released their new phone the &#8220;Nexus One&#8221;. Seems like it is compatible or will be shortly with all major networks except AT&#038;T. Verizon will be coming soon and it is unclear if it will work with Sprint or not. Actually if you just want to use the phone for voice calls and maybe [...]]]></description>
			<content:encoded><![CDATA[<p>Google just released their new phone the &#8220;Nexus One&#8221;. Seems like it is compatible or will be shortly with all major networks except AT&#038;T. Verizon will be coming soon and it is unclear if it will work with Sprint or not. Actually if you just want to use the phone for voice calls and maybe use EDGE it will work fine but NO 3G data on AT&#038;T. Who wants that? </p>
<p>Well then again who would want AT&#038;T if you could get the phone on Verizon&#8217;s network anyway. </p>
<p>http://www.google.com/support/android/bin/answer.py?answer=166507</p>
]]></content:encoded>
			<wfw:commentRss>http://www.epnetworking.com/?feed=rss2&amp;p=133</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
