<?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"
	>

<channel>
	<title>Networknet.nl</title>
	<atom:link href="http://www.networknet.nl/apps/wp/feed" rel="self" type="application/rss+xml" />
	<link>http://www.networknet.nl/apps/wp</link>
	<description>By virtualized IT Engineer</description>
	<pubDate>Thu, 13 Nov 2008 19:52:22 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<item>
		<title>VMWare Workstation: high-speed USB 2.0 support vm</title>
		<link>http://www.networknet.nl/apps/wp/archives/640</link>
		<comments>http://www.networknet.nl/apps/wp/archives/640#comments</comments>
		<pubDate>Sat, 08 Nov 2008 19:29:10 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
		
		<category><![CDATA[Workstation]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp/?p=640</guid>
		<description><![CDATA[Since couple days I am running Windows XP x64 and I wanted to scan some documents with my old Canon Lide scanner which is connected by USB cable on the host. Drivers are not supported in Windows XP x64 and therefore I am using a Windows XP 32bit virtual machine.
After connecting the scanner in Removable [...]]]></description>
			<content:encoded><![CDATA[<p>Since couple days I am running Windows XP x64 and I wanted to scan some documents with my old Canon Lide scanner which is connected by USB cable on the host. Drivers are not supported in Windows XP x64 and therefore I am using a Windows XP 32bit virtual machine.</p>
<p>After connecting the scanner in Removable Devices I get the message below: </p>
<ul>
<li>Please upgrade your virtual machine to enable high-speed USB 2.0 support for the device &#8220;Canon CanoScan&#8221;. An attempt will be made to connect this device to the best available host controller. This may result in an undefined behavior for this device<img src="http://farm4.static.flickr.com/3246/3012797589_00a9d3d3fc_o.png" alt="VMWare-Workstation-Warning-USB-2." /></li>
</ul>
<div>I did some research on the Internet and found some interesting posts. It looks like the virtual machine has an older version which does not support USB 2.0.  I opened the vmx file with <a href="http://www.networknet.nl/apps/wp/tools" target="_blank">Notepad++</a>and checked the virtualHW.version which was set to 4; the virtual machine has VMWare Workstation 4 hardware compatibility version set.</div>
<div><img src="http://farm4.static.flickr.com/3228/3013633656_f9d7955bfb_o.png" alt="VMWare-Workstation-hwversion" /></div>
<div>There are two ways to change the version:</div>
<div>
<ul>
<li>Shutdown the virtual machine; click VM in the menu and choose &#8220;Upgrade or Change version&#8221;; follow the wizard and choose VMWare Workstation 6/6.5</li>
<li>Open the vmx file in Notepad and change virtualHW.version = &#8220;6.0&#8243; and add ehci.present = &#8220;TRUE&#8221; to the configuration.</li>
</ul>
<div>Getting done is how the virtualization at least helps me here. Scanner is now working.</div>
<div><img src="http://farm4.static.flickr.com/3150/3013666082_31bb9a3328_o.png" alt="VMWare-Workstation-Canon" /></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/640/feed</wfw:commentRss>
		</item>
		<item>
		<title>Webdesign: CSS Min-Height for Internet Explorer</title>
		<link>http://www.networknet.nl/apps/wp/archives/637</link>
		<comments>http://www.networknet.nl/apps/wp/archives/637#comments</comments>
		<pubDate>Fri, 07 Nov 2008 10:43:58 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
		
		<category><![CDATA[Projects]]></category>

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

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

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

		<category><![CDATA[internet explorer]]></category>

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

		<category><![CDATA[min-height]]></category>

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

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp/archives/637</guid>
		<description><![CDATA[This morning I started creating and testing a new CSS website template for one of my pending projects. After creating the CSS stylesheet and basic HTML page with DIV&#8217;s my content container and footer are not being displayed as they should. For the content div container I assigned CSS property &#8220;min-height=400px;&#8221;. Using of min height [...]]]></description>
			<content:encoded><![CDATA[<p>This morning I started creating and testing a new CSS website template for one of my pending projects. After creating the CSS stylesheet and basic HTML page with DIV&#8217;s my content container and footer are not being displayed as they should. For the content div container I assigned CSS property &#8220;min-height=400px;&#8221;. Using of min height of 400px the website will have nice overview instead depending on the content I enter in the container. The result:</p>
<p><a href="http://www.networknet.nl/apps/wp/wp-content/uploads/WebdesignCSSMinHeightforInternetExplorer_A5AB/image.png"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="266" alt="image" src="http://www.networknet.nl/apps/wp/wp-content/uploads/WebdesignCSSMinHeightforInternetExplorer_A5AB/image_thumb.png" width="504" border="0"></a> </p>
<p>The screenshot was made in Internet Explorer and I checked all my html and css code and everything looks fine. I opened Firefox and opened same URL and the page was displayed as it should be 400px for the content container ;). I am new in the web devolvement and trying to get the basics but this is one example when working with different browsers. Internet Explorer ignores &#8220;min-height&#8221; and always assign it 8em if the container doesn&#8217;t contain data. To fix this problem you will need to define addition CSS declaration for the container.</p>
<p>&nbsp;</p>
<ul>
<li>div#content {<br />&nbsp;&nbsp; min-height: 400px;<br />}</li>
<li>* html div#content {<br />height: 400px;<br />}</li>
</ul>
<p>or use another solution</p>
<ul>
<li>div#content {<br />&nbsp;&nbsp; min-height: 400px;<br />&nbsp;&nbsp; <strong>height:auto !important!;<br />&nbsp;&nbsp; height:400px;</strong><br />}</li>
</ul>
<p><a href="http://www.networknet.nl/apps/wp/wp-content/uploads/WebdesignCSSMinHeightforInternetExplorer_A5AB/image_3.png"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="266" alt="image" src="http://www.networknet.nl/apps/wp/wp-content/uploads/WebdesignCSSMinHeightforInternetExplorer_A5AB/image_thumb_3.png" width="504" border="0"></a> </p>
<p>Wow this fixed my first problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/637/feed</wfw:commentRss>
		</item>
		<item>
		<title>Tools: ImgBurn on Windows Server 2008</title>
		<link>http://www.networknet.nl/apps/wp/archives/557</link>
		<comments>http://www.networknet.nl/apps/wp/archives/557#comments</comments>
		<pubDate>Thu, 30 Oct 2008 12:11:17 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
		
		<category><![CDATA[Tools]]></category>

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

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

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

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

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

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

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp/?p=557</guid>
		<description><![CDATA[
ImgBurn is a free tool that enables you to burn CD/DVD images with ease. All the latest drives are supported (including booktype / bitsetting on many of the major ones). Advanced functionality can be found in the ImgBurn context menus.
 
ImgBurn supports a wide range of image file formats - including BIN, CUE, DI, DVD, GI, [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" src="http://farm4.static.flickr.com/3045/2986699206_a05558eacd_o.png" alt="ImgBurnLogo" width="256" height="80" /></p>
<p>ImgBurn is a free tool that enables you to burn CD/DVD images with ease. All the latest drives are supported (including booktype / bitsetting on many of the major ones). Advanced functionality can be found in the ImgBurn context menus.</p>
<p><a class="flickr-image" title="ImgBurn1" rel="flickr-mgr" href="http://www.flickr.com/photos/7797777@N07/2986693480/"><img class="flickr-original" longdesc="http://farm4.static.flickr.com/3208/2986693480_a62e5748c6_o.png" src="http://farm4.static.flickr.com/3208/2986693480_bd747d38f5_m.jpg" alt="ImgBurn1" /> </a><a class="flickr-image" title="ImgBurn2" rel="flickr-mgr" href="http://www.flickr.com/photos/7797777@N07/2985837555/"><img class="flickr-original" longdesc="http://farm4.static.flickr.com/3216/2985837555_e40050c4c7_o.png" src="http://farm4.static.flickr.com/3216/2985837555_5ebf1b2703_m.jpg" alt="ImgBurn2" /></a><br />
ImgBurn supports a wide range of image file formats - including BIN, CUE, DI, DVD, GI, IMG, ISO, MDS, NRG and PDI.<br />
ImgBurn supports all the Windows OS&#8217;s - Windows 95, 98, Me, NT4, 2000, XP, 2003, Vista and 2008 (including all the 64-bit versions). If you use Wine, it should also run on Linux and other x86-based Unixes.</p>
<p>If you never heard of this tool than now you should download and install it ;). I am using this tool to burn cd-roms from my Windows Server 2008 Hyver-V whitebox and it works smoothly. Beside all burning features one other which comes handy is to grab a folder and create a ISO file; than mount the ISO file with Hyper-V or ESX virtual machines. I used this feature many times when working in the test and production environments. </p>
<p><a class="flickr-image" title="ImgBurn3" rel="flickr-mgr" href="http://www.flickr.com/photos/7797777@N07/2985837801/"><img class="flickr-original" longdesc="http://farm3.static.flickr.com/2335/2985837801_c22ac19150_o.png" src="http://farm3.static.flickr.com/2335/2985837801_961110c89a_m.jpg" alt="ImgBurn3" /> </a><a class="flickr-image" title="ImgBurn4" rel="flickr-mgr" href="http://www.flickr.com/photos/7797777@N07/2986695274/"><img class="flickr-original" longdesc="http://farm4.static.flickr.com/3021/2986695274_c084d0ca36_o.png" src="http://farm4.static.flickr.com/3021/2986695274_e208e78fbc_m.jpg" alt="ImgBurn4" /></a></p>
<p>Click <a href="http://www.imgburn.com/" target="_blank">here</a> to download the ImgBurn tool.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/557/feed</wfw:commentRss>
		</item>
		<item>
		<title>Tools: visionapp Remote Desktop 2008 Express (vRD 2008)</title>
		<link>http://www.networknet.nl/apps/wp/archives/530</link>
		<comments>http://www.networknet.nl/apps/wp/archives/530#comments</comments>
		<pubDate>Mon, 27 Oct 2008 08:45:26 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
		
		<category><![CDATA[Tools]]></category>

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

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

		<category><![CDATA[remote connection manager]]></category>

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

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp/?p=530</guid>
		<description><![CDATA[ 
vRD 2008 is a tool for the management of remote Windows computers via RDP (Remote Desktop Protocol). vRD is ideal for administrators who need to maintain simultaneous connections to multiple servers. Connection-specific settings and login credentials can be organized in folders and subfolders for quick access.
visionapp Remote Desktop 2008 is currently one of the most [...]]]></description>
			<content:encoded><![CDATA[<p> </p>
<p class="bodytext">vRD 2008 is a tool for the management of remote Windows computers via RDP (Remote Desktop Protocol). vRD is ideal for administrators who need to maintain simultaneous connections to multiple servers. Connection-specific settings and login credentials can be organized in folders and subfolders for quick access.</p>
<p>visionapp Remote Desktop 2008 is currently one of the most popular products in the market of RDP tools. visionapp Remote Desktop 2008 Express (vRD 2008 Express) offers a multiple number of enhancements and new features compared to the freeware version vRD 1.5, such as the extended support of Microsoft Windows Server 2008 and Windows Vista (incl. 64-Bit), an overview on all logged in users and connection history.</p>
<p class="bodytext">Limitations of vRD 2008 Express:</p>
<ul>
<li>up to 15 objects</li>
<li>5 credentials storable</li>
<li>no Database-Modus available</li>
<li>duration is valid until 3-31-2009</li>
</ul>
<p>With some enhancements and limitations the tool is still out there for public. I used the freeware versions before and still like the Office interface. Good opportunity to check the tool yourself before buying it. Looking into the future plans of mRemote and vRD I think I will buy the license somewhere next year ;).</p>
<p>Please register and download the tool from <a href="http://www.visionapp.com/products/visionapp-freeware.html" target="_blank">here</a> if you want to test it.<br />
<img src="http://farm4.static.flickr.com/3174/2977887110_67a089ef7c.jpg" alt="vRD2008-Express" /><br />
Don&#8217;t worry the limitations is working after you start creating the 16th connection:<br />
<a class="flickr-image" title="vRD2008" href="http://www.flickr.com/photos/7797777@N07/2977030063/"><img src="http://farm4.static.flickr.com/3216/2977030063_6164c7fae9_o.png" alt="vRD2008" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/530/feed</wfw:commentRss>
		</item>
		<item>
		<title>Exchange 2007: Services fail to start</title>
		<link>http://www.networknet.nl/apps/wp/archives/509</link>
		<comments>http://www.networknet.nl/apps/wp/archives/509#comments</comments>
		<pubDate>Sun, 26 Oct 2008 16:35:27 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
		
		<category><![CDATA[Exchange 2007]]></category>

		<category><![CDATA[2007.services]]></category>

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

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

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

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

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp/?p=509</guid>
		<description><![CDATA[If you are running a Windows Server 2008 virtual machine with &#8220;AD DS&#8221; Services (Domain Controller) and you installed Exchange 2007 SP1 on the same machine than three services may fail to start. During the boot process of the virtual machine Active Directory Services are not ready and some Exchange 2007 services will fail to [...]]]></description>
			<content:encoded><![CDATA[<p>If you are running a Windows Server 2008 virtual machine with &#8220;AD DS&#8221; Services (Domain Controller) and you installed Exchange 2007 SP1 on the same machine than three services may fail to start. During the boot process of the virtual machine Active Directory Services are not ready and some Exchange 2007 services will fail to start.</p>
<p>Screenshot of the Services console during my troubleshooting actions.</p>
<p><a class="flickr-image" title="phpLMRJYI" href="http://www.flickr.com/photos/7797777@N07/2974242743/"><img src="http://farm4.static.flickr.com/3038/2974242743_a83aa46ec0.jpg" alt="phpLMRJYI" /></a></p>
<p>Microsoft Exchange Information Store, Microsoft Exchange Service Host and Microsoft Exchange System Attendant services are not started. The Startup Type of has been set to Automatic.</p>
<p>The System EventViewer will show the following error events:</p>
<ul>
<li>EventID 7024: The Microsoft Exchange Information Store service terminated with service-specific error 0 (0&#215;0).</li>
<li>EventID 7009: A timeout was reached (30000 milliseconds) while waiting for the Microsoft Exchange Service Host service to connect.</li>
<li>EventID 7000: The Microsoft Exchange Service Host service failed to start due to the following error: The service did not respond to the start or control request in a timely fashion.</li>
<li>EventID 7022: The Microsoft Exchange Transport service hung on starting.</li>
</ul>
<p>
Exchange Management Console message:<br />
</p>
<ul>
<li>ERROR: Could not connect to the Microsoft Exchange Information Store service on server Networknet.nl. One of the following problems may be occurring: 1- The Microsoft Exchange Information Store service is not running. 2- There is no network connectivity to server Networknet.nl. 3- You do not have sufficient permissions to perform this command. The following permissions are required to perform this command: Exchange View-Only Administrator and local administrators group for the target server. 4- Credentials have been cached for an unpriviledged user. Try removing the entry for this server from Stored User Names and Passwords.</li>
</ul>
<p>To fix this problem change the Startup Type of Microsoft Exchange Information Store, Microsoft Exchange Service Host and Microsoft Exchange System Attendant to &#8220;Automatic (Delayed Start)&#8221;</p>
<p><a class="flickr-image" title="phpzDcsBJ" href="http://www.flickr.com/photos/7797777@N07/2975110700/"><img src="http://farm4.static.flickr.com/3182/2975110700_9b5a370f2c.jpg" alt="phpzDcsBJ" /></a></p>
<p> </p>
<p>Reboot the virtual machine again and everything should be started as smooth as you would have two separate virtual machines.</p>
<p>Related links:</p>
<ul>
<li><a href="http://blogs.technet.com/askperf/archive/2008/02/02/ws2008-startup-processes-and-delayed-automatic-start.aspx" target="_blank">WS2008: Startup Processes and Delayed Automatic Start</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/509/feed</wfw:commentRss>
		</item>
		<item>
		<title>PDF: Is there an good alternative for Adobe Reader?</title>
		<link>http://www.networknet.nl/apps/wp/archives/483</link>
		<comments>http://www.networknet.nl/apps/wp/archives/483#comments</comments>
		<pubDate>Sun, 12 Oct 2008 09:09:36 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
		
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp/?p=483</guid>
		<description><![CDATA[The answer is yes  . Foxit Reader is incredibly small and very fast. Foxit Reader is good alternative if you want to have on your system. Foxit Reader 2.3 is just released. The new version 2.3 includes a multimedia player feature allowing Foxit users to not only read PDFs, but to watch and listen [...]]]></description>
			<content:encoded><![CDATA[<p>The answer is yes <img src='http://www.networknet.nl/apps/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . <strong>Foxit Reader</strong> is incredibly small and very fast. Foxit Reader is good alternative if you want to have on your system. Foxit Reader 2.3 is just released. The new version 2.3 includes a multimedia player feature allowing Foxit users to not only read PDFs, but to watch and listen to the audio/video elements coming with PDFs as well.</p>
<p>Foxit Reader is a free PDF document viewer, with incredible small size (only 2.55 M download size), breezing-fast launch speed and rich feature set. Foxit Reader supports Windows Me/2000/XP/2003/Vista (and Windows Server 2008). Its core function is compatible with PDF Standard 1.7.</p>
<p>In the past, you&#8217;ve had to download a huge PDF reader from another software company, go through a lengthy installation process and wait for an annoying splash window to disappear just to open a PDF document.</p>
<p><img src="http://farm4.static.flickr.com/3046/2933272169_4568ef90a9.jpg" alt="FoxIT-Reader-2.3" /></p>
<p>Check out yourself and finally a PDF reader that supports multi-tab browsing when reader diffrent PDF files in one Windows.</p>
<p>Links:</p>
<ul>
<li><a href="http://www.foxitsoftware.com/pdf/reader_2/down_reader.htm" target="_blank">Foxit Reader 2.3 for Windows</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/483/feed</wfw:commentRss>
		</item>
		<item>
		<title>SyncToy2</title>
		<link>http://www.networknet.nl/apps/wp/archives/482</link>
		<comments>http://www.networknet.nl/apps/wp/archives/482#comments</comments>
		<pubDate>Fri, 10 Oct 2008 20:22:18 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
		
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp/?p=482</guid>
		<description><![CDATA[SyncToy 2.0 for Windows is available as a free download from the Microsoft Download Center.
The easy to use, customizable application helps you copy, move, rename, and delete files between folders and computers.
Features:

Dynamic Drive Letter Assignment: Drive letter reassignment will now be detected and updated in the folder pair definition. 
True Folder Sync: Folder creates, renames and [...]]]></description>
			<content:encoded><![CDATA[<p><a class="flickr-image" title="SyncTool2" href="http://www.flickr.com/photos/7797777@N07/2929292589/"></a><a class="flickr-image" title="SyncTool2" href="http://www.flickr.com/photos/7797777@N07/2929292589/"><img class="alignleft" style="float: left;" src="http://farm4.static.flickr.com/3028/2929292589_23be167bb4_o.png" alt="SyncTool2" /></a>SyncToy 2.0 for Windows is available as a free download from the Microsoft Download Center.</p>
<p>The easy to use, customizable application helps you copy, move, rename, and delete files between folders and computers.</p>
<p>Features:</p>
<ul>
<li>Dynamic Drive Letter Assignment: Drive letter reassignment will now be detected and updated in the folder pair definition. </li>
<li>True Folder Sync: Folder creates, renames and deletes are now synchronized for all SyncToy actions. </li>
<li>Exclusion Filtering Based on Name: File exclusion based on name with exact or fuzzy matching. </li>
<li>Filtering Based on File Attributes: The ability to exclude files based on one or more file attributes (Read-Only, System, Hidden). </li>
<li>Unattended Folder Pair Execution: Addressed issues related to running scheduled folder pairs while logged off. </li>
<li>Folder Pairs With Shared Endpoints: Ability for folder pairs associated with the same or different instances of SyncToy to share end-points. </li>
<li>Command line enhancements: Added the ability to manage folder pairs via the command line interface. </li>
<li>Re-Architect Sync Engine: The SyncToy engine has been rearchitected to provide scalability and the ability to add significant enhancements in future releases. </li>
<li>Sync engine is also more robust insomuch that many single, file level errors are skipped without affecting the entire sync operation. </li>
<li>Sync Encrypted Files: Sync of Encrypted files works when local folder and files are encrypted, which addresses the common scenario involving sync between local, encrypted laptop PC folder and remote, unencrypted desktop PC folder. </li>
<li>64-Bit Support: SyncToy now has a native 64-bit build (x64 only) for 64-bit versions of Windows. </li>
<li>Folder pair rename </li>
<li>Sub-folder Exclusion Enhancements: Descendents created under excluded sub-folders are automatically excluded. Usability improvements for the sub-folder exclusion dialog. </li>
<li>Folder Pair Metadata Moved: Folder pair metadata removed from MyDocuments to resolve any issues with server-based folder pair re-direction setup. </li>
<li>Setup Improvements: Integrated setup with single self-extracting archive file and no extra downloads if you already have .NET Framework 2.0 installed. Enabled silent install for the SyncToy Installer file (see readme.txt file for more information). Removed combine and subscribe actions. </li>
<li>Removed combine and subscribe actions. </li>
</ul>
<p>We all know robocopy.exe and what it does but this SyncToy2 is amazing. I installed the SyncToy2 on my Dell PowerEdge SC420 server to echo my personal folder; also I can schedule the task.</p>
<div><span style="color: #0000ee; text-decoration: underline;"><a class="flickr-image" title="SyncTool2-1" rel="flickr-mgr" href="http://www.flickr.com/photos/7797777@N07/2929292513/"></a><a class="flickr-image" title="SyncTool2-1" rel="flickr-mgr" href="http://www.flickr.com/photos/7797777@N07/2929292513/"><img class="flickr-medium" longdesc="http://farm4.static.flickr.com/3154/2929292513_2f5e7d9def_o.png" src="http://farm4.static.flickr.com/3154/2929292513_da21e50958_m.jpg" alt="SyncTool2-1" /> </a><a class="flickr-image" title="SyncTool2-2" rel="flickr-mgr" href="http://www.flickr.com/photos/7797777@N07/2930151508/"><img class="flickr-medium" longdesc="http://farm4.static.flickr.com/3274/2930151508_9164c80bfd_o.png" src="http://farm4.static.flickr.com/3274/2930151508_458e06b2fb_m.jpg" alt="SyncTool2-2" /></a></span></div>
<p>Links:   </p>
<ul>
<li><a href="http://www.microsoft.com/downloads/details.aspx?familyid=C26EFA36-98E0-4EE9-A7C5-98D0592D8C52&amp;displaylang=en" target="_blank">SyncToy2 Download</a> </li>
</ul>
<p> </p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/482/feed</wfw:commentRss>
		</item>
		<item>
		<title>BlackBerry: KPN BES data verbinding</title>
		<link>http://www.networknet.nl/apps/wp/archives/481</link>
		<comments>http://www.networknet.nl/apps/wp/archives/481#comments</comments>
		<pubDate>Thu, 09 Oct 2008 18:56:53 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
		
		<category><![CDATA[BlackBerry]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp/?p=481</guid>
		<description><![CDATA[Heb je een KPN abonnement in combinatie met een BlackBerry Enterprise Solution (BES) flat fee data plan en het volgende werkt niet bij je?
- Google Maps
- Gmail
Neem even de tijd en bel 1200 en zeg dat je email push en Internet Browsen werkt maar andere applicaties zoals Google Maps niet. Na 30 minuten aan de telefoon met de [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" style="float: left;" src="http://farm4.static.flickr.com/3286/2927732650_78048b689d_t.jpg" alt="BlackBerry 8310 small" width="54" height="100" />Heb je een KPN abonnement in combinatie met een BlackBerry Enterprise Solution (BES) flat fee data plan en het volgende werkt niet bij je?</p>
<p>- Google Maps<br />
- Gmail</p>
<p>Neem even de tijd en bel 1200 en zeg dat je email push en Internet Browsen werkt maar andere applicaties zoals Google Maps niet. Na 30 minuten aan de telefoon met de KPN klantenservice en een restart van mijn BlackBerry Curve 8310 werkten deze tools ;-).</p>
<p>De vraag was doorgezet naar een tweede lijns medewerker en die heeft iets op mijn sim kaart veranderd; het is niet duidelijk wat maar wel een juiste oplossing. Hoera ik heb nu 100MB fail use per maand op mijn BlackBerry en niet alleen email en browsen maar nu ook Gmail.</p>
<p>Links</p>
<ul>
<li><a href="http://zakelijk.kpn.com/business/mobiel/mobiel-werken/met-uw-smartphone/smartphone-blackberry/blackberry-corporate-solution.htm" target="_blank">BlackBerry Enterprise Solution van KPN</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/481/feed</wfw:commentRss>
		</item>
		<item>
		<title>VMWare ESX: Extend Windows Server 2008 Basic volume hard disk</title>
		<link>http://www.networknet.nl/apps/wp/archives/475</link>
		<comments>http://www.networknet.nl/apps/wp/archives/475#comments</comments>
		<pubDate>Tue, 30 Sep 2008 15:29:02 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
		
		<category><![CDATA[ESX]]></category>

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

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

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

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

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

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

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

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

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp/archives/475</guid>
		<description><![CDATA[Last week I run into free disk space problem on my Windows Server 2003 virtual machine and today on another virtual machine running Windows Server 2008 I encountered same thing again. The virtual disk was sized for 10GB and only 80MB was free.
The virtual machine is running Windows Server 2008 and Microsoft enhanced the feature [...]]]></description>
			<content:encoded><![CDATA[<p>Last week I run into free disk space problem on my Windows Server 2003 virtual machine and today on another virtual machine running Windows Server 2008 I encountered same thing again. The virtual disk was sized for 10GB and only 80MB was free.</p>
<p>The virtual machine is running Windows Server 2008 and Microsoft enhanced the feature for extending basic disk volumes on the fly. In my previous post I needed to add the virtual disk to another server; assign a drive letter and than run the extend option in diskpart. Within VI client extend the &quot;Hard Disk&quot; in the properties of the virtual machine to desired and planned size <img src='http://www.networknet.nl/apps/wp/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> and goto Computer Management / Storage / Disk Management, right-click and Refresh.</p>
<p>&#160;</p>
<p><a href="http://www.networknet.nl/apps/wp/wp-content/uploads/VMWareESXExtendWindowsServer2008Basicvol_F5FF/20080930_121633.png"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="379" alt="2008-09-30_121633" src="http://www.networknet.nl/apps/wp/wp-content/uploads/VMWareESXExtendWindowsServer2008Basicvol_F5FF/20080930_121633_thumb.png" width="504" border="0" /></a> </p>
<p>The additional defined disk space will be shown as &quot;Unallocated&quot;. Right-click on the C:\ volume and choose &quot;Extend Volume&quot;. Follow the wizard and within seconds the basic volume has been extended. Thanks to VMWare ESX and Microsoft Server 2008 our lives as System Engineers is becoming easier. </p>
<p>As lesson learned size your virtual environment appropriate and especially the Hard Disk configuration.</p>
<p>&#160;</p>
<p>Related links:</p>
<ul>
<li><a href="http://technet.microsoft.com/en-us/library/cc771473.aspx" target="_blank">Technet - Extend a Basic Volume</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/475/feed</wfw:commentRss>
		</item>
		<item>
		<title>VMWare ESX: Virtual Hard Disk FULL</title>
		<link>http://www.networknet.nl/apps/wp/archives/474</link>
		<comments>http://www.networknet.nl/apps/wp/archives/474#comments</comments>
		<pubDate>Sun, 28 Sep 2008 19:58:51 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

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

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

		<category><![CDATA[disk full]]></category>

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

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

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

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

		<category><![CDATA[virtual machine]]></category>

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

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

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp/archives/474</guid>
		<description><![CDATA[I am working to prepare my virtual machine to move it from test network to production. Before bringing this virtual machine to production I wanted to run the latest updates and during the process my virtual hard disk went full ;-(. I sized the vm with 6GB of disk space and yes I run into [...]]]></description>
			<content:encoded><![CDATA[<p>I am working to prepare my virtual machine to move it from test network to production. Before bringing this virtual machine to production I wanted to run the latest updates and during the process my virtual hard disk went full ;-(. I sized the vm with 6GB of disk space and yes I run into disk space problem. </p>
<p><a href="http://www.networknet.nl/apps/wp/wp-content/uploads/VMWareESXVirtualHardDiskFULL_1352A/image.png"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" src="http://www.networknet.nl/apps/wp/wp-content/uploads/VMWareESXVirtualHardDiskFULL_1352A/image_thumb.png" border="0" alt="image" width="504" height="163" /></a></p>
<p>VMWare ESX allows you to extend the virtual disk size on a running virtual machine. How to extend the virtual disk size? Right click the virtual machine in the VI cleint; choose settings and go to &#8220;Hard Disk 1&#8243; and type new disk size. Click OK.</p>
<p><a href="http://www.networknet.nl/apps/wp/wp-content/uploads/VMWareESXVirtualHardDiskFULL_1352A/image_3.png"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" src="http://www.networknet.nl/apps/wp/wp-content/uploads/VMWareESXVirtualHardDiskFULL_1352A/image_thumb_3.png" border="0" alt="image" width="504" height="214" /></a></p>
<p>Example of my new  Disk Configuration in &#8220;Disk Management&#8221;. To extend the virtual disk we need to go to diskpart and extent the volume.</p>
<p><a href="http://www.networknet.nl/apps/wp/wp-content/uploads/VMWareESXVirtualHardDiskFULL_1352A/image_4.png"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" src="http://www.networknet.nl/apps/wp/wp-content/uploads/VMWareESXVirtualHardDiskFULL_1352A/image_thumb_4.png" border="0" alt="image" width="504" height="258" /></a> </p>
<p>I opened command prompt and opened diskpart; selected the volume and run extend.</p>
<blockquote><p>The volume you selected may not be extended.<br />
Please select another volume and try again.</p></blockquote>
<p>My virtual hard disk was full and I was not able to extend my basic disk with the additional 2GB I added to this configuration.</p>
<p><a href="http://www.networknet.nl/apps/wp/wp-content/uploads/VMWareESXVirtualHardDiskFULL_1352A/image_5.png"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" src="http://www.networknet.nl/apps/wp/wp-content/uploads/VMWareESXVirtualHardDiskFULL_1352A/image_thumb_5.png" border="0" alt="image" width="504" height="250" /></a></p>
<p>Thanks to <a href="http://blogs.conchango.com/kalpeshprajapati/default.aspx">Kalpesh Prajapati</a> post I was able to find a solution to my problem.</p>
<p>Follow these steps to extend your virtual machine basic hard disk:</p>
<ul>
<li>Shutdown the virtual machine</li>
<li>Extend the virtual disk size</li>
<li>Add the harddisk to another virtual machine and start it up (second virtual machine)</li>
<li>Open command prompt and start diskpart.exe</li>
<li>list volumes and select the volume with the disk problem</li>
<li>extend the disk</li>
</ul>
<p><a href="http://www.networknet.nl/apps/wp/wp-content/uploads/VMWareESXVirtualHardDiskFULL_1352A/image_6.png"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" src="http://www.networknet.nl/apps/wp/wp-content/uploads/VMWareESXVirtualHardDiskFULL_1352A/image_thumb_6.png" border="0" alt="image" width="504" height="221" /></a></p>
<p>Make sure the volume has a drive letter assigned otherwise same warning will be returned. Virtual machine was started again without any problems and two additional gigs of disk space.</p>
<p>Links:</p>
<ul>
<li>Arne Fokkema posted another way how to perfom these actions on a basic disk. It should be easier if you download the additional ExtPart.exe tool from Dell. <a href="http://ictfreak.wordpress.com/2008/10/10/vmware-extend-the-os-disk-the-easy-way-extpartexe/" target="_blank">Extend the OS disk the easy way (ExtPart.exe)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/474/feed</wfw:commentRss>
		</item>
		<item>
		<title>VMWare ESX: Service Console IP address</title>
		<link>http://www.networknet.nl/apps/wp/archives/473</link>
		<comments>http://www.networknet.nl/apps/wp/archives/473#comments</comments>
		<pubDate>Fri, 12 Sep 2008 19:33:51 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
		
		<category><![CDATA[ESX]]></category>

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

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

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

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

		<category><![CDATA[service console]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp/archives/473</guid>
		<description><![CDATA[There are couple command line tools that VMWare ESX offers when the server has been installed with the &#8220;Service Console&#8221; mode (without i). In the following example I will explain and show how to create new vSwitch; link a physical network interface and assign a IP address for your &#8220;Service Console&#8221; management interface.
[root@LAB-ESX-01 root]# esxcfg-vswitch [...]]]></description>
			<content:encoded><![CDATA[<p>There are couple command line tools that VMWare ESX offers when the server has been installed with the &#8220;Service Console&#8221; mode (without i). In the following example I will explain and show how to create new vSwitch; link a physical network interface and assign a IP address for your &#8220;Service Console&#8221; management interface.</p>
<p>[root@LAB-ESX-01 root]# esxcfg-vswitch -a vSwitch0 &#8211;&gt; This will create new virtual switch</p>
<p>[root@LAB-ESX-01 root]# esxcfg-vswitch -L vmnic0 vSwitch0 &#8211;&gt; This will link my first physical network interface to vSwitch0</p>
<p>Result of the two commands:</p>
<p><a href="http://www.networknet.nl/apps/wp/wp-content/uploads/VMWareESXServiceconsoleIPaddress_CB81/image.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" src="http://www.networknet.nl/apps/wp/wp-content/uploads/VMWareESXServiceconsoleIPaddress_CB81/image_thumb.png" border="0" alt="image" width="431" height="113" /></a></p>
<p>As you can see vmnic0 with 1000Mbps has been associated with vSwitch0. Now I would like to have a &#8220;Service Console&#8221; port group sitting on this virtual switch.</p>
<p>[root@LAB-ESX-01 root]# esxcfg-vswitch -A Service\ Console vSwitch0 &#8211;&gt; This will create new port group named Service Console. Creating new port group on a virtual switch is nothing more than assigning or defining a interface on a switch. Now I would like to assign a L3 IP address on this interface/portgroup.</p>
<p>[root@LAB-ESX-01 root]# esxcfg-vswif -a vswif2 -p &#8220;Service Console&#8221; -i 192.168.1.2 -n 255.255.255.0 -b 192.168.1.255 &#8211;&gt; This will create new L3 interface which is linked to the Service Console port group with an static IP address. ESX server will generate new L2 mac address and assign this to the vswif2 interface.</p>
<p>[2008-09-12 13:22:21 'Vnic' warning] Generated New MAC address, 00:50:56:40:49:f4 for vswif2</p>
<p>Target result:</p>
<p><a href="http://www.networknet.nl/apps/wp/wp-content/uploads/VMWareESXServiceconsoleIPaddress_CB81/image_3.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" src="http://www.networknet.nl/apps/wp/wp-content/uploads/VMWareESXServiceconsoleIPaddress_CB81/image_thumb_3.png" border="0" alt="image" width="432" height="105" /></a></p>
<p>Just using two built-in esx configuration command line tools I was able to create and assign new service console ip address on a special physical management network interface.</p>
<p>Summary:</p>
<ul>
<li>esxcfg-vswitch -a switch_name</li>
<li>esxcfg-vswitch -L physical_nic switch_name</li>
<li>esxcfg-vswitch -A Service\ Console switch_name</li>
<li>esxcfg-vswif -a vswif2 -p &#8220;Service Console&#8221; -i 192.168.1.2 -n 255.255.255.0 -b 192.168.1.255</li>
</ul>
<p>Related links:</p>
<ul>
<li><a href="http://b2v.eu/b2vguide2vmware3.htm" target="_blank">B2V Guide to VMware ESX Server 3</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/473/feed</wfw:commentRss>
		</item>
		<item>
		<title>VMware ESX: SSH remote management</title>
		<link>http://www.networknet.nl/apps/wp/archives/472</link>
		<comments>http://www.networknet.nl/apps/wp/archives/472#comments</comments>
		<pubDate>Fri, 12 Sep 2008 17:56:05 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
		
		<category><![CDATA[ESX]]></category>

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

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

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

		<category><![CDATA[service console]]></category>

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

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp/archives/472</guid>
		<description><![CDATA[After installing VMWare ESX 3.5 hypervisor host server I would like to manage this system with SSH remotely. Server is manufactured by Dell and the DRAC mgmt card interface is available but I prefer to use SSH. SSH is enabled by default but disallows access for root.
See my work log and screenshots how to enable [...]]]></description>
			<content:encoded><![CDATA[<p>After installing VMWare ESX 3.5 hypervisor host server I would like to manage this system with SSH remotely. Server is manufactured by Dell and the DRAC mgmt card interface is available but I prefer to use SSH. SSH is enabled by default but disallows access for root.</p>
<p>See my work log and screenshots how to enable this feature:</p>
<ul>
<li>Login with root from the console</li>
<li>Change directory with &#8220;cd /etc/ssh&#8221;</li>
<li>Open sshd_config with &#8220;vi sshd_config&#8221;</li>
</ul>
<blockquote><p><a href="http://www.networknet.nl/apps/wp/wp-content/uploads/VMwareESX3.5SSHremotemanagement_B71B/image.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" src="http://www.networknet.nl/apps/wp/wp-content/uploads/VMwareESX3.5SSHremotemanagement_B71B/image_thumb.png" border="0" alt="image" width="244" height="47" /></a></p></blockquote>
<ul>
<li>Locate Authentication section and change &#8220;PermitRootLogin no&#8221; to &#8220;PermitRootLogin yes&#8221;; for going into edit mode type i; press ESC to exit</li>
</ul>
<blockquote><p><a href="http://www.networknet.nl/apps/wp/wp-content/uploads/VMwareESX3.5SSHremotemanagement_B71B/image_3.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" src="http://www.networknet.nl/apps/wp/wp-content/uploads/VMwareESX3.5SSHremotemanagement_B71B/image_thumb_3.png" border="0" alt="image" width="244" height="56" /></a></p></blockquote>
<ul>
<li>Type &#8220;:wq!&#8221; to save and exit the file</li>
<li>Restart the SSH deamon with &#8220;service sshd restart&#8221;</li>
</ul>
<blockquote><p><a href="http://www.networknet.nl/apps/wp/wp-content/uploads/VMwareESX3.5SSHremotemanagement_B71B/image_4.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" src="http://www.networknet.nl/apps/wp/wp-content/uploads/VMwareESX3.5SSHremotemanagement_B71B/image_thumb_4.png" border="0" alt="image" width="244" height="30" /></a></p></blockquote>
<ul>
<li>Start putty.exe or any of you favorite SSH remote management tools to connect to your ESX 3.5 server.</li>
</ul>
<blockquote><p><a href="http://www.networknet.nl/apps/wp/wp-content/uploads/VMwareESX3.5SSHremotemanagement_B71B/image_5.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" src="http://www.networknet.nl/apps/wp/wp-content/uploads/VMwareESX3.5SSHremotemanagement_B71B/image_thumb_5.png" border="0" alt="image" width="244" height="93" /></a></p></blockquote>
<p>This procedure also applies to version 3.x. With this procedure I achieved to manage my ESX server remotely so I don&#8217;t need to use my remote management access card. SSH daemon also support secure file copy protocol which can be used to connect with WinSCP and download or upload any file/virtual machine to your VMFS file system.</p>
<p><a href="http://www.networknet.nl/apps/wp/wp-content/uploads/VMwareESX3.5SSHremotemanagement_B71B/image_6.png"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" src="http://www.networknet.nl/apps/wp/wp-content/uploads/VMwareESX3.5SSHremotemanagement_B71B/image_thumb_6.png" border="0" alt="image" width="435" height="270" /></a></p>
<p>Please be aware of any security implications! I enabled this kind of access because the management interface is sitting in a different VLAN than the vSwitch networks within virtual machine which are trunked amongst different networks.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/472/feed</wfw:commentRss>
		</item>
		<item>
		<title>CactiEZ password reset</title>
		<link>http://www.networknet.nl/apps/wp/archives/471</link>
		<comments>http://www.networknet.nl/apps/wp/archives/471#comments</comments>
		<pubDate>Thu, 04 Sep 2008 17:12:11 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
		
		<category><![CDATA[Cacti]]></category>

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

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

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

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

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp/archives/471</guid>
		<description><![CDATA[While ago I installed CactiEZ 4.0 as a virtual machine on my Hyper-V server and forget the admin password to login into the web interface. I installed the system and didn&#8217;t to finish the configuration. When you install CactiEZ and logon for the first time with username &#8216;admin&#8217; you are required to change the password. [...]]]></description>
			<content:encoded><![CDATA[<p>While ago I installed CactiEZ 4.0 as a virtual machine on my Hyper-V server and forget the admin password to login into the web interface. I installed the system and didn&#8217;t to finish the configuration. When you install CactiEZ and logon for the first time with username &#8216;admin&#8217; you are required to change the password. </p>
<p>Now my access was blocked.    <br /><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="290" alt="image" src="http://www.networknet.nl/apps/wp/wp-content/uploads/CactiEZpasswordreset_C33F/image_thumb.png" width="439" border="0" />&#160;</p>
<p>To reset the admin password logon on the appliance console and run the following command lines:</p>
<ul>
<li>mysql cacti </li>
<li>update user_auth set password(md5)=&#8217;admin&#8217; where username=&#8217;admin&#8217;; </li>
</ul>
<p><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="233" alt="image" src="http://www.networknet.nl/apps/wp/wp-content/uploads/CactiEZpasswordreset_C33F/image3_thumb.png" width="500" border="0" /> </p>
<p>This will reset the admin password and allow you to login into the webinterface.</p>
<p>Related links:</p>
<ul>
<li><a title="http://www.cacti.net/downloads/docs/html/faq.html" href="http://www.cacti.net/downloads/docs/html/faq.html">http://www.cacti.net/downloads/docs/html/faq.html</a> </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/471/feed</wfw:commentRss>
		</item>
		<item>
		<title>CMSMadeSimple: Parse Error Smarty_Compiler.class.php</title>
		<link>http://www.networknet.nl/apps/wp/archives/470</link>
		<comments>http://www.networknet.nl/apps/wp/archives/470#comments</comments>
		<pubDate>Fri, 29 Aug 2008 20:44:23 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
		
		<category><![CDATA[CMSMadeSimple]]></category>

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp/archives/470</guid>
		<description><![CDATA[Recently I updated one of my CMSMadeSimple websites. After the CMS system was updated I run into the following problem:
Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING in /home/www/ivan/site/lib/smarty/Smarty_Compiler.class.php(270) : regexp code on line 5     Fatal error: preg_replace() [function.preg-replace]: Failed evaluating code: &#8216;{php&#8217; . str_repeat(&#34; &#34;, substr_count(&#8217;{* You can also instantiate custom behaviour [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I updated one of my CMSMadeSimple websites. After the CMS system was updated I run into the following problem:</p>
<p><b>Parse error</b>: parse error, unexpected T_CONSTANT_ENCAPSED_STRING in <b>/home/www/ivan/site/lib/smarty/Smarty_Compiler.class.php(270) : regexp code</b> on line <b>5</b>     <br /><b>Fatal error</b>: preg_replace() [<a href="http://www.hubo-roneijgelsheim.nl/function.preg-replace">function.preg-replace</a>]: Failed evaluating code: &#8216;{php&#8217; . str_repeat(&quot; &quot;, substr_count(&#8217;{* You can also instantiate custom behaviour on a module by module basis by looking at the $entry-&gt;module and $entry-&gt;modulerecord fields in $entry ie: {if $entry-&gt;module == &#8221;News&#8221;}{News action=&#8221;detail&#8221; article_id=$entry-&gt;modulerecord detailpage=&#8221;News&#8221;} *}&#8217;, &quot; &quot;)) .&#8217;}&#8217; in <b>/home/www/ivan/site/lib/smarty/Smarty_Compiler.class.php</b> on line <b>270</b></p>
<p>The search function didn&#8217;t work and system stopped with the error above. I reinstalled complete new version of CMSMadeSimple and ended with more errors. All related with comments in the template or in the search &quot;Result Template&quot; areas. </p>
<p>To fix the search function follow my instruction below:</p>
<ul>
<li>Login on the CMSMadeSimple Admin page </li>
<li>Go to Extensions / Search and click &quot;Result Template&quot; </li>
<li>Remove the comment starting with {* to *} and submit </li>
</ul>
<p><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="309" alt="image" src="http://www.networknet.nl/apps/wp/wp-content/uploads/CMSMadeSimpleParseErrorSmarty_Compil.php_1411E/image.png" width="500" border="0" /> </p>
<ul>
<li>Try the search your website again. </li>
<li>Wow it solved my problem </li>
</ul>
<p>The issue has to do with <em>single quotes</em> in combination with the mysql and Apache version. Hopefully some of you can add some comments for additional information.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/470/feed</wfw:commentRss>
		</item>
		<item>
		<title>SSL certificate Windows Server 2008 and Exchange 2007 SP1</title>
		<link>http://www.networknet.nl/apps/wp/archives/469</link>
		<comments>http://www.networknet.nl/apps/wp/archives/469#comments</comments>
		<pubDate>Tue, 26 Aug 2008 19:18:55 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
		
		<category><![CDATA[Exchange 2007]]></category>

		<category><![CDATA[Windows Server 2008]]></category>

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

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

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

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

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

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

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

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

		<category><![CDATA[outlook web access]]></category>

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

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

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

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

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp/archives/469</guid>
		<description><![CDATA[Thanks to guys from Telnetport25 I was able to finish my SSL certificate migration for my new Windows Server 2008 virtual machine running a Exchange 2007 SP1 installation.
My work log:

Logon on the old Windows Server 2003 hosting the OWA front-end role
Start MMC and add the Certificate Snap-In; choose the Computer Account.
Go to Personal/Certificates and locate [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to guys from Telnetport25 I was able to finish my SSL certificate migration for my new Windows Server 2008 virtual machine running a Exchange 2007 SP1 installation.</p>
<p>My work log:</p>
<ul>
<li>Logon on the old Windows Server 2003 hosting the OWA front-end role</li>
<li>Start MMC and add the Certificate Snap-In; choose the Computer Account.</li>
<li>Go to Personal/Certificates and locate the SSL certificate assigned to IIS for SSL encryption. Right click ; All Tasks and choose export. Choose the appropriate options like the certificate path; assign password and save the PFX file to &quot;My Documents&quot;</li>
<li>Copy the PFX file to your Windows Server 2008 Client Access Server</li>
<li>Logon on the Windows Server 2008 and add the Certificate Snap-In to a new MMC console for the Computer Account</li>
<li>Go to Personal/Certificates; right click; All Tasks and choose Import.</li>
</ul>
<p><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="225" alt="image" src="http://www.networknet.nl/apps/wp/wp-content/uploads/SSLcertificateWindowsServer2008andExchan_1205A/image.png" width="438" border="0" />&#160;</p>
<ul>
<li>Locate the PFX file; enter the password and make sure you check &quot;Mark this key as exportable&quot; to enable future migrations of the SSL certificate.</li>
<li>Place the certificate in the Personal Store</li>
</ul>
<p><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="100" alt="image" src="http://www.networknet.nl/apps/wp/wp-content/uploads/SSLcertificateWindowsServer2008andExchan_1205A/image_3.png" width="426" border="0" />&#160;</p>
<ul>
<li>Open the certificate and go to Details tab. Locate the Thumprint field and select Value with mouse; press CRTL-C to copy the data.</li>
</ul>
<p><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="318" alt="image" src="http://www.networknet.nl/apps/wp/wp-content/uploads/SSLcertificateWindowsServer2008andExchan_1205A/image_4.png" width="413" border="0" /></p>
<ul>
<li>Paste the value in Notepad and replace the &quot;SPACE&#8217; with CRTL-H. In the Find what field press space on the keyboard and click Replace All</li>
</ul>
<p><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="255" alt="image" src="http://www.networknet.nl/apps/wp/wp-content/uploads/SSLcertificateWindowsServer2008andExchan_1205A/image_5.png" width="522" border="0" /> </p>
<ul>
<li>Copy the Thumbprint </li>
<li>Start the Exchange Management Shell and run the Enable-ExchangeCertificate cmdlet</li>
<li>Type IIS as Services and paste the copied data from Notepad to Thumbprint</li>
</ul>
<p><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="321" alt="image" src="http://www.networknet.nl/apps/wp/wp-content/uploads/SSLcertificateWindowsServer2008andExchan_1205A/image_6.png" width="644" border="0" />&#160;</p>
<ul>
<li>Start Exchange Management Console and go to Server Configuration /&#160; Client Access / Select the server and open owa from Outlook Web Access tab</li>
<li>Type External URL of the SSL certificate and DNS. E.g. <a href="https://webmail.domain.tlk">https://webmail.domain.tlk</a> </li>
</ul>
<p>&#160;&#160;&#160; <img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="484" alt="image" src="http://www.networknet.nl/apps/wp/wp-content/uploads/SSLcertificateWindowsServer2008andExchan_1205A/image_7.png" width="423" border="0" /> </p>
<ul>
<li>Click OK and you are finished to test the configuration.</li>
<li>Start IE and test your OWA role. Review your NAT and Firewall rules also.</li>
</ul>
<p><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="302" alt="image" src="http://www.networknet.nl/apps/wp/wp-content/uploads/SSLcertificateWindowsServer2008andExchan_1205A/image_8.png" width="644" border="0" /> </p>
<p>Related links:</p>
<ul>
<li><a title="http://technet.microsoft.com/en-us/library/aa997231.aspx" href="http://technet.microsoft.com/en-us/library/aa997231.aspx" target="_blank">Enable-ExchangeCertificate</a></li>
<li><a title="http://telnetport25.wordpress.com/2008/03/28/exporting-existing-ssl-owa-certificates-from-exchange-2003-fes-to-exchange-2007-sp1-cas-on-windows-2008/" href="http://telnetport25.wordpress.com/2008/03/28/exporting-existing-ssl-owa-certificates-from-exchange-2003-fes-to-exchange-2007-sp1-cas-on-windows-2008/" target="_blank">Exporting Existing SSL OWA Certificates from Exchange 2003 FES to Exchange 2007 SP1 CAS on Windows 2008&#8230;</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/469/feed</wfw:commentRss>
		</item>
		<item>
		<title>Hyper-V from cmd</title>
		<link>http://www.networknet.nl/apps/wp/archives/467</link>
		<comments>http://www.networknet.nl/apps/wp/archives/467#comments</comments>
		<pubDate>Fri, 15 Aug 2008 18:05:09 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
		
		<category><![CDATA[Windows Server 2008]]></category>

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

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

		<category><![CDATA[Hyper-V]]></category>

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

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

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp/archives/467</guid>
		<description><![CDATA[Hyper-V, a key feature of Windows Server 2008, has now released to manufacturing (RTM) and is available for deployment into production environments. With help of ServerManagerCMD.exe I will install the Hyer-V role.
&#160;
What is ServerManagerCMD.exe?
Server Manager in Windows Server 2008 provides a single source for managing a server&#8217;s identity and system information, displaying server status, identifying [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="259" alt="hero_hyper-v" src="http://www.networknet.nl/apps/wp/wp-content/uploads/HyperVfromcmd_11854/hero_hyperv_thumb.jpg" width="396" align="left" border="0" />Hyper-V, a key feature of Windows Server 2008, has now released to manufacturing (RTM) and is available for deployment into production environments. With help of ServerManagerCMD.exe I will install the Hyer-V role.</p>
<p>&#160;</p>
<p>What is ServerManagerCMD.exe?</p>
<p>Server Manager in Windows Server 2008 provides a single source for managing a server&#8217;s identity and system information, displaying server status, identifying problems with server role configuration, and managing all roles installed on the server. </p>
<p>ServerManagerCMD is powerful tool and within one command line you can install the Hyper-V role. Make sure you installed the Windows 2008 RTM version and updated your system with <a href="http://support.microsoft.com/?kbid=950050" target="_blank">KB950050</a>.</p>
<p><a href="http://www.networknet.nl/apps/wp/wp-content/uploads/HyperVfromcmd_111D8/image.png"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="252" alt="image" src="http://www.networknet.nl/apps/wp/wp-content/uploads/HyperVfromcmd_111D8/image_thumb.png" width="504" border="0" /></a> </p>
<p>With ServerManagerCMD.exe you will be able to install all those roles:</p>
<blockquote><p>Active Directory Certificate Services      <br />Active Directory Domain Services       <br />Active Directory Federation Services       <br />Active Directory Lightweight Directory Services       <br />Active Directory Rights Management Services       <br />Application Server       <br />Availability and Scalability       <br />DHCP Server       <br />DNS Server       <br />Fax Server       <br />File Services       <br />Hyper-V       <br />Network Policy and Access Services       <br />Print Services       <br />Streaming Media Services       <br />Terminal Services       <br />Troubleshooting       <br />UDDI Services       <br />Web Server       <br />Windows Deployment Services</p>
</blockquote>
<p>Finally we get a single command line tool for this administrative task. I hate having different text files and run the cmd batch scripts.</p>
<p>Related links:</p>
<ul>
<li><a href="http://technet.microsoft.com/en-us/library/cc546617.aspx" target="_blank">Technet - Server Manager</a> </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/467/feed</wfw:commentRss>
		</item>
		<item>
		<title>VMWare ESX3i: FREE</title>
		<link>http://www.networknet.nl/apps/wp/archives/466</link>
		<comments>http://www.networknet.nl/apps/wp/archives/466#comments</comments>
		<pubDate>Wed, 13 Aug 2008 19:07:31 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
		
		<category><![CDATA[ESX]]></category>

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

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

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

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

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp/archives/466</guid>
		<description><![CDATA[ Who could ever believe and see VMWare releasing their ESX for free. Last night I read small post on my Windows Mobile device.
What is VMware ESXi 3.5?
VMware ESXi 3.5 is the industry’s first, thin hypervisor integrated into server hardware. With its next-generation architecture embedded in hardware, VMware ESXi enables a plug-and-play data center with [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" src="http://www.networknet.nl/apps/wp/wp-content/uploads/VMWareESX3iFREE_12564/image.png" border="0" alt="ESX3i" width="41" height="29" align="left" /> Who could ever believe and see VMWare releasing their ESX for free. Last night I read small post on my Windows Mobile device.</p>
<p><strong>What is VMware ESXi 3.5?</strong><br />
VMware ESXi 3.5 is the industry’s first, thin hypervisor integrated into server hardware. With its next-generation architecture embedded in hardware, VMware ESXi enables a plug-and-play data center with greater security, reliability and manageability. Requiring no installation and minimal configuration, VMware ESXi accelerates server deployment—IT organizations can take servers from boot-up to running production applications in virtual<br />
machines in minutes.</p>
<p>List of features is amazing and now we all get them for free. Check the full list <a href="http://www.vmware.com/products/esxi/features.html" target="_blank">here</a>, but these are which I like:</p>
<ul>
<li>Bare-metal architecture</li>
<li>Small Footprint with only 32MB</li>
<li>Virtualization for storage and support for iSCSI</li>
<li>VLAN tagging support</li>
<li>Wake-on LAN</li>
<li>64bit support</li>
</ul>
<p>Basically all features I missed with VMWare Server and now getting them for free with ESX3i version.</p>
<p><strong>Why is VMware making ESXi free? </strong>VMware is making its standalone ESXi hypervisor available at no cost in order to help companies of all sizes experience the benefits of virtualization. Customers have shown tremendous interest in ESXi due to its innovative architecture, simple setup, and high performance. Allowing IT administrators to obtain VMware ESXi for free enables everyone to gain access to VMware&#8217;s datacenter technology and prove its value in their own companies.</p>
<p>I have nothing more to add than just go download the <a href="http://www.vmware.com/files/pdf/esx_server3i_datasheet.pdf">VMware ESXi data sheet</a> for more information and <a href="http://www.vmware.com/download/esxi/getesxi.html">get a free copy of VMware ESXi</a> and try it for yourself. I am running couple of production host servers with VMWare Server  and will upgrade them very soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/466/feed</wfw:commentRss>
		</item>
		<item>
		<title>CMSMadeSimple upgrade from 1.0.4 &#34;Lanai&#34; to 1.4 &#34;Jamaica&#34;</title>
		<link>http://www.networknet.nl/apps/wp/archives/465</link>
		<comments>http://www.networknet.nl/apps/wp/archives/465#comments</comments>
		<pubDate>Thu, 07 Aug 2008 12:57:32 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
		
		<category><![CDATA[CMSMadeSimple]]></category>

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

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

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

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp/archives/465</guid>
		<description><![CDATA[I am working on a redesign project for a CMSMadeSimple website and today I planned to upgrade the version. The website is running for two years and until today no updates have been installed. CMSMadeSimple version 1.4 &#8220;Jamaica&#8221; has just been released and because I want to add couple of new CMSMadeSimple modules I will [...]]]></description>
			<content:encoded><![CDATA[<p>I am working on a redesign project for a CMSMadeSimple website and today I planned to upgrade the version. The website is running for two years and until today no updates have been installed. CMSMadeSimple version 1.4 &#8220;Jamaica&#8221; has just been released and because I want to add couple of new CMSMadeSimple modules I will first need to get the version up to date. The process is really straight forward and it took me 15 minutes in total.</p>
<ul>
<li>Download the latest version from here&#8211;&gt; <a title="cmsmadesimple-1.4-full.tar.gz" href="http://dev.cmsmadesimple.org/frs/download.php/2486/cmsmadesimple-1.4-full.tar.gz">cmsmadesimple-1.4-full.tar.gz</a></li>
<li>Extract the file with 7z and upload the content to your webserver by using ftp,sftp, ssh.</li>
<li>I am using WinSCP to the files to my linux box. I dragged the files from left pane (my c drive) to right pane where the current CMSMadeSimple files were located. At some point I was asked to overwrite files and I clicked yes.</li>
</ul>
<p><a rel="lightbox[cms1]" href="http://www.networknet.nl/apps/wp/wp-content/uploads/CMSMadeSimpleupgratefrom1.0.4La.4Jamaica_C293/image.png"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="424" alt="image" src="http://www.networknet.nl/apps/wp/wp-content/uploads/CMSMadeSimpleupgratefrom1.0.4La.4Jamaica_C293/image_thumb.png" width="640" border="0"></a> </p>
<ul>
<li>Go to your admin page.</li>
</ul>
<p><a rel="lightbox[cms1]" href="http://www.networknet.nl/apps/wp/wp-content/uploads/CMSMadeSimpleupgratefrom1.0.4La.4Jamaica_C293/image_3.png"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="378" alt="image" src="http://www.networknet.nl/apps/wp/wp-content/uploads/CMSMadeSimpleupgratefrom1.0.4La.4Jamaica_C293/image_thumb_3.png" width="644" border="0"></a> </p>
<ul>
<li>I have couple of warnings I need to solve like removing the install directory and the &#8220;Site Down for Maintainance&#8221; message but most important is that you perfom the CMSMS schema upgrade. Click Start Upgrade Process.</li>
<li>Verify your config.php is writable.</li>
</ul>
<p><a rel="lightbox[cms1]" href="http://www.networknet.nl/apps/wp/wp-content/uploads/CMSMadeSimpleupgratefrom1.0.4La.4Jamaica_C293/image_4.png"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="271" alt="image" src="http://www.networknet.nl/apps/wp/wp-content/uploads/CMSMadeSimpleupgratefrom1.0.4La.4Jamaica_C293/image_thumb_4.png" width="644" border="0"></a></p>
<ul>
<li>I checked my config file from ssh console and the permissions were not configured as required. </li>
</ul>
<blockquote><p>root@ubuntu-jeos-7:/var/www/cmsmadesimple-1.2.5/hubo-roneijgelsheim/site# ls config.php -all<br />-rw-r&#8211;r&#8211; 1 root root 5829 2008-08-06 10:16 config.php</p>
</blockquote>
<ul>
<li>To fix this problem I executed: chmod 777 config.php; chown www-data config.php and chgrp www-data config.php</li>
<li>I went back and click &#8220;Try Again&#8221; in the Upgrade System wizard.</li>
</ul>
<p><a rel="lightbox[cms1]" href="http://www.networknet.nl/apps/wp/wp-content/uploads/CMSMadeSimpleupgratefrom1.0.4La.4Jamaica_C293/image_5.png"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="315" alt="image" src="http://www.networknet.nl/apps/wp/wp-content/uploads/CMSMadeSimpleupgratefrom1.0.4La.4Jamaica_C293/image_thumb_5.png" width="644" border="0"></a> </p>
<ul>
<li>The schema version was upgraded to 31 and now I could finish the upgrade by clicking on the last step.</li>
</ul>
<p><a rel="lightbox[cms1]" href="http://www.networknet.nl/apps/wp/wp-content/uploads/CMSMadeSimpleupgratefrom1.0.4La.4Jamaica_C293/image_6.png"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="406" alt="image" src="http://www.networknet.nl/apps/wp/wp-content/uploads/CMSMadeSimpleupgratefrom1.0.4La.4Jamaica_C293/image_thumb_6.png" width="644" border="0"></a> </p>
<ul>
<li>Setup Finished all required steps in the upgrade process and my website was up and running and up to date. </li>
<li>I fixed my other two warnings and my site is now secure, updated and most important the process went very smooth.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/465/feed</wfw:commentRss>
		</item>
		<item>
		<title>Mount Linux file system on Windows operating systems</title>
		<link>http://www.networknet.nl/apps/wp/archives/464</link>
		<comments>http://www.networknet.nl/apps/wp/archives/464#comments</comments>
		<pubDate>Sun, 03 Aug 2008 16:47:44 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
		
		<category><![CDATA[Windows]]></category>

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

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

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

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

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

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

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp/archives/464</guid>
		<description><![CDATA[Since I am dual booting between Ubuntu and Windows Vista on my desktop workstation I am missing my linux volumes on Vista. I have three large 500GB SATA2 disks and one of them is partitioned and formatted with Ext2 linux file system. I have two options to read my linux volumes from windows:
a) Explore2fs which [...]]]></description>
			<content:encoded><![CDATA[<p>Since I am dual booting between Ubuntu and Windows Vista on my desktop workstation I am missing my linux volumes on Vista. I have three large 500GB SATA2 disks and one of them is partitioned and formatted with Ext2 linux file system. I have two options to read my linux volumes from windows:</p>
<p>a) <a href="http://www.chrysocome.net/explore2fs" target="_blank">Explore2fs</a> which is a simple tool and I don&#8217;t need to install any low level system drivers. Explore2fs only operates in Read-Only mode.     <br />b) <a href="www.fs-driver.org" target="_blank">Ext2IFS</a> which is a pure kernel mode file system driver Ext2fs.sys, which actually extends the Windows NT/2000/XP/Vista (x86/x64) operating system to include the Ext2 file system.</p>
<p>I want to have full read-write mode on my linux volumes and I installed option b.</p>
<ul>
<li>Go to <a title="http://www.fs-driver.org/download.html" href="http://www.fs-driver.org/download.html">http://www.fs-driver.org/download.html</a> and download <a title="Ext2IFS_1_11.exe" href="http://www.fs-driver.org/download/Ext2IFS_1_11.exe">Ext2IFS_1_11.exe</a> </li>
<li>Run the setup file and walk though the installation wizards. </li>
<li>In the Drive Letters Wizard choose your linux partition and assign a drive letter. I used drive L: </li>
</ul>
<blockquote><p><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="368" alt="image" src="http://www.networknet.nl/apps/wp/wp-content/uploads/MountLinuxfilesystemonWindowsoperatingsy_108C2/image.png" width="490" border="0" />&#160; <br /><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="368" alt="image" src="http://www.networknet.nl/apps/wp/wp-content/uploads/MountLinuxfilesystemonWindowsoperatingsy_108C2/image_3.png" width="490" border="0" /> </p>
</blockquote>
<p>Drive L:\ is now mounted in READ/Write mode from my Windows Vista SP1 x64 operating system.</p>
<p><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="122" alt="image" src="http://www.networknet.nl/apps/wp/wp-content/uploads/MountLinuxfilesystemonWindowsoperatingsy_108C2/image_4.png" width="585" border="0" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/464/feed</wfw:commentRss>
		</item>
		<item>
		<title>Export wireless networks profiles/settings from Windows Vista</title>
		<link>http://www.networknet.nl/apps/wp/archives/463</link>
		<comments>http://www.networknet.nl/apps/wp/archives/463#comments</comments>
		<pubDate>Fri, 01 Aug 2008 19:49:36 +0000</pubDate>
		<dc:creator>Ivan Versluis</dc:creator>
		
		<category><![CDATA[Windows Vista]]></category>

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

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

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

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

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

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

		<guid isPermaLink="false">http://www.networknet.nl/apps/wp/archives/463</guid>
		<description><![CDATA[If you are migrating notebooks at work, from friends or family you will always hit same problem after the new one is ready for use. Most documents and user settings can be migrated in some kind (ntbackup,robocopy and the Windows transfer wizards) , but when migrating the wireless network setting you may need additional script [...]]]></description>
			<content:encoded><![CDATA[<p>If you are migrating notebooks at work, from friends or family you will always hit same problem after the new one is ready for use. Most documents and user settings can be migrated in some kind (ntbackup,robocopy and the Windows transfer wizards) , but when migrating the wireless network setting you may need additional script to perform that. Recently I have been asked to reinstall couple of tools and migrate import user documents including the wireless network. I received both notebooks without the wireless access point and after all important things were moved to the new notebook I started running the netsh command to export the wireless settings/networks into a text file.</p>
<p>See my howto I performed to get this done on my own Windows VISTA notebook.</p>
<ul>
<li>Run CMD.exe to get into the command prompt and run &#8220;netsh wlan show profiles&#8221;</li>
</ul>
<p><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="340" alt="image" src="http://www.networknet.nl/apps/wp/wp-content/uploads/ExportwirelessnetworkssettingsfromWindow_1100D/image.png" width="677" border="0"></p>
<ul>
<li>I am interested in exporting the &#8220;NetworknetForFree&#8221; WLAN SSID into a text file which I can import on another notebook.</li>
<li>I am still in the command prompt and than I execute &#8220;<strong>netsh wlan export profile name=&#8221;NetworknetForFree&#8221; folder=C:\</strong>&#8221; to export NetworknetForFree to C:\ drive.</li>
</ul>
<p><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="196" alt="image" src="http://www.networknet.nl/apps/wp/wp-content/uploads/ExportwirelessnetworkssettingsfromWindow_1100D/image_3.png" width="677" border="0">&nbsp;</p>
<ul>
<li>NetworknetForFree wireless network profile has now been exported to a file named &#8220;C:\Wireless Network Connection-NetworknetForFree.xml&#8221; and I can copy this file to a usb drive. If you want to export all your wireless profiles just run &#8220;<strong>netsh wlan export profile folder=C:\</strong>&#8220;</li>
<li>The netsh tool generates a XML based file with all the settings for the wireless profile.</li>
</ul>
<p><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="273" alt="image" src="http://www.networknet.nl/apps/wp/wp-content/uploads/ExportwirelessnetworkssettingsfromWindow_1100D/image_4.png" width="606" border="0"> </p>
<ul>
<li>Start a CMD.exe command prompt on the new notebook and import the XML file located on the usb drive. You can copy the XML file first from the usb dirve to C:\ and than import the file. Type and execute &#8220;<strong>netsh wlan add profile filename=&#8221;c:\Wireless Network Connection-NetworknetForFree.xml&#8221; user=all</strong>&#8220;</li>
</ul>
<p><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="196" alt="image" src="http://www.networknet.nl/apps/wp/wp-content/uploads/ExportwirelessnetworkssettingsfromWindow_1100D/image_5.png" width="677" border="0"> </p>
<p>The wireless SSID &#8220;NetworknetForFree&#8221; network has been migrated without knowing the exact settings like SSID, authentication type and the password. I was also trying to perform these steps with a <strong><em>Windows XP SP2</em></strong> client but too bad that this feature is only for Windows Vista and not XP. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.networknet.nl/apps/wp/archives/463/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
