<?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>Take A Byte &#187; Tips</title>
	<atom:link href="http://www.takeabyte.com.au/category/tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.takeabyte.com.au</link>
	<description>Helping the IT Crowd</description>
	<lastBuildDate>Fri, 17 Jul 2009 10:43:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>WdsClient: An error occurred while obtaining an IP address from the DHCP server. Please check to ensure that there is an operational DHCP Server on this network segment.</title>
		<link>http://www.takeabyte.com.au/2009/07/wdsclient-an-error-occured-while-obtaining-an-ip-address-from-the-dhcp-server/</link>
		<comments>http://www.takeabyte.com.au/2009/07/wdsclient-an-error-occured-while-obtaining-an-ip-address-from-the-dhcp-server/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 10:33:01 +0000</pubDate>
		<dc:creator>John Tran</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Troubleshooting]]></category>

		<guid isPermaLink="false">http://www.takeabyte.com.au/?p=320</guid>
		<description><![CDATA[If you get the error following error when you boot into WinPE using Windows Deployment Services (WDS).  
WdsClient: An error occurred while obtaining an IP address from the DHCP server. Please check to ensure that there is an operationgal DHCP Server on this network segment.
To resolve this issue you will need to enable spanning-tree [...]]]></description>
			<content:encoded><![CDATA[<p>If you get the error following error when you boot into WinPE using Windows Deployment Services (WDS).  </p>
<p><em><strong>WdsClient: An error occurred while obtaining an IP address from the DHCP server. Please check to ensure that there is an operationgal DHCP Server on this network segment.</strong></em></p>
<p>To resolve this issue you will need to enable <strong>spanning-tree portfast</strong> on your switch.  To do so you can run the following commands on your cisco switch.</p>
<p>Switch1(config)#interface &#8220;interface name&#8221;<br />
Switch1(config)#spanning-tree portfast </p>
<p>To enable spanning-tree portfast on all interface use the following command</p>
<p>Switch1(config)#spanning-tree portfast default</p>
<p><strong>Note:  This will enable portfast by default on all interfaces.  You will have to disable portfast explicitly on switched ports eading to hubs, switches and bridges as they may create temporary bridging loops.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.takeabyte.com.au/2009/07/wdsclient-an-error-occured-while-obtaining-an-ip-address-from-the-dhcp-server/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Adding drivers to wim file</title>
		<link>http://www.takeabyte.com.au/2009/07/adding-drivers-to-wim-file/</link>
		<comments>http://www.takeabyte.com.au/2009/07/adding-drivers-to-wim-file/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 10:43:15 +0000</pubDate>
		<dc:creator>John Tran</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Troubleshooting]]></category>

		<guid isPermaLink="false">http://www.takeabyte.com.au/?p=314</guid>
		<description><![CDATA[If  you&#8217;re trying to set up a boot wim file for Windows Deployment Services or creating a WIN PE boot on a USB key then you may find that you will need to install the corrent NIC drivers for it to work.
Here are some steps that you can follow if you need to inject drivers [...]]]></description>
			<content:encoded><![CDATA[<p>If  you&#8217;re trying to set up a boot wim file for Windows Deployment Services or creating a WIN PE boot on a USB key then you may find that you will need to install the corrent NIC drivers for it to work.</p>
<p>Here are some steps that you can follow if you need to inject drivers to your wim file</p>
<p>1.  Install Microsoft Core XML Services (MSXML) 6.0, <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=993c0bcf-3bcf-4009-be21-27e85e1857b1&amp;displaylang=en">download link</a><br />
2.  Install Windows Automated Installation Kit (WAIK), <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=C7D4BC6D-15F3-4284-9123-679830D629F2&amp;displaylang=en">download link</a><br />
3.  Once you have installed Windows Automated Installation Kit, navigate to the C:\Program Files\Windows AIK\Tools\x86 folder, right-click wimfltr.inf and Select Install.<br />
4.  Create a folder D:\VistaMount<br />
5.  Run cmd &#8211; command line<br />
6.  cd C:\Program Files\Windows AIK\Tools\x86<br />
7. Mount wim file with the following command, <em><strong>imagex /mountrw &#8220;source location\wim file&#8221; 2 d:\vistamount</strong></em></p>
<p><strong>Note:  Make sure that you use the 2 in the command to specify the second image of the boot.wim file.  If you don&#8217;t, you may recieve problems with detecting the network drivers when booting into WinPE.  This is a known problem with the new HP DC7900 Desktops.</strong></p>
<p>8.  Download the drivers from the manufacturer and extract them to D:\drivers<br />
9.  Run cmd &#8211; command line<br />
10.   cd C:\Program Files\Windows AIK\Tools\PETools<br />
11.   <em><strong>peimg /inf=&#8221;driver source location\inf file&#8221; d:\vistamount</strong></em><br />
12.  unmount and save changes to wim file with following command, <em><strong>imagex /unmount /commit d:\vistamount</strong></em></p>
<p><strong>Note: Make sure you use the /commit parameter to ensure that changes are saved to the wim file.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.takeabyte.com.au/2009/07/adding-drivers-to-wim-file/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Free PDF Converter</title>
		<link>http://www.takeabyte.com.au/2008/11/free-pdf-converter/</link>
		<comments>http://www.takeabyte.com.au/2008/11/free-pdf-converter/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 14:41:16 +0000</pubDate>
		<dc:creator>John Tran</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.takeabyte.com.au/?p=196</guid>
		<description><![CDATA[For those that need to convert their word documents but do not have Acrobat installed, then here is a handy website that allows you to do it without any software being installed.
PDF Converter
]]></description>
			<content:encoded><![CDATA[<p>For those that need to convert their word documents but do not have Acrobat installed, then here is a handy website that allows you to do it without any software being installed.</p>
<p><a href="http://convertpdftoword.net/">PDF Converter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.takeabyte.com.au/2008/11/free-pdf-converter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change IP address and DNS of computer from command prompt</title>
		<link>http://www.takeabyte.com.au/2008/11/how-to-change-ip-address-and-dns-of-computer-from-command-prompt/</link>
		<comments>http://www.takeabyte.com.au/2008/11/how-to-change-ip-address-and-dns-of-computer-from-command-prompt/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 16:13:22 +0000</pubDate>
		<dc:creator>John Tran</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.takeabyte.com.au/?p=188</guid>
		<description><![CDATA[Here is the command for those who want to change the IP address and DNS of a computer via command prompt.
Command to change IP 
netsh int ip set address &#8220;local area connection&#8221; static 192.168.0.101 255.255.255.0 192.168.0.254 1. 
Command to change DNS
netsh int ip set dns &#8220;local area connection&#8221; static 192.168.0.254 primary 
Both commands are assuming [...]]]></description>
			<content:encoded><![CDATA[<p>Here is the command for those who want to change the IP address and DNS of a computer via command prompt.</p>
<p><strong>Command to change IP </strong></p>
<p><em>netsh int ip set address &#8220;local area connection&#8221; static 192.168.0.101 255.255.255.0 192.168.0.254 1. </em></p>
<p><strong>Command to change DNS</strong></p>
<p><em>netsh int ip set dns &#8220;local area connection&#8221; static 192.168.0.254 primary </em></p>
<p>Both commands are assuming that you want to change your IP to 192.168.0.101, your default gateway is 192.168.1.254, your DNS is 192.168.0.254 and the name of the network adapter is &#8216;local area connection.&#8217; You will need to change these values according to your own network.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.takeabyte.com.au/2008/11/how-to-change-ip-address-and-dns-of-computer-from-command-prompt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
