<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Djseppie&#039;s Blog</title>
	<atom:link href="http://djseppie.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://djseppie.wordpress.com</link>
	<description>My Weblog</description>
	<lastBuildDate>Thu, 13 Oct 2011 07:31:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='djseppie.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Djseppie&#039;s Blog</title>
		<link>http://djseppie.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://djseppie.wordpress.com/osd.xml" title="Djseppie&#039;s Blog" />
	<atom:link rel='hub' href='http://djseppie.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Enable or Disable Client For Microsoft Networks and other Lan Settings using script</title>
		<link>http://djseppie.wordpress.com/2011/06/10/enable-or-disable-lan-settings-using-script/</link>
		<comments>http://djseppie.wordpress.com/2011/06/10/enable-or-disable-lan-settings-using-script/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 09:05:26 +0000</pubDate>
		<dc:creator>djseppie</dc:creator>
				<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[enable client for microsoft networks]]></category>
		<category><![CDATA[script edit network settings]]></category>
		<category><![CDATA[unbind script]]></category>

		<guid isPermaLink="false">http://djseppie.wordpress.com/?p=202</guid>
		<description><![CDATA[Yesterday I was searching the web for a script that would disable the client for Microsoft networks and some other protocols. I could not find it in the first 10 pages of my search on Google. Finally I found a great solution that i would like to share with you, and tag my post well [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djseppie.wordpress.com&amp;blog=6989968&amp;post=202&amp;subd=djseppie&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Yesterday I was searching the web for a script that would disable the client for Microsoft networks and some other protocols.<br />
I could not find it in the first 10 pages of my search on Google.<br />
Finally I found a great solution that i would like to share with you, and tag my post well so anyone can find it more quickly than I did <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>I found the application <a title="nvspbind" href="http://archive.msdn.microsoft.com/nvspbind" target="_blank">nvspbind</a> that I could use to disable or enable the following stuff:</p>
<ul>
<li>Broadcom Advanced Server Program Driver</li>
<li>Brocade 10G Ethernet Service</li>
<li>Intel(R) Advanced Network Services Protocol</li>
<li>Link-Layer Topology Discovery Mapper I/O Driver</li>
<li>Client for Microsoft Networks</li>
<li>NetBIOS Interface</li>
<li>WINS Client(TCP/IP) Protocol</li>
<li>QoS Packet Scheduler</li>
<li>Link-Layer Topology Discovery Responder</li>
<li>File and Printer Sharing for Microsoft Networks</li>
<li>Microsoft NetbiosSmb</li>
<li>Internet Protocol Version 4 (TCP/IPv4)</li>
<li>Internet Protocol Version 6 (TCP/IPv6)</li>
<li>Microsoft Virtual Network Switch Protocol</li>
</ul>
<p>I&#8217;ve put them all together in a batch script:</p>
<p><code></p>
<p>REM Configure Network Settings</p>
<p>set lan="LAN Verbinding"</p>
<p>REM brcm_blfp (Broadcom Advanced Server Program Driver)<br />
"%~DP0nvspbind.exe" /d "%lan%" brcm_blfp</p>
<p>REM bnad_imp (Brocade 10G Ethernet Service)<br />
"%~DP0nvspbind.exe" /d "%lan%" bnad_imp</p>
<p>REM iansprotocol (Intel(R) Advanced Network Services Protocol)<br />
"%~DP0nvspbind.exe" /d "%lan%" iansprotocol</p>
<p>REM ms_lltdio (Link-Layer Topology Discovery Mapper I/O Driver)<br />
"%~DP0nvspbind.exe" /d "%lan%" ms_lltdio</p>
<p>REM ms_msclient (Client for Microsoft Networks)<br />
"%~DP0nvspbind.exe" /d "%lan%" ms_msclient</p>
<p>REM ms_netbios (NetBIOS Interface)<br />
"%~DP0nvspbind.exe" /d "%lan%" ms_netbios</p>
<p>REM ms_netbt (WINS Client(TCP/IP) Protocol)<br />
"%~DP0nvspbind.exe" /d "%lan%" ms_netbt</p>
<p>REM ms_pacer (QoS Packet Scheduler)<br />
"%~DP0nvspbind.exe" /d "%lan%" ms_pacer</p>
<p>REM ms_rspndr (Link-Layer Topology Discovery Responder)<br />
"%~DP0nvspbind.exe" /d "%lan%" ms_rspndr</p>
<p>REM ms_server (File and Printer Sharing for Microsoft Networks)<br />
"%~DP0nvspbind.exe" /d "%lan%" ms_server</p>
<p>REM ms_smb (Microsoft NetbiosSmb)<br />
"%~DP0nvspbind.exe" /d "%lan%" NetbiosSmb</p>
<p>REM ms_tcpip (Internet Protocol Version 4 (TCP/IPv4))<br />
"%~DP0nvspbind.exe" /d "%lan%" ms_tcpip</p>
<p>REM ms_tcpip6 (Internet Protocol Version 6 (TCP/IPv6))<br />
"%~DP0nvspbind.exe" /d "%lan%" ms_tcpip6</p>
<p>REM vms_pp (Microsoft Virtual Network Switch Protocol)<br />
"%~DP0nvspbind.exe" /d "%lan%" vms_pp<br />
</code></p>
<p>That&#8217;s it!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/djseppie.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/djseppie.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/djseppie.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/djseppie.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/djseppie.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/djseppie.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/djseppie.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/djseppie.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/djseppie.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/djseppie.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/djseppie.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/djseppie.wordpress.com/202/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/djseppie.wordpress.com/202/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/djseppie.wordpress.com/202/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djseppie.wordpress.com&amp;blog=6989968&amp;post=202&amp;subd=djseppie&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://djseppie.wordpress.com/2011/06/10/enable-or-disable-lan-settings-using-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2faeea7e813765f7605b1bbedf7d0b5d?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">djseppie</media:title>
		</media:content>
	</item>
		<item>
		<title>Use Remote Server Administration Tools RSAT on Windows 7 SP1</title>
		<link>http://djseppie.wordpress.com/2011/03/21/use-remote-server-administration-tools-rsat-on-windows-7-sp1/</link>
		<comments>http://djseppie.wordpress.com/2011/03/21/use-remote-server-administration-tools-rsat-on-windows-7-sp1/#comments</comments>
		<pubDate>Mon, 21 Mar 2011 10:03:08 +0000</pubDate>
		<dc:creator>djseppie</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[RSAT]]></category>
		<category><![CDATA[Windows 7 SP1]]></category>

		<guid isPermaLink="false">http://djseppie.wordpress.com/?p=197</guid>
		<description><![CDATA[Last week I discovered that RSAT cannot be installed on Windows 7 SP1 because of some stupid install check. When you want to use the RSAT you can accomplish this using the following procedure: Download RSAT here. * Unpack the .MSU with 7zip or another unzip utility to let&#8217;s say c:\TEMP\RSAT. * use the package [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djseppie.wordpress.com&amp;blog=6989968&amp;post=197&amp;subd=djseppie&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Last week I discovered that RSAT cannot be installed on Windows 7 SP1 because of some stupid install check.<br />
When you want to use the RSAT you can accomplish this using the following procedure:</p>
<p>Download RSAT <a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=7d2f6ad7-656b-4313-a005-4e344e43997d">here</a>.</p>
<p>* Unpack the .MSU with 7zip or another unzip utility to let&#8217;s say c:\TEMP\RSAT.<br />
* use the package manager for the install: </p>
<pre class="brush: plain;">pkgmgr.exe /n:%temp%\RSAT\Windows6.1-KB958830-x64.xml</pre>
<p>* Now watch the taskmanager the process pkgmgr.exe until it automatically closes (this will take several minutes).<br />
* Go to the control panel and in Programs and Windows Features you can add the desired feature you want.</p>
<p>Note: when you&#8217;ve got RSAT installed on your computer prior installing Windows 7 SP1, then RSAT will already be available and you don&#8217;t need this workaround.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/djseppie.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/djseppie.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/djseppie.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/djseppie.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/djseppie.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/djseppie.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/djseppie.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/djseppie.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/djseppie.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/djseppie.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/djseppie.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/djseppie.wordpress.com/197/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/djseppie.wordpress.com/197/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/djseppie.wordpress.com/197/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djseppie.wordpress.com&amp;blog=6989968&amp;post=197&amp;subd=djseppie&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://djseppie.wordpress.com/2011/03/21/use-remote-server-administration-tools-rsat-on-windows-7-sp1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2faeea7e813765f7605b1bbedf7d0b5d?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">djseppie</media:title>
		</media:content>
	</item>
		<item>
		<title>Deploy Printers Using Group Policy Preferences</title>
		<link>http://djseppie.wordpress.com/2011/03/21/deploy-printers-using-group-policy-preferences/</link>
		<comments>http://djseppie.wordpress.com/2011/03/21/deploy-printers-using-group-policy-preferences/#comments</comments>
		<pubDate>Mon, 21 Mar 2011 09:36:15 +0000</pubDate>
		<dc:creator>djseppie</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://djseppie.wordpress.com/?p=189</guid>
		<description><![CDATA[Deploying printer in Windows Server 2008 using grou policy preferences is pretty straightforward. The web is filled with many manuals like this one: http://www.msserveradmin.com/the-one-reason-you-should-use-group-policy-preferences/ What seems to be a major problem is &#8216;remembering&#8217; the default printer when using replace option. The default behavour of Windows is the first added printer is being set as the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djseppie.wordpress.com&amp;blog=6989968&amp;post=189&amp;subd=djseppie&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Deploying printer in Windows Server 2008 using grou policy preferences is pretty straightforward. The web is filled with many manuals like this one: <a href="http://www.msserveradmin.com/the-one-reason-you-should-use-group-policy-preferences/">http://www.msserveradmin.com/the-one-reason-you-should-use-group-policy-preferences/</a></p>
<p>What seems to be a major problem is &#8216;remembering&#8217; the default printer when using replace option. The default behavour of Windows is the first added printer is being set as the default.<br />
To resolve this, i&#8217;ve created a script (with some help from a great collegue). You do need te have a roaming profile or a tool like Immidio profiles to save current use keys. Add the logon.vbs and the logoff.vbs scripts to the <strong>user</strong> policy.</p>
<p>Set the c:\windows\system32\cscript.exe as application with the logon.vbs as a parameter.</p>
<pre class="brush: plain;"> logon.vbs

Option Explicit
Dim wshShell, strSavekey, strPrtName, objNetwork
'---------------------------------------------------------------------
'Save default printer login script written by
'Sebastiaan van Weelden and Edward Dijk
'Ictivity 2011
'---------------------------------------------------------------------
' Set string values
strSaveKey = &quot;HKCU\SOFTWARE\Ictivity\&quot;
Set WSHShell = CreateObject(&quot;WScript.Shell&quot;)
Set objNetwork = CreateObject(&quot;WScript.Network&quot;)
strPrtName = WshShell.RegRead (strSaveKey &amp; &quot;Printer Name&quot;)
'wscript.echo strPrtName
'Add 4 seconds delay so the printers can be added by the policy
WScript.Sleep(4000)
objNetwork.SetDefaultPrinter strPrtName

'Exit script
WScript.Quit
</pre>
<p>Logoff.vbs reads the key HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows\Device and cuts it into pieces.<br />
It creates some keys in hkey_current_user\software\ictivity.<br />
These keys are being &#8216;read&#8217; at logon and after a while (this time can be set in logon.vbs) the last used printer is set as default.</p>
<pre class="brush: plain;">
logoff.vbs

Option Explicit
Dim strKey, wshShell, strSavekey, strPrtName, strPrtSpool, strPrt
Dim strValue
'---------------------------------------------------------------------
'Save default printer logout script written by
'Sebastiaan van Weelden and Edward Dijk
'Ictivity 2011
'---------------------------------------------------------------------
' Set string values
strSaveKey = &quot;HKCU\SOFTWARE\Ictivity\&quot;
strPrtName = &quot;Printer Name&quot;
strPrt = &quot;Printer Port&quot;
strPrtSpool = &quot;Spooler&quot;
' Create WScript Shell object to read the registry
Set wshShell = CreateObject( &quot;WScript.Shell&quot; )
' Read the current default printer from registry
strKey = &quot;HKEY_CURRENT_USER\Software\Microsoft&quot; _
&amp; &quot;\Windows NT\CurrentVersion\Windows\Device&quot;
strValue = Split( wshShell.RegRead( strKey ), &quot;,&quot; )
'Write Printer Name
WshShell.RegWrite &quot;HKCU\SOFTWARE\Ictivity\&quot; &amp; strPrtName, strValue(0), &quot;REG_SZ&quot;
'Write Spooler
WshShell.RegWrite &quot;HKCU\SOFTWARE\Ictivity\&quot; &amp; strPrtSpool, strValue(1), &quot;REG_SZ&quot;
'Write Printer Port
WshShell.RegWrite &quot;HKCU\SOFTWARE\Ictivity\&quot; &amp; strPrt, strValue(2), &quot;REG_SZ&quot;
'Exit script
WScript.Quit
</pre>
<p>The last thing to do is changing the computer policy. Windows will refresh the policy en thereby also readd the printers. This will result in a wrong default printer.<br />
Change the following setting in the <strong>computer</strong> policy:</p>
<p><a href="http://djseppie.files.wordpress.com/2011/03/gpp2.jpg"><img src="http://djseppie.files.wordpress.com/2011/03/gpp2.jpg?w=300&#038;h=214" alt="" title="Gpp2" width="300" height="214" class="alignnone size-medium wp-image-193" /></a><br />
<a href="http://djseppie.files.wordpress.com/2011/03/gpp.jpg"><img src="http://djseppie.files.wordpress.com/2011/03/gpp.jpg?w=300&#038;h=274" alt="" title="Gpp" width="300" height="274" class="alignnone size-medium wp-image-192" /></a></p>
<p>Good luck!</p>
<p>Special thanx to my script buddy Edward Dijk</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/djseppie.wordpress.com/189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/djseppie.wordpress.com/189/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/djseppie.wordpress.com/189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/djseppie.wordpress.com/189/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/djseppie.wordpress.com/189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/djseppie.wordpress.com/189/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/djseppie.wordpress.com/189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/djseppie.wordpress.com/189/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/djseppie.wordpress.com/189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/djseppie.wordpress.com/189/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/djseppie.wordpress.com/189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/djseppie.wordpress.com/189/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/djseppie.wordpress.com/189/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/djseppie.wordpress.com/189/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djseppie.wordpress.com&amp;blog=6989968&amp;post=189&amp;subd=djseppie&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://djseppie.wordpress.com/2011/03/21/deploy-printers-using-group-policy-preferences/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2faeea7e813765f7605b1bbedf7d0b5d?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">djseppie</media:title>
		</media:content>

		<media:content url="http://djseppie.files.wordpress.com/2011/03/gpp2.jpg?w=300" medium="image">
			<media:title type="html">Gpp2</media:title>
		</media:content>

		<media:content url="http://djseppie.files.wordpress.com/2011/03/gpp.jpg?w=300" medium="image">
			<media:title type="html">Gpp</media:title>
		</media:content>
	</item>
		<item>
		<title>Create Windows 7 image with Novell ZCM</title>
		<link>http://djseppie.wordpress.com/2011/03/21/create-windows-7-image-with-novell-zcm/</link>
		<comments>http://djseppie.wordpress.com/2011/03/21/create-windows-7-image-with-novell-zcm/#comments</comments>
		<pubDate>Mon, 21 Mar 2011 07:48:23 +0000</pubDate>
		<dc:creator>djseppie</dc:creator>
				<category><![CDATA[Novell]]></category>
		<category><![CDATA[0xc0000225]]></category>
		<category><![CDATA[bcdedit]]></category>
		<category><![CDATA[sysprep]]></category>
		<category><![CDATA[zcm]]></category>

		<guid isPermaLink="false">http://djseppie.wordpress.com/?p=182</guid>
		<description><![CDATA[Last week I created a Windows 7 Professional image with Novell ZCM. When I deployed the image to a workstation, it displayed an error when Windows was started: Windows failed to start. A recent hardware or software change might be the cause. File: \Windows\system32\winload.exe Status: 0xc0000225 Info: The selected entry could not be loaded because [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djseppie.wordpress.com&amp;blog=6989968&amp;post=182&amp;subd=djseppie&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Last week I created a Windows 7 Professional image with Novell ZCM. When I deployed the image to a workstation, it displayed an error when Windows was started:</p>
<blockquote><p>Windows failed to start. A recent hardware or software change might<br />
be the<br />
cause. File: \Windows\system32\winload.exe Status: 0xc0000225 Info:<br />
The selected entry could not be loaded because the application is missing or corrupt.&#8221;
</p></blockquote>
<p>The Solution was very simple:<br />
Execute the following commands before sealing your image with sysprep:</p>
<p>bcdedit /set {bootmgr} device boot<br />
bcdedit /set {default} device boot<br />
bcdedit /set {default} osdevice boot</p>
<p>Now you&#8217;ll be able to deploy your image to the workstations!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/djseppie.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/djseppie.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/djseppie.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/djseppie.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/djseppie.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/djseppie.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/djseppie.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/djseppie.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/djseppie.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/djseppie.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/djseppie.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/djseppie.wordpress.com/182/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/djseppie.wordpress.com/182/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/djseppie.wordpress.com/182/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djseppie.wordpress.com&amp;blog=6989968&amp;post=182&amp;subd=djseppie&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://djseppie.wordpress.com/2011/03/21/create-windows-7-image-with-novell-zcm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2faeea7e813765f7605b1bbedf7d0b5d?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">djseppie</media:title>
		</media:content>
	</item>
		<item>
		<title>How to revert renamed user homefolders to My Documents</title>
		<link>http://djseppie.wordpress.com/2010/11/16/how-to-revert-renamed-user-homefolders-to-my-documents/</link>
		<comments>http://djseppie.wordpress.com/2010/11/16/how-to-revert-renamed-user-homefolders-to-my-documents/#comments</comments>
		<pubDate>Tue, 16 Nov 2010 14:33:33 +0000</pubDate>
		<dc:creator>djseppie</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://djseppie.wordpress.com/?p=174</guid>
		<description><![CDATA[Today I had this weird problem because of some stupid brain farts by the Microsoft developers team. When you redirect the my documents folder to a network location let&#8217;s say \\servername\sharename\%username% then the %username% looks like it is renamed to my documents, FOR EVERY USER!) So you&#8217;ll have a folder with in my case hundreds [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djseppie.wordpress.com&amp;blog=6989968&amp;post=174&amp;subd=djseppie&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today I had this weird problem because of some stupid brain farts by the Microsoft developers team.<br />
When you redirect the my documents folder to a network location let&#8217;s say \\servername\sharename\%username% then the %username% looks like it is renamed to my documents, FOR EVERY USER!)<br />
So you&#8217;ll have a folder with in my case hundreds of my documents folders.. </p>
<p>You definitely don&#8217;t want this behaviour! </p>
<p>Apparently this is by design <a href="http://support.microsoft.com/kb/947222">http://support.microsoft.com/kb/947222</a>.<br />
When you take a look at this article you really want to choose between creating a subfolder under the redirected folder in the Universal Naming Convention (UNC) path. </p>
<p>For example, the following UNC path: \\server\users\username\Documents</p>
<p>The best method is the third one from the article: Do not grant the Read permission to the administrator for the Desktop.ini files on the server. </p>
<p>To do this, follow these steps:<br />
Note If more than one Desktop.ini file exists, follow these steps for all the Desktop.ini files.<br />
Right-click the Desktop.ini file, click Properties, and then click the Security tab.<br />
In the Group or user names pane, click Administrators.<br />
Click to select the Deny check box for the Read permission.<br />
Click OK.</p>
<p>You can also use this great PowerShell scipt:<br />
<code>$folders = Get-ChildItem | where-object {$_.psiscontainer};<br />
foreach ($folder in $folders)<br />
{<br />
    $desktopIni = Get-ChildItem $folder -Filter desktop.ini -Force<br />
    if ($desktopIni -ne $null)<br />
    {<br />
         $Acl = Get-Acl $desktopIni.FullName<br />
         $Ar = New-Object system.security.accesscontrol.filesystemaccessrule `<br />
                   ("groupName","Read","Deny")<br />
         $Acl.SetAccessRule($Ar)<br />
         Set-Acl $desktopIni.FullName $Acl<br />
    }<br />
}</code></p>
<p>Thanx to this great <a href="http://blog.salamandersoft.co.uk/index.php/2010/09/how-to-stop-home-folders-being-renamed-documents-in-the-network-share/">blog</a> by Richard Willis!!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/djseppie.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/djseppie.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/djseppie.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/djseppie.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/djseppie.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/djseppie.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/djseppie.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/djseppie.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/djseppie.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/djseppie.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/djseppie.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/djseppie.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/djseppie.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/djseppie.wordpress.com/174/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djseppie.wordpress.com&amp;blog=6989968&amp;post=174&amp;subd=djseppie&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://djseppie.wordpress.com/2010/11/16/how-to-revert-renamed-user-homefolders-to-my-documents/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2faeea7e813765f7605b1bbedf7d0b5d?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">djseppie</media:title>
		</media:content>
	</item>
		<item>
		<title>Enable Sound Icon Windows XP using script</title>
		<link>http://djseppie.wordpress.com/2010/07/20/enable-sound-icon-windows-xp-using-script/</link>
		<comments>http://djseppie.wordpress.com/2010/07/20/enable-sound-icon-windows-xp-using-script/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 13:37:36 +0000</pubDate>
		<dc:creator>djseppie</dc:creator>
				<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://djseppie.wordpress.com/?p=170</guid>
		<description><![CDATA[Today my customer wanted to have the volume icon in the taskbar enabled. Easy, was the first thought. But during my search i investiogated it was a bit harder. Here&#8217;s the solution: Import the following registry key: reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Applets\SysTray" /v Services /t REG_DWORD /d 31 /f Start the following program: c:\WINDOWS\system32\systray.exe Voilà !<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djseppie.wordpress.com&amp;blog=6989968&amp;post=170&amp;subd=djseppie&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today my customer wanted to have the volume icon in the taskbar enabled.<br />
Easy, was the first thought. But during my search i investiogated it was a bit harder.</p>
<p>Here&#8217;s the solution:<br />
Import the following registry key:</p>
<p><code>reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Applets\SysTray" /v Services /t REG_DWORD /d 31 /f</code></p>
<p>Start the following program:<br />
<code>c:\WINDOWS\system32\systray.exe</code></p>
<p>Voilà !</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/djseppie.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/djseppie.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/djseppie.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/djseppie.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/djseppie.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/djseppie.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/djseppie.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/djseppie.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/djseppie.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/djseppie.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/djseppie.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/djseppie.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/djseppie.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/djseppie.wordpress.com/170/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djseppie.wordpress.com&amp;blog=6989968&amp;post=170&amp;subd=djseppie&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://djseppie.wordpress.com/2010/07/20/enable-sound-icon-windows-xp-using-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2faeea7e813765f7605b1bbedf7d0b5d?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">djseppie</media:title>
		</media:content>
	</item>
		<item>
		<title>Show Dell Asset tag / part number / serial number using VB-script</title>
		<link>http://djseppie.wordpress.com/2010/07/19/show-dell-asset-tag-part-number-serial-number-using-vb-script/</link>
		<comments>http://djseppie.wordpress.com/2010/07/19/show-dell-asset-tag-part-number-serial-number-using-vb-script/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 10:11:03 +0000</pubDate>
		<dc:creator>djseppie</dc:creator>
				<category><![CDATA[Scripting]]></category>
		<category><![CDATA[dell asset tag]]></category>
		<category><![CDATA[dell part number script]]></category>
		<category><![CDATA[dell serial number script]]></category>
		<category><![CDATA[vbscript]]></category>

		<guid isPermaLink="false">http://djseppie.wordpress.com/?p=165</guid>
		<description><![CDATA[This little vb-script shows the Asset tag / part number of serial number of your Dell computer. strComputer = "." Set objWMIService = GetObject("winmgmts:" _ &#38; "{impersonationLevel=impersonate}!\\" &#38; strComputer &#38; "\root\cimv2") Set colSMBIOS = objWMIService.ExecQuery _ ("Select * from Win32_SystemEnclosure") For Each objSMBIOS in colSMBIOS Wscript.Echo "Part Number: " &#38; objSMBIOS.PartNumber Wscript.Echo "Serial Number: " [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djseppie.wordpress.com&amp;blog=6989968&amp;post=165&amp;subd=djseppie&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This little vb-script shows the Asset tag / part number of serial number of your Dell computer.</p>
<p><code>strComputer = "."<br />
Set objWMIService = GetObject("winmgmts:" _<br />
&amp; "{impersonationLevel=impersonate}!\\" &amp; strComputer &amp; "\root\cimv2")</p>
<p>Set colSMBIOS = objWMIService.ExecQuery _<br />
("Select * from Win32_SystemEnclosure")</p>
<p>For Each objSMBIOS in colSMBIOS<br />
Wscript.Echo "Part Number: " &amp; objSMBIOS.PartNumber<br />
Wscript.Echo "Serial Number: " &amp; objSMBIOS.SerialNumber<br />
Wscript.Echo "Asset Tag: " &amp; objSMBIOS.SMBIOSAssetTag<br />
Next</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/djseppie.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/djseppie.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/djseppie.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/djseppie.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/djseppie.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/djseppie.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/djseppie.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/djseppie.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/djseppie.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/djseppie.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/djseppie.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/djseppie.wordpress.com/165/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/djseppie.wordpress.com/165/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/djseppie.wordpress.com/165/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djseppie.wordpress.com&amp;blog=6989968&amp;post=165&amp;subd=djseppie&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://djseppie.wordpress.com/2010/07/19/show-dell-asset-tag-part-number-serial-number-using-vb-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2faeea7e813765f7605b1bbedf7d0b5d?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">djseppie</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows Update Error 0x8024000C</title>
		<link>http://djseppie.wordpress.com/2010/07/19/windows-update-error-0x8024000c/</link>
		<comments>http://djseppie.wordpress.com/2010/07/19/windows-update-error-0x8024000c/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 09:59:31 +0000</pubDate>
		<dc:creator>djseppie</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[0x8024000C]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[windows update]]></category>

		<guid isPermaLink="false">http://djseppie.wordpress.com/?p=162</guid>
		<description><![CDATA[Today i discovered a solution for a problem with my own laptop. Windows update comes with the error 0x8024000C when i manually click on Windows Update. Today the windows 7 solution center told me windows updates could not install. When i take a look in the windows update.log, located at c:\Windows\WindowsUpdate.log, i saw the error: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djseppie.wordpress.com&amp;blog=6989968&amp;post=162&amp;subd=djseppie&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today i discovered a solution for a problem with my own laptop. Windows update comes with the error 0x8024000C when i manually click on Windows Update.<br />
Today the windows 7 solution center told me windows updates could not install. When i take a look in the windows update.log, located at c:\Windows\WindowsUpdate.log, i saw the error: WARNING: Returning due to error from GetDownloadProgressUx, error = 0x8024000C</p>
<p>When i visit customers, i always need to fill in a proxy server. This was exactly the problem, and as i don&#8217;t frequently use Internet Explorer this problem occured. I was able to solve it by simply deleting the folowing registry key:</p>
<div id="_mcePaste">HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\Connections</div>
<div id="_mcePaste">&#8220;WinHttpSettings&#8221;</div>
<div></div>
<div>Then i restarted the windows update service and checked for updates. yet another problem solved <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/djseppie.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/djseppie.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/djseppie.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/djseppie.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/djseppie.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/djseppie.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/djseppie.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/djseppie.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/djseppie.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/djseppie.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/djseppie.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/djseppie.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/djseppie.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/djseppie.wordpress.com/162/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djseppie.wordpress.com&amp;blog=6989968&amp;post=162&amp;subd=djseppie&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://djseppie.wordpress.com/2010/07/19/windows-update-error-0x8024000c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2faeea7e813765f7605b1bbedf7d0b5d?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">djseppie</media:title>
		</media:content>
	</item>
		<item>
		<title>Dell OptiPlex 740 i.c.m. Novell ZENworks Endpoint Security Client</title>
		<link>http://djseppie.wordpress.com/2010/07/02/dell-optiplex-740-i-c-m-novell-zenworks-endpoint-security-client/</link>
		<comments>http://djseppie.wordpress.com/2010/07/02/dell-optiplex-740-i-c-m-novell-zenworks-endpoint-security-client/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 10:45:24 +0000</pubDate>
		<dc:creator>djseppie</dc:creator>
				<category><![CDATA[Novell]]></category>
		<category><![CDATA[ictivity]]></category>
		<category><![CDATA[nforce4]]></category>
		<category><![CDATA[novell zenworks endpoint security client]]></category>
		<category><![CDATA[zesm]]></category>

		<guid isPermaLink="false">http://djseppie.wordpress.com/?p=149</guid>
		<description><![CDATA[Yesterday I was facing a annoying problem. Once a Dell OptiPlex 740 was reimaged and the Novell Zenworks Endpoint Security Client was installed, a blue screen occurred at the next startup. The problem occurred almost immediately at booting. The cause was a old raid driver nvata.inf (date 2006) which belongs to the nForce4 chipset. With the new driver (DriverVer=08/18/2008,10.3.0.42) [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djseppie.wordpress.com&amp;blog=6989968&amp;post=149&amp;subd=djseppie&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Yesterday I was facing a annoying problem. Once a Dell OptiPlex 740 was reimaged and the Novell Zenworks Endpoint Security Client was installed, a blue screen occurred at the next startup. The problem occurred almost immediately at booting.</p>
<p>The cause was a old raid driver nvata.inf (date 2006) which belongs to the nForce4 chipset.<br />
With the new driver (DriverVer=08/18/2008,10.3.0.42) it was all working fine. I downloaded it from <a title="http://www.nvidia.com" href="www.nvidia.com">www.nvidia.com</a></p>
<p>Using devcon, I updated the existing devices:</p>
<div id="_mcePaste" style="text-align:left;">devcon update C:\Drv\B2\nvgts.inf  &#8221;PCI\VEN_10DE&amp;DEV_0266&amp;SUBSYS_01EC1028&amp;REV_A1&#8243;</div>
<div style="text-align:left;">devcon update C:\Drv\B2\nvgts.inf  &#8221;PCI\VEN_10DE&amp;DEV_0267&amp;SUBSYS_01EC1028&amp;REV_A1&#8243;</div>
<p style="text-align:left;">devcon update C:\Drv\B2\nvgts.inf  &#8221;PCI\VEN_10DE&amp;DEV_0266&amp;SUBSYS_01EC1028&amp;REV_A1&#8243;<br />
devcon update C:\Drv\B2\nvgts.inf  &#8221;PCI\VEN_10DE&amp;DEV_0267&amp;SUBSYS_01EC1028&amp;REV_A1&#8243;</p>
<p style="text-align:left;">If you want to know how to install the Zenworks Endpoint Security Client silent, click <a title="here" href="http://djseppie.wordpress.com/2010/07/02/novell-zenworks-endpoint-security-client-silent-install/">here</a>!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/djseppie.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/djseppie.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/djseppie.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/djseppie.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/djseppie.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/djseppie.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/djseppie.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/djseppie.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/djseppie.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/djseppie.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/djseppie.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/djseppie.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/djseppie.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/djseppie.wordpress.com/149/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djseppie.wordpress.com&amp;blog=6989968&amp;post=149&amp;subd=djseppie&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://djseppie.wordpress.com/2010/07/02/dell-optiplex-740-i-c-m-novell-zenworks-endpoint-security-client/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2faeea7e813765f7605b1bbedf7d0b5d?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">djseppie</media:title>
		</media:content>
	</item>
		<item>
		<title>Novell ZENworks Endpoint Security Client silent install</title>
		<link>http://djseppie.wordpress.com/2010/07/02/novell-zenworks-endpoint-security-client-silent-install/</link>
		<comments>http://djseppie.wordpress.com/2010/07/02/novell-zenworks-endpoint-security-client-silent-install/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 10:43:18 +0000</pubDate>
		<dc:creator>djseppie</dc:creator>
				<category><![CDATA[Novell]]></category>
		<category><![CDATA[ictivity]]></category>
		<category><![CDATA[novell zenworks endpoint security client]]></category>
		<category><![CDATA[silent install zesm]]></category>
		<category><![CDATA[zesm]]></category>

		<guid isPermaLink="false">http://djseppie.wordpress.com/?p=156</guid>
		<description><![CDATA[If you want to silent install the Novell ZENworks Endpoint Security Client, you must use Wise Install Tailor (or another utility to build a MST file) and Orca. Open the ZENworks Security Client.msi using install tailor. Walk though the wizard and at the end you&#8217;ll have a MST file. Start Orca and open the &#8220;ZENworks Security [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djseppie.wordpress.com&amp;blog=6989968&amp;post=156&amp;subd=djseppie&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you want to silent install the Novell ZENworks Endpoint Security Client, you must use Wise Install Tailor (or another utility to build a MST file) and <a title="Orca" href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=0baf2b35-c656-4969-ace8-e4c0c0716adb">Orca</a>.<br />
Open the ZENworks Security Client.msi using install tailor. Walk though the wizard and at the end you&#8217;ll have a MST file.</p>
<p>Start Orca and open the &#8220;ZENworks Security Client.msi&#8221; and select &#8220;transforms&#8221;, followed by &#8220;new transform&#8221;.<br />
Now browse to the table &#8220;property&#8221; and change the value of &#8220;STRBR&#8221; and change the value &#8220;Force&#8221; into &#8220;ReallySuppress&#8221;.</p>
<p>Click transform and close transform. Voila!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/djseppie.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/djseppie.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/djseppie.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/djseppie.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/djseppie.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/djseppie.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/djseppie.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/djseppie.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/djseppie.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/djseppie.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/djseppie.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/djseppie.wordpress.com/156/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/djseppie.wordpress.com/156/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/djseppie.wordpress.com/156/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=djseppie.wordpress.com&amp;blog=6989968&amp;post=156&amp;subd=djseppie&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://djseppie.wordpress.com/2010/07/02/novell-zenworks-endpoint-security-client-silent-install/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2faeea7e813765f7605b1bbedf7d0b5d?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">djseppie</media:title>
		</media:content>
	</item>
	</channel>
</rss>
