<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>www.dambeck.ch</title>
	<atom:link href="http://www.dambeck.ch/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dambeck.ch</link>
	<description>Die andere Seite des Internets</description>
	<lastBuildDate>Sun, 30 Aug 2009 17:29:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Change the path SQL 2008 Server Database</title>
		<link>http://www.dambeck.ch/2009/08/30/change-the-path-sql-2008-server-database/</link>
		<comments>http://www.dambeck.ch/2009/08/30/change-the-path-sql-2008-server-database/#comments</comments>
		<pubDate>Sun, 30 Aug 2009 17:29:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[EDV & Admin Stuff]]></category>
		<category><![CDATA[2007]]></category>
		<category><![CDATA[ldf]]></category>
		<category><![CDATA[master.mdf]]></category>
		<category><![CDATA[mdb]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.dambeck.ch/2009/08/30/change-the-path-sql-2008-server-database/</guid>
		<description><![CDATA[In the most cases there are benefits when all data (log and db) files are on the network storage. Think off the benefit in terms of performance and backup. The Install wizard of Microsoft SQL Server 2008 shows only the option to change the path of the temporary database. In this guide I show you [...]]]></description>
			<content:encoded><![CDATA[<p>In the most cases there are benefits when all data (log and db) files are on the network storage. Think off the benefit in terms of performance and backup. The Install wizard of Microsoft SQL Server 2008 shows only the option to change the path of the temporary database. In this guide I show you how to move the databases. Please keep in mind to create a backup of your db’s before starting. I know backup is only for hot shower takers, gym bag losers and armpit hair blow-dryers;-). On my test server the path looks like:
<p>master.mdf, masterlog.ldf
<p>C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER08\MSSQL\DATA
<p>Model.mdf, modellog.ldf
<p>C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER08\MSSQL\DATA
<p>MSDBdata.mdf, MSDBlog.mdf
<p>C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER08\MSSQL\DATA
<p>Tempdbv.mdf, templog.ldf
<p>C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER08\MSSQL\DATA
<p>planetgeek.mdf, planetgeek_log.ldf
<p>C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER08\MSSQL\DATA
<p>First thing you notice the filenames are all tuned in the same schema, pls. Microsoft it cannot be so hard. Our mission is to move all log files in the path D:\mssqlserver08 and all data files to E:\mssqlserver08. The first thing we should do is give the sqlserver service account user read and write rights to this two directories. This step is not quiet necessary but the remote db creation and auto grow features will not work. Let&#8217;s start with the master db. Start the SQL Server Configuration Manager. Click “start” -&gt; “run” and type “SQLServerManager10.msc” and right click on the properties from the SQL server Service.
<p><a href="http://www.dambeck.ch/wp-content/uploads/2009/08/clip-image002.jpg"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="141" alt="clip_image002" src="http://www.dambeck.ch/wp-content/uploads/2009/08/clip-image002-thumb.jpg" width="573" border="0"></a>
<p>In the advanced tab you have to edit the Startup Parameters
<p><a href="http://www.dambeck.ch/wp-content/uploads/2009/08/clip-image004.jpg"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="244" alt="clip_image004" src="http://www.dambeck.ch/wp-content/uploads/2009/08/clip-image004-thumb.jpg" width="222" border="0"></a>
<p>The default value is (keep in mind there are no spaces!!!):
<p>-dC:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER08\MSSQL\DATA\master.mdf;
<p>-eC:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER08\MSSQL\Log\ERRORLOG;
<p>-lC:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER08\MSSQL\DATA\mastlog.ldf
<p>-d is the path to the master.mdf
<p>-e path of the “ERRORLOG” File.
<p> -l is path to the ldf File
<p>After change the path to (keep in mind there are no spaces!!!):
<p>-dD:\mssqlserver08\master.mdf;
<p>-eD:\errorlog\ERRORLOG;
<p>-lE:\mssqlserver08\mastlog.ldf
<p>stop the sql server (for cluster use you can use an UNC path and share name. This is useful on relaxed security cluster environments). Copy the master db files to the new path. And start the SQL server Service. One step done four steps are left, so let&#8217;s move on with the temporary db. Open the SQL Server Management Studio and open a new query and enter the following lines
<p><a href="http://www.dambeck.ch/wp-content/uploads/2009/08/clip-image006.jpg"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="171" alt="clip_image006" src="http://www.dambeck.ch/wp-content/uploads/2009/08/clip-image006-thumb.jpg" width="244" border="0"></a>
<p>After the alter database statement you need to stop the Sql Server move the files in explorer to their new location and start the SQL Server Service. Many of you are maybe wondering why “ … name = tempdev, …” and the “name = templog” in the SQL query. This is the internal database name. A very easy name to get this name is stored procedure sp_help
<p><a href="http://www.dambeck.ch/wp-content/uploads/2009/08/clip-image007.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="117" alt="clip_image007" src="http://www.dambeck.ch/wp-content/uploads/2009/08/clip-image007-thumb.png" width="244" border="0"></a>
<p>with this procedure you are able to easily modify the path of all other databases. Normally we would have finished at this point. But after then years of experience as IT guy I know that “developers” often don’t care about path in the file system (developers who write for planetgeek are not this kind of developers <img src='http://www.dambeck.ch/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  . So we should change the default database creation path to ensure it will work even when we are not in the office (Yes the IT Professionals have Holydays;-).
<p><a href="http://www.dambeck.ch/wp-content/uploads/2009/08/clip-image009.jpg"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="130" alt="clip_image009" src="http://www.dambeck.ch/wp-content/uploads/2009/08/clip-image009-thumb.jpg" width="244" border="0"></a>
<p>Enjoy the comfort of non direct attached storage, RIDE ON
<p>Konrad </p>
]]></content:encoded>
			<wfw:commentRss>http://www.dambeck.ch/2009/08/30/change-the-path-sql-2008-server-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Big Brother on Amazon</title>
		<link>http://www.dambeck.ch/2009/08/06/big-brother-on-amazon/</link>
		<comments>http://www.dambeck.ch/2009/08/06/big-brother-on-amazon/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 20:34:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dies und Das]]></category>
		<category><![CDATA[EDV & Admin Stuff]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[BigBrother]]></category>

		<guid isPermaLink="false">http://www.dambeck.ch/2009/08/06/big-brother-on-amazon/</guid>
		<description><![CDATA[I’m Currently in My Yearly Military Reputation curse (WK). So i hade many time to read newspaper. At Thursday the 21 of July there was an nice article in the “Tages Anzeiger” one of the best Newspaper in Swiss. Amazon has an nice e-book reader called Kindle. The device has an “Kill switch” trough this [...]]]></description>
			<content:encoded><![CDATA[<p>I’m Currently in My Yearly Military Reputation curse (WK). So i hade many time to read newspaper. At Thursday the 21 of July there was an nice article in the “Tages Anzeiger” one of the best Newspaper in Swiss. Amazon has an nice e-book reader called Kindle. The device has an “Kill switch” trough this access port Amazon had full control of the device. Many of the next gen devices have this kind of access like the iPhone, Vista, Xbox and PS 3…. So Amazon sells books without have the digital publishing rights, uses the kill switch to delete these books from their readers and give the customer the money back. the book that was deleted was 1984 from Orwell Gerorge. For all geeks how don’t have read the book READ IT. The story goes like Boy meets girl in London, the story plays in an totalitarian society led by Big Brother. The beig borther controls the mind of all citizens. To fore his control the big Brother delets books.
<p>Nice Irony I guess </p>
]]></content:encoded>
			<wfw:commentRss>http://www.dambeck.ch/2009/08/06/big-brother-on-amazon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ask a Geek Question, most useful mac os x apps.</title>
		<link>http://www.dambeck.ch/2009/07/12/ask-a-geek-question-most-useful-mac-os-x-apps/</link>
		<comments>http://www.dambeck.ch/2009/07/12/ask-a-geek-question-most-useful-mac-os-x-apps/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 10:47:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dies und Das]]></category>
		<category><![CDATA[EDV & Admin Stuff]]></category>
		<category><![CDATA[Fun Fun Fun]]></category>
		<category><![CDATA[Cyberduck]]></category>
		<category><![CDATA[freeciv]]></category>
		<category><![CDATA[keypass]]></category>
		<category><![CDATA[Latex]]></category>
		<category><![CDATA[MAC]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Skype]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.dambeck.ch/2009/07/12/ask-a-geek-question-most-useful-mac-os-x-apps/</guid>
		<description><![CDATA[Martin one of are famous blog reader submitted an wish, &#8230; Would love to see kind of most useful mac os x apps. I know there are lots of other sites on the web taking care of it already, but hey guys its a growing community. Just a hint. Well keep up your great work. [...]]]></description>
			<content:encoded><![CDATA[<p>Martin one of are famous blog reader submitted an wish, &#8230; Would love to see kind of most useful mac os x apps. I know there are lots of other sites on the web taking care of it already, but hey guys its a growing community. Just a hint. Well keep up your great work. Martin. </p>
<p>The question is not so easy as it guess. Because Mac OS X leopard has many of the things I nee built-in. Let us start with some basic tools I Use. </p>
<p>VMware Fusion. is a virtual machine software product developed by VMware for Macintosh computers with Intel processors. Fusion allows Intel-based Macs to run x86 and x86-64 &quot;guest&quot; operating systems, such as Microsoft Windows, Linux, NetWare and Solaris as virtual machines simultaneously with Mac OS X as the &quot;host&quot; operating system using a combination of virtualization, emulation and dynamic recompilation. While similar in most respects to VMware Workstation. </p>
<p>Skype is a software application that allows users to make telephone calls over the Internet. Calls to other users of the service, and in some countries to free-of-charge numbers are free, while calls to other landlines and mobile phones can be made for a fee. Additional features include instant messaging, file transfer and video conferencing. </p>
<p>Keypass X&#160; is a free open source password manager, which helps you to manage your passwords in a secure way. You can put all your passwords in one database, which is locked with one master key or a key file. So you only have to remember one single master password or select the key file to unlock the whole database. The databases are encrypted using the best and most secure encryption algorithms currently known (AES and Twofish) </p>
<p>Microsoft Office 2008, Word PowerPoint, Excel and Entourage. More or less the same bugi thing like on Windows. </p>
<p>LaTeX is based on the idea that authors should be able to focus on the content of what they are writing without being distracted by its visual presentation. In preparing a LaTeX document, the author specifies the logical structure using familiar concepts such as chapter, section, table, figure, etc., and lets the LaTeX system worry about the presentation of these structures. It therefore encourages the separation of layout from content while still allowing manual typesetting adjustments where needed. </p>
<p>Cyberduck is an open source FTP, SFTP, WebDAV, Mosso Cloud Files and Amazon S3 browser for the Mac. It features an easy to use interface with quickly accessible bookmarks. The outline view of the browser allows to browse large folder structures efficiently and you can quickly preview files with Quick Look. To edit files, a seamless integration with several external editors makes it easy to change content quickly. Both Amazon CloudFront and Cloud Files from Rackspace can be easily configured to distribute your content in the cloud. Many OS X core system technologies such as Spotlight, Bonjour and the Keychain are supported and a large number of translations makes you feel at home. </p>
<p>Freeciv is a multiplayer, turn-based strategy game for workstations and personal computers inspired by the commercial proprietary Sid Meier&#8217;s Civilization series. The game&#8217;s default settings are closest to Civilization II, both in gameplay and graphics (including the units and the isometric grid). </p>
<p>These are the Programs that make my 24 iMac to a Powerful blog machine. There is only one thing I am missing. On windows there is a free Software called Live Writer. Live writer make blogging very easy but I don&#8217;t find a Sirius alternative for Mac. If you know something pls don&#8217;t hesitated post a commend. </p>
<p>Regards Konrad </p>
]]></content:encoded>
			<wfw:commentRss>http://www.dambeck.ch/2009/07/12/ask-a-geek-question-most-useful-mac-os-x-apps/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Kick the crashed AD controller out</title>
		<link>http://www.dambeck.ch/2009/05/24/kick-the-crashed-ad-controller-out/</link>
		<comments>http://www.dambeck.ch/2009/05/24/kick-the-crashed-ad-controller-out/#comments</comments>
		<pubDate>Sun, 24 May 2009 15:15:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[AD]]></category>
		<category><![CDATA[Controller]]></category>
		<category><![CDATA[Domain]]></category>
		<category><![CDATA[FSMO]]></category>

		<guid isPermaLink="false">http://www.dambeck.ch/2009/05/24/kick-the-crashed-ad-controller-out/</guid>
		<description><![CDATA[Sometimes bad things happen, sometimes ugly things happen. One of the very bad things that can happen is when&#160; an active domain controller crashes and there is no backup available. The case becomes really ugly if nobody cares about the crashed controller for about 60 days (forest that was created on a domain controller running [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes bad things happen, sometimes ugly things happen. One of the very bad things that can happen is when&#160; an active domain controller crashes and there is no backup available. The case becomes really ugly if nobody cares about the crashed controller for about 60 days (forest that was created on a domain controller running Windows Server 2003 and earlier) or 180 days (forest that was created on a domain controller running Windows Server 2003 sp1 and later). On this depends the default tombstone lifetime of directory objects. Later we will investigate on the tombstone. </p>
<p>A good place to fix this whole bunch of problems is by verifying the backup strategy and ensuring that all system-states are saved on all domain controllers. The second step is verifying that DNS are fine and syncing the proper way. Now we are ready to move the FSMO roles. For everyone that is not familiar with the five FSMO Friends, here is a small overview from Wikipedia </p>
<p>Flexible Single Master of Operation (FSMO, F is sometimes floating ; pronounced Fiz-mo), or just single master operation or operations master, is a feature of Microsoft&#8217;s Active Directory (AD). As of 2005, the term FSMO has been deprecated in favor of operations masters. </p>
<p>FSMOs are specialized domain controller (DC) tasks, used where standard data transfer and update methods are inadequate. AD normally relies on multiple peer DCs, each with a copy of the AD database, being synchronized by multi-master replication. The tasks which are not suited to multi-master replication, and are viable only with a single-master database, are the FSMOs. </p>
<p>Domain-wide FSMO Roles: </p>
<p>Every domain in an Active Directory forest must contain one of each of the following FSMO roles:    <br />The Relative ID Master allocates security RIDs to DCs to assign to new AD security principals (users, groups or computer objects). It also manages objects moving between domains.     <br />The Infrastructure Master maintains security identifiers, GUIDs, and DNS for objects referenced across domains. Most commonly it updates user and group links. This is another domain-specific role and its purpose is to ensure that cross-domain object references are correctly handled. For example, if you add a user from one domain to a security group from a different domain, the Infrastructure Master makes sure this is done properly. As you can guess however, if your Active Directory deployment has only a single domain, then the Infrastructure Master role does no work at all, and even in a multi-domain environment it is rarely used except when complex user administration tasks are performed, so the machine holding this role doesn&#8217;t need to have much horsepower at all.     <br />The PDC Emulator operations master role processes all password changes in the domain. Failed authentication attempts due to a bad password at other domain controllers are forwarded to the PDC Emulator before rejection. This ensures that a user can immediately login following a password change from any domain controller, without having to wait several minutes for the change to be replicated. The PDC Emulator Operations Master role must be carefully sited in a location to best handle all password reset and failed-authentication forwarding traffic for the domain. </p>
<p>Forest-wide FSMO Roles: </p>
<p>Regardless of the number of domains in an Active Directory forest, the following FSMO roles exist only once:    <br />The Schema Master maintains all modifications to the schema of the forest. The schema determines the types of objects permitted in the forest and the attributes of those objects.     <br />The Domain Naming Master tracks the names of all domains in the forest and is required to add new domains to the forest or delete existing domains from the forest. It is also responsible for group membership. </p>
<p>Normally it&#8217;s very easy to move these roles by right clicking the forest level and choose Move &#8230;&#160; in the Active Directory Schema snap-in, Active Directory Domains and Trusts snap-in and Active Directory Users and Computers snap-in. But it will fail to 99% with an obscure error. The reason for the error is one domain controller in the replica ring is missing and marked as Tombstone. Let&#8217;s get to the bigger guns and start &#8220;ntdsutil.exe&#8221;, open a command prompt and enter &#8220;ntdsutil.exe&#8221;. If the shell is bugging you that the exe is missing, you need to install the server support tools. They are located on the Windows CD in the support folder. Other ways you can download it from Microsoft using Google ☺. </p>
<p>!! Remember at this point you can do very large harm to the directory so please be sure that you have properly working backups!! </p>
<p>After &#8220;ntdsutil.exe&#8221; has successful started, type &#8220;roles&#8221; and press enter. Type &#8220;connections&#8221; and press enter. Now Type &#8220;connect to server xyz.planetgeek.ch&#8221;, where xyz.planetgeek.ch is the name of the server where you want to transfer the roles to. A message will appear: </p>
<p>&#8220;Binding to xyz.planetgeek.ch &#8230;    <br />Connected to servername using credentials of locally logged on user.&#8221; </p>
<p>Tipe &#8220;quit&#8221; to leave the selection menu. Now appears: &#8220;fsmo maintenance:&#8221; now enter: </p>
<p>&#8220;Seize schema master&#8221; if you want move the schema master.    <br />&#8220;Seize domain naming master&#8221; if you want move the naming master.     <br />&#8220;Seize PDC&#8221; if you want move the PDC.     <br />&#8220;Seize RID master&#8221; if you want move the Relative ID master.     <br />&#8220;Seize infrastructure master&#8221; if you want move the infrastructure master. </p>
<p>Next thing to do is kicking the metadata out of the directory. To do this I know two possible ways. The first is use a VB script written by Clay Perrine from Microsoft. The second way is to use ntdsutil.exe. I prefer the VB script. It works on the most common Windows Operating systems (2k, XP, 03, Vista and 08). The script is below ore you can obtain it directly from Microsoft (<a href="http://go.microsoft.com/fwlink/?LinkID=123599)">http://go.microsoft.com/fwlink/?LinkID=123599)</a>. </p>
<p><em>REM&#160;&#160;&#160; ==========================================================      <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; GUI Metadata Cleanup Utility       <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Written By Clay Perrine       <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Version 2.5       <br />REM&#160;&#160;&#160; ==========================================================       <br />REM&#160;&#160;&#160;&#160; This tool is furnished &quot;AS IS&quot;. NO warranty is expressed or Implied. </em></p>
<p><em>on error resume next      <br />dim objRoot,oDC,sPath,outval,oDCSelect,objConfiguration,objContainer,errval,ODCPath,ckdcPath,myObj,comparename </em></p>
<p><em>rem =======This gets the name of the computer that the script is run on ====== </em></p>
<p><em>Set sh = CreateObject(&quot;WScript.Shell&quot;)      <br />key= &quot;HKEY_LOCAL_MACHINE&quot;       <br />computerName = sh.RegRead(key &amp; &quot;\SYSTEM\CurrentControlSet\Control\ComputerName\ComputerName\ComputerName&quot;) </em></p>
<p><em>rem === Get the default naming context of the domain==== </em></p>
<p><em>set objRoot=GetObject(&quot;LDAP://RootDSE&quot;)      <br />sPath = &quot;LDAP://OU=Domain Controllers,&quot; &amp; objRoot.Get(&quot;defaultNamingContext&quot;) </em></p>
<p><em>rem === Get the list of domain controllers==== </em></p>
<p><em>Set objConfiguration = GetObject(sPath)      <br />For Each objContainer in objConfiguration       <br />&#160;&#160;&#160; outval = outval &amp; vbtab &amp;&#160; objContainer.Name &amp; VBCRLF       <br />Next       <br />outval = Replace(outval, &quot;CN=&quot;, &quot;&quot;) </em></p>
<p><em>rem ==Retrieve the name of the broken DC from the user and verify it&#8217;s not this DC.=== </em></p>
<p><em>oDCSelect= InputBox (outval,&quot; Enter the computer name to be removed&quot;,&quot;&quot;)      <br />comparename = UCase(oDCSelect) </em></p>
<p><em>if comparename = computerName then      <br />&#160;&#160;&#160; msgbox &quot;The Domain Controller you entered is the machine that is running this script.&quot; &amp; vbcrlf &amp; _       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &quot;You cannot clean up the metadata for the machine that is running the script!&quot;,,&quot;Metadata Cleanup Utility Error.&quot;       <br />&#160;&#160;&#160; wscript.quit       <br />End If </em></p>
<p><em>sPath = &quot;LDAP://OU=Domain Controllers,&quot; &amp; objRoot.Get(&quot;defaultNamingContext&quot;)      <br />Set objConfiguration = GetObject(sPath) </em></p>
<p><em>For Each objContainer in objConfiguration      <br />&#160;&#160;&#160; Err.Clear       <br />&#160;&#160;&#160; ckdcPath = &quot;LDAP://&quot; &amp; &quot;CN=&quot; &amp; oDCSelect &amp; &quot;,OU=Domain Controllers,&quot; &amp; objRoot.Get(&quot;defaultNamingContext&quot;)       <br />&#160;&#160;&#160; set myObj=GetObject(ckdcPath)       <br />&#160;&#160;&#160; If err.number &lt;&gt;0 Then       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; errval= 1       <br />&#160;&#160;&#160; End If       <br />Next </em></p>
<p><em>If errval = 1 then      <br />&#160;&#160;&#160; msgbox &quot;The Domain Controller you entered was not found in the Active Directory&quot;,,&quot;Metadata Cleanup Utility Error.&quot;       <br />&#160;&#160;&#160; wscript.quit       <br />End If </em></p>
<p><em>abort = msgbox (&quot;You are about to remove all metadata for the server &quot; &amp; oDCSelect &amp; &quot;! Are you sure?&quot;,4404,&quot;WARNING!!&quot;)      <br />if abort &lt;&gt; 6 then       <br />&#160;&#160;&#160; msgbox &quot;Metadata Cleanup Aborted.&quot;,,&quot;Metadata Cleanup Utility Error.&quot;       <br />&#160;&#160;&#160; wscript.quit       <br />end if </em></p>
<p><em>oDCSelect = &quot;CN=&quot; &amp; oDCSelect      <br />ODCPath =&quot;LDAP://&quot; &amp; oDCselect &amp; &quot;,OU=Domain Controllers,&quot; &amp; objRoot.Get(&quot;defaultNamingContext&quot;)       <br />sSitelist = &quot;LDAP://CN=Sites,CN=Configuration,&quot; &amp; objRoot.Get(&quot;defaultNamingContext&quot;)       <br />Set objConfiguration = GetObject(sSitelist)       <br />For Each objContainer in objConfiguration       <br />&#160;&#160;&#160; Err.Clear       <br />&#160;&#160;&#160; sitePath = &quot;LDAP://&quot; &amp; oDCSelect &amp; &quot;,CN=Servers,&quot; &amp;&#160; objContainer.Name &amp; &quot;,CN=Sites,CN=Configuration,&quot; &amp; _       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; objRoot.Get(&quot;defaultNamingContext&quot;)       <br />&#160;&#160;&#160; set myObj=GetObject(sitePath)       <br />&#160;&#160;&#160; If err.number = 0 Then       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; siteval = sitePath       <br />&#160;&#160;&#160; End If&#160;&#160;&#160; <br />Next </em></p>
<p><em>sFRSSysvolList = &quot;LDAP://CN=Domain System Volume (SYSVOL share),CN=File Replication Service,CN=System,&quot; &amp; _      <br />&#160;&#160;&#160; objRoot.Get(&quot;defaultNamingContext&quot;)       <br />Set objConfiguration = GetObject(sFRSSysvolList) </em></p>
<p><em>For Each objContainer in objConfiguration      <br />&#160;&#160;&#160; Err.Clear       <br />&#160;&#160;&#160; SYSVOLPath = &quot;LDAP://&quot; &amp; oDCSelect &amp; &quot;,CN=Domain System Volume (SYSVOL share),CN=File Replication Service,CN=System,&quot; &amp; _       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; objRoot.Get(&quot;defaultNamingContext&quot;)       <br />&#160;&#160;&#160; set myObj=GetObject(SYSVOLPath)       <br />&#160;&#160;&#160; If err.number = 0 Then       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; SYSVOLval = SYSVOLPath       <br />&#160;&#160;&#160; End If       <br />Next </em></p>
<p><em>SiteList = Replace(sSitelist, &quot;LDAP://&quot;, &quot;&quot;)      <br />VarSitelist = &quot;LDAP://CN=Sites,CN=Configuration,&quot; &amp; objRoot.Get(&quot;defaultNamingContext&quot;)       <br />Set SiteConfiguration = GetObject(VarSitelist) </em></p>
<p><em>For Each SiteContainer in SiteConfiguration      <br />&#160;&#160;&#160; Sitevar = SiteContainer.Name       <br />&#160;&#160;&#160; VarPath =&quot;LDAP://OU=Domain Controllers,&quot; &amp; objRoot.Get(&quot;defaultNamingContext&quot;)       <br />&#160;&#160;&#160; Set DCConfiguration = GetObject(VarPath)       <br />&#160;&#160;&#160; For Each DomContainer in DCConfiguration       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; DCVar = DomContainer.Name       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; strFromServer = &quot;&quot;       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; NTDSPATH =&#160; DCVar &amp; &quot;,CN=Servers,&quot; &amp; SiteVar &amp; &quot;,&quot; &amp; SiteList       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; GuidPath = &quot;LDAP://CN=NTDS Settings,&quot;&amp; NTDSPATH       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Set objCheck = GetObject(NTDSPATH)       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; For Each CheckContainer in objCheck       <br />rem ====check for valid site paths =======================       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ldapntdspath = &quot;LDAP://&quot; &amp; NTDSPATH       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Err.Clear       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; set exists=GetObject(ldapntdspath)       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; If err.number = 0 Then       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Set oGuidGet = GetObject(GuidPath)       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; For Each objContainer in oGuidGet       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; oGuid = objContainer.Name       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; oGuidPath = &quot;LDAP://&quot; &amp; oGuid &amp; &quot;,CN=NTDS Settings,&quot; &amp; NTDSPATH&#160; <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Set objSitelink = GetObject(oGuidPath)       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; objSiteLink.GetInfo       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; strFromServer = objSiteLink.Get(&quot;fromServer&quot;)       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ispresent = Instr(1,strFromServer,oDCSelect,1) </em></p>
<p><em>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if ispresent &lt;&gt; 0 then      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Set objReplLinkVal = GetObject(oGuidPath)       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; objReplLinkVal.DeleteObject(0)       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; end if       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; next </em></p>
<p><em>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; sitedelval = &quot;CN=&quot; &amp; comparename &amp; &quot;,CN=Servers,&quot; &amp; SiteVar &amp; &quot;,&quot; &amp; SiteList      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if sitedelval = ntdspath then       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Set objguidpath = GetObject(guidpath)       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; objguidpath.DeleteObject(0)       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Set objntdspath = GetObject(ldapntdspath)       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; objntdspath.DeleteObject(0)       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; end if       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; End If       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; next       <br />&#160;&#160;&#160; next       <br />next       <br />Set AccountObject = GetObject(ckdcPath)       <br />temp=Accountobject.Get (&quot;userAccountControl&quot;)       <br />AccountObject.Put &quot;userAccountControl&quot;, &quot;4096&quot;       <br />AccountObject.SetInfo       <br />Set objFRSSysvol = GetObject(SYSVOLval)       <br />objFRSSysvol.DeleteObject(0)       <br />Set objComputer = GetObject(ckdcPath)       <br />objComputer.DeleteObject(0)       <br />Set objConfig = GetObject(siteval)       <br />objConfig.DeleteObject(0)       <br />oDCSelect = Replace(oDCSelect, &quot;CN=&quot;, &quot;&quot;)       <br />msgval = &quot;Metadata Cleanup Completed for &quot; &amp; oDCSelect       <br />msgbox&#160; msgval,,&quot;Notice.&quot;       <br />wscript.quit       <br /></em></p>
<p>An easy to use description of the ntdsutil.exe way you find under <a href="http://technet.microsoft.com/en-us/library/cc736378.aspx">http://technet.microsoft.com/en-us/library/cc736378.aspx</a></p>
<p>Next thing that will drive you crazy are the millions of ntfrs errors in the Eventlog. Ntfrs is the &#8220;New Technology File replication Service&#8221; from Windows. It is used for the replication of the sysvol/ netlogon. Remember Since Windows 2003 R2 nftrs is replaced trough DFS. First of all we are saving the eventlog to a file then clean it and boot every Domain Controller in the domain and wait a few minutes. On my experience this will fix half of the problems, like swiss admins tend to say &#8220;ein boot tut immer gut&#8221; ; -). </p>
]]></content:encoded>
			<wfw:commentRss>http://www.dambeck.ch/2009/05/24/kick-the-crashed-ad-controller-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Net App filer in Vmware</title>
		<link>http://www.dambeck.ch/2009/05/10/net-app-filer-in-vmware/</link>
		<comments>http://www.dambeck.ch/2009/05/10/net-app-filer-in-vmware/#comments</comments>
		<pubDate>Sun, 10 May 2009 10:07:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[Filer]]></category>
		<category><![CDATA[NAS]]></category>
		<category><![CDATA[Net]]></category>
		<category><![CDATA[NetApp]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.dambeck.ch/2009/05/10/net-app-filer-in-vmware/</guid>
		<description><![CDATA[For a project I have to learn some of the specialty of an iScsi NAS. To be precise it was Net App FAS 2500 Filer. These things are very nice but a little too expensive for my personal use. But Net App offers a nice simulator of their product and the simulator is free. You [...]]]></description>
			<content:encoded><![CDATA[<p>For a project I have to learn some of the specialty of an iScsi NAS. To be precise it was Net App FAS 2500 Filer. These things are very nice but a little too expensive for my personal use. But Net App offers a nice simulator of their product and the simulator is free. You just need to create an account on the Net App web site and search for the word &#8221;simulator&#8221; or just follow this link. (<a href="http://now.netapp.com/NOW/cgi-bin/simulator)">http://now.netapp.com/NOW/cgi-bin/simulator)</a>. Some bloody side note: the website doesn&#8217;t work fine with safari. Just use Firefox and all works well in this case. </p>
<p>The other prerequirement you need is a Linux OS. I don&#8217;t want install some bloody Linux on my iMac, so I use VMware Fusion and the problem is solved. I use in this tutorial the Ubuntu 8.04 LTS Server. You might be considering now why I choose Ubuntu, the simple answer is I don&#8217;t known. Normally I use Open SUSE from Novell, but in this case I really don&#8217;t know. Strange things happen some times. Another side note I will guide you trough the installation so don&#8217;t panic if you are not an unix geek. But actually as non console junkie you should consider not to buy an EMC / IBM / &#8230; NAS ☺ </p>
<p>Create a VMware with the normal settings 1 CPU, 10 GB HD,&#160; Nat NIC and 512MB Ram. Attach the OS iso and boot the whole batch job. Using the default settings is a nice strategy for not so experienced user. I only changed the keyboard layout to &#8220;swiss german (mac)&#8221; and check in the screen &#8220;install additional software&#8221; &#8220;ssh server&#8221; file transfer will be easy. Create an user called &#8220;geek&#8221; Then after next, next, &#8230;., next, next. The server has finished the miraculous installation. As a windows administrator the first thing I have done is enter in the console </p>
<p><em>Sudo reboot</em> </p>
<p>After the restart I want to log in as root user, but the install wizard doesn&#8217;t accept the root password. After some time I decided to log in as user &#8220;geek&#8221;. Because it is only a testing environment I decided to enable root login in the console </p>
<p><em>sudo passwd root</em> </p>
<p>After setting the password i started a console session on my mac shell and connected with ssh. You don&#8217;t need to do this but with an ssh session you are able to use Copy and Past with the host OS. For the poor windows user putty is a nice ssh tool. The Mac and Linux user just need to enter the following commands in the console </p>
<p><em>ssh &lt;ip of the VM&gt; -i root</em> </p>
<p>the next thing you need to do is copying the download from the net app side &#8220;7.3.1-tarfile-v22.tar&#8221; to the VM server. I use &#8220;Cyberduck&#8221;. For windows users a nice program is winscp. The Linux guys should use the mighty shell console. By the way I createt a folder named &#8220;/netapp&#8221;. So let us open the tar file </p>
<p><em>tar xvf /netapp/7.3.1-tarfile-v22.tgz </em></p>
<p>In the readme form net app gives us a hint that the simulator uses perl. To install perl on your machine use &#8220;apt-get install perl&#8221;, actually pearl was installed so you don&#8217;t need to do it. Okay now we are ready to start installing the simulator. The strangest thing on this point was I didn&#8217;t have to deal with any problems, all worked just fine. This is a bad sign. </p>
<p><em>cd /netapp/simulator      <br />./setup.sh</em> </p>
<p>and the installation starts. Some logs from the console behind </p>
<p><em>Script version 22 (18/Sep/2007)      <br />Where to install to? [/sim]:       <br />Would you like to install as a cluster? [no]:       <br />Would you like full HTML/PDF FilerView documentation to be installed [yes]:       <br />Continue with installation? [no]: yes       <br />Creating /sim       <br />Unpacking sim.tgz to /sim       <br />Configured the simulators mac address to be [00:50:56:0:6c:5]       <br />Please ensure the simulator is not running.       <br />Your simulator has 3 disk(s). How many more would you like to add? [0]: 10 </em></p>
<p><em>The following disk types are available in MB:      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Real (Usable)       <br />&#160; a -&#160;&#160; 43&#160;&#160; ( 14)       <br />&#160; b -&#160;&#160; 62&#160;&#160; ( 30)       <br />&#160; c -&#160;&#160; 78&#160;&#160; ( 45)       <br />&#160; d -&#160; 129&#160;&#160; ( 90)       <br />&#160; e -&#160; 535&#160;&#160; (450)       <br />&#160; f &#8211; 1024&#160;&#160; (900) </em></p>
<p><em>If you are unsure choose the default option a      <br />What disk size would you like to use? [a]:       <br />Disk adapter to put disks on? [0]:       <br />Use DHCP on first boot? [yes]:       <br />Ask for floppy boot? [no]:       <br />Checking the default route&#8230;       <br />You have a single network interface called eth0 (default route) . You will not be able to access the simulator from this Linux host. If this interface is marked DOWN in ifconfig then your simulator will crash.       <br />Which network interface should the simulator use? [default]:       <br />Your system has 455MB of free memory. The smallest simulator memory you should choose is 110MB. The maximum simulator memory is 415MB.       <br />The recommended memory is 512MB.       <br />Your original default appears to be too high. Seriously consider adjusting to below the maximum amount of 415MB.       <br />How much memory would you like the simulator to use? [512]:       <br />Create a new log for each session? [no]:       <br />Overwrite the single log each time? [yes]:       <br />Adding 10 additional disk(s).       <br />Complete. Run /sim/runsim.sh to start the simulator. </em></p>
<p>Wow this was very easy. Nice Job Net App. In the last row there is the hint how to start the simulator so lets go. </p>
<p><em>/sim/runsim.sh</em> </p>
<p>Peng, Klaap, kabumm, doing and an error appears on the console &#8220;Error ./maytag.L: No such file or directory&#8221;. F.. after some time, maybe 4 hours reading logs, traying these and that, and drinking some coffee I figured out that I need to install some libraries for AMD 64. This sounds funny but it solved my problem. This was the penalty for the easy setup. </p>
<p><em>apt-get install ia32-libs</em></p>
<p><em></em>    <br />and again try to startup. I deleted some info rows from the console log. But all questions should be present in the log below. </p>
<p><em>root@netapp:/netapp/simulator# /sim/runsim.sh      <br />runsim.sh script version Script version 22 (18/Sep/2007)       <br />This session is logged in /sim/sessionlogs/log </em></p>
<p><em>NetApp Release 7.3.1: Thu Jan&#160; 8 00:10:49 PST 2009      <br />Copyright (c) 1992-2008 NetApp.       <br />&#8230;.       <br />&#8230;.       <br />&#8230;.       <br />Do you want to enable IPv6? [n]: n       <br />Do you want to configure virtual network interfaces? [n]:       <br />Please enter the IP address for Network Interface ns0 [172.16.111.136]:       <br />Please enter the netmask for Network Interface ns0 [255.255.255.0]:       <br />Please enter media type for ns0 {100tx-fd, auto} [auto]:       <br />Please enter the IP address for Network Interface ns1 []:       <br />Would you like to continue setup through the web interface? [n]:       <br />Please enter the name or IP address of the IPv4 default gateway [172.16.111.2]:       <br />&#160;&#160;&#160; The administration host is given root access to the filer&#8217;s       <br />&#160;&#160;&#160; /etc files for system administration.&#160; To allow /etc root access       <br />&#160;&#160;&#160; to all NFS clients enter RETURN below.       <br />Please enter the name or IP address of the administration host:       <br />Please enter timezone [GMT]:       <br />Where is the filer located? []:       <br />What language will be used for multi-protocol files (Type ? for list)?:       <br />language not set       <br />Do you want to run DNS resolver? [n]:       <br />Do you want to run NIS client? [n]: Setting the administrative (root) password for mynetapp &#8230; </em></p>
<p><em>New password:      <br />Retype new password:       <br />Mon May&#160; 4 20:31:11 GMT [passwd.changed:info]: passwd for user &#8216;root&#8217; changed.       <br />&#8230;.       <br />&#8230;.       <br />&#8230;.       <br />This process will enable CIFS access to the filer from a Windows(R) system.       <br />Use &quot;?&quot; for help at any prompt and Ctrl-C to exit without committing changes. </em></p>
<p><em>&#160;&#160;&#160;&#160;&#160;&#160;&#160; Your filer is currently visible to all systems using WINS. The WINS      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; name server currently configured is: [ 172.16.111.2 ]. </em></p>
<p><em>(1) Keep the current WINS configuration      <br />(2) Change the current WINS name server address(es)       <br />(3) Disable WINS </em></p>
<p><em>Selection (1-3)? [1]:      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; A filer can be configured for multiprotocol access, or as an NTFS-only       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; filer. Since multiple protocols are currently licensed on this filer,       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; we recommend that you configure this filer as a multiprotocol filer </em></p>
<p><em>(1) Multiprotocol filer      <br />(2) NTFS-only filer </em></p>
<p><em>Selection (1-2)? [1]:      <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; CIFS requires local /etc/passwd and /etc/group files and default files       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; will be created.&#160; The default passwd file contains entries for &#8216;root&#8217;,       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#8216;pcuser&#8217;, and &#8216;nobody&#8217;.       <br />Enter the password for the root user []:       <br />Retype the password:       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; The default name for this CIFS server is &#8216;MYNETAPP&#8217;.       <br />Would you like to change this name? [n]:       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Data ONTAP CIFS services support four styles of user authentication.       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Choose the one from the list below that best suits your situation. </em></p>
<p><em>(1) Active Directory domain authentication (Active Directory domains only)      <br />(2) Windows NT 4 domain authentication (Windows NT or Active Directory domains)       <br />(3) Windows Workgroup authentication using the filer&#8217;s local user accounts       <br />(4) /etc/passwd and/or NIS/LDAP authentication </em></p>
<p><em>Selection (1-4)? [1]: 4      <br />What is the name of the Workgroup? [WORKGROUP]:       <br />CIFS &#8211; Starting SMB protocol&#8230;       <br />Welcome to the WORKGROUP Windows(R) workgroup </em></p>
<p><em>CIFS local server is running. </em></p>
<p><em>Password:      <br />mynetapp&gt; Mon May&#160; 4 20:32:25 GMT [console_login_mgr:info]: root logged in from console       <br />Mon May&#160; 4 20:32:31 GMT [nbt.nbns.registrationComplete:info]: NBT: All CIFS name registrations have completed for the local server. </em></p>
<p><em>mynetapp&gt; </em></p>
<p>SO this was not so hard. Now enjoy the world class filer in your VMware </p>
<p>&#160;</p>
<p><a href="http://www.dambeck.ch/wp-content/uploads/2009/05/netapp.jpg"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="387" alt="netapp" src="http://www.dambeck.ch/wp-content/uploads/2009/05/netapp-thumb.jpg" width="547" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dambeck.ch/2009/05/10/net-app-filer-in-vmware/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remote Support software for free</title>
		<link>http://www.dambeck.ch/2009/04/13/remote-support-software-for-free/</link>
		<comments>http://www.dambeck.ch/2009/04/13/remote-support-software-for-free/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 18:06:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[EDV & Admin Stuff]]></category>
		<category><![CDATA[GBI]]></category>
		<category><![CDATA[Remote]]></category>
		<category><![CDATA[Support]]></category>
		<category><![CDATA[teamviewer]]></category>
		<category><![CDATA[VNC]]></category>

		<guid isPermaLink="false">http://www.dambeck.ch/2009/04/13/remote-support-software-for-free/</guid>
		<description><![CDATA[Remote software for free 
Normally I&#8217;m not a big promoter of software. But this tool is amazing. Every, and I mean every IT Professional are having the same problem. Everybody in the world looks at you and sees the free helpdesk. Ok I must admit most of the time this is not a problem because [...]]]></description>
			<content:encoded><![CDATA[<p>Remote software for free </p>
<p>Normally I&#8217;m not a big promoter of software. But this tool is amazing. Every, and I mean every IT Professional are having the same problem. Everybody in the world looks at you and sees the free helpdesk. Ok I must admit most of the time this is not a problem because helping is caring friendship. Helping over the phone is good because you don&#8217;t have to travel. But this is not easy for each occasion. There are a lot of good remote software programs for companies. But the use in private environments is not so as easy as it should be because you need port forwarding, special firewall rules etc. Looking around in the Internet I found a very exciting tool for remote support. It&#8217;s called TeamViewer. </p>
<p><a href="http://www.teamviewer.com">http://www.teamviewer.com</a></p>
<p>The benefits of TeamViewer are: </p>
<p>&#8226;&#160;&#160;&#160; It&#8217;s free for personal use.    <br />&#8226;&#160;&#160;&#160; No installation needed.     <br />&#8226;&#160;&#160;&#160; No firewall changes are required because remote clients create an outgoing connection to the team server.     <br />&#8226;&#160;&#160;&#160; It works on PC and Mac, even cross-platform, connect from Mac to windows is no problem.     <br />&#8226;&#160;&#160;&#160; It&#8217;s Fast and     <br />&#8226;&#160;&#160;&#160; It&#8217;s free for noncommercial use. </p>
<p>At least it&#8217;s the Holy Grail of remote software </p>
<p>Regards Konrad</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dambeck.ch/2009/04/13/remote-support-software-for-free/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cisco&#8217;s basic konw-how part 1</title>
		<link>http://www.dambeck.ch/2009/03/29/ciscos-basic-konw-how-part-1/</link>
		<comments>http://www.dambeck.ch/2009/03/29/ciscos-basic-konw-how-part-1/#comments</comments>
		<pubDate>Sun, 29 Mar 2009 19:24:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[EDV & Admin Stuff]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[ios]]></category>

		<guid isPermaLink="false">http://www.dambeck.ch/2009/03/29/ciscos-basic-konw-how-part-1/</guid>
		<description><![CDATA[This week a nice opportunity knocked on the door. As windows server administrator in large companies you cannot configure every day switches and routers from the basic. Normally some network guy will do the configuration of the cool Cisco staff for you. The configuration of Cisco is very easy when you know something about networks. [...]]]></description>
			<content:encoded><![CDATA[<p>This week a nice opportunity knocked on the door. As windows server administrator in large companies you cannot configure every day switches and routers from the basic. Normally some network guy will do the configuration of the cool Cisco staff for you. The configuration of Cisco is very easy when you know something about networks. The only problem is to know the commands. This week and in the next post we’ll do an easy basic configuration together. The lab is created in an old version of the boson NetSim. Witch is a Cisco IOS and a Cat OS Simulator. It is not the best tool, but it will do the job.</p>
<p>The lab hardware is composed of two personal workstations and two 3500 Cisco switches. The Cisco’s are connected together with two Gigabit Ethernet links. Each of the switches has  a PC attached to it.</p>
<p>So let’s start with the basic configuration.</p>
<p>I prefer putty for serial telnet and ssh connection to my network devices. But hyper term will also do a good job.<br />
After the login the switch welcomes us with the shell prompt</p>
<p><em>Switch&gt;</em></p>
<p>First thing we are entering is the enable mode, which gives us the opportunity to make basic configurations.</p>
<p><em>Switch&gt;enable</em></p>
<p>the shell prompt now enters into the enable mode and the “Switch&gt;” changes to “Switch#” first we are going to change the time of the switch.</p>
<p><em>Switch# clock set 20:09:01 3 Apr 2006</em></p>
<p>To test the settings “show clock” will show us the actual time. In the next step we are going to the configure terminal. This allows us to change network and settings on the device.</p>
<p><em>Switch#configure Terminal</em></p>
<p>The notice “enter configuration commands, one per Line. End with CNTL/Z and the shell prompt shows “Switch(config)#” to change the DNS Hostname of the switch the command is simple hostname. Just enter it.</p>
<p><em>Switch(config)#hostname MySwitch1</em></p>
<p>now the shell prompt changes to “MySwitch1(config)#” and we are able to continue with the setting of a password for the enable mode by entering</p>
<p><em>MySwitch1(config)#enable secret TopSecretPassword</em></p>
<p>After setting the password for the enable mode it would be wise to set an password for the Virtual Terminal (Telnet &amp; SSH Access). We need 2 lines to do this, the first line is for setting the password and the second for the rights of the remote console. Some Admin’s think “vty 0 15” is to much rights for a remote console. I think “vty 0 15” is ok if the switch is on a remote location.</p>
<p><em>MySwitch1 (config)# password MySecretTerminalPassword<br />
MySwitch1 (config)# line vty 0 15</em></p>
<p>The last thing we need to do is setting up a managed port. This port is only for the management. The port should not be used for clients. In most companies the port is set in the management vlan but we don’t do this in this post. This will be done by entering an Interface, disabling the switching on this port, setting the port state up, setting the IP and subnet mask and leaving the interface config.</p>
<p><em>MySwitch1(config)#interface fastethernet 1/1<br />
MySwitch1(config-if)#no switchport<br />
MySwitch1(config-if)#no shutdown<br />
MySwitch1(config-if)#ip address 192.168.1.3 255.255.255.0<br />
MySwitch1(config-if)#exit</em></p>
<p>One nice thing left do at the end of the basic configuration is setting a login banner. The banner is written to the console after the login. If the company has hundreds of devices it helps to keep the overview. And I like asci art.</p>
<p><em>MySwitch1(config)#banner motd ^<br />
#########################################<br />
#  if you cant make it good, at least make it look good!!!    #<br />
#                                                             #<br />
#            Name:              MySwitch1                     #<br />
#            Location:          HQ, Lucerne                   #<br />
#            Model:             Cisco 3500                    #<br />
#                                                             #<br />
# WARNING, unauthorized access to this network is prohibited. #<br />
#                                                             #<br />
# Unauthorized access will lead to prosecution according to   #<br />
# the law                                                     #<br />
#########################################<br />
^  </em></p>
<p>Now the basic configuration of the running configuration is done. The last thing we do is copy the running configuration to the startup configuration by entering</p>
<p><em>MySwitch1#write</em></p>
<p>In a second Post we will create the uplink using port channel and vlans. If you are now hot to hack a little bit around. I found an free trial of a simulator on<br />
<a href="http://www.certexams.com/buy.htm">http://www.certexams.com/buy.htm</a>. It is very limited but it a good starting point.</p>
<p>Cheers Konrad</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dambeck.ch/2009/03/29/ciscos-basic-konw-how-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fine grained password policy</title>
		<link>http://www.dambeck.ch/2009/03/08/fine-grained-password-policy/</link>
		<comments>http://www.dambeck.ch/2009/03/08/fine-grained-password-policy/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 14:18:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[policy]]></category>
		<category><![CDATA[pso]]></category>

		<guid isPermaLink="false">http://www.dambeck.ch/2009/03/08/fine-grained-password-policy/</guid>
		<description><![CDATA[Today we take a closer look at the Microsoft Active Directory in the 2008 native mode. One of the problems that windows administrators often face in the daily business is the setting of password policies for the whole company. Under Windows Server 2003 it was not possible to set more than one policy for the [...]]]></description>
			<content:encoded><![CDATA[<p>Today we take a closer look at the Microsoft Active Directory in the 2008 native mode. One of the problems that windows administrators often face in the daily business is the setting of password policies for the whole company. Under Windows Server 2003 it was not possible to set more than one policy for the accounts. So from the domain administrator to the user every body needed the same complex password. Under active directory in version 2008 there is a new object type in the schema which is called PSO (password settings object). The only way to create the PSO is in ADSI edit. Click on start and enter &#8220;adsiedit.msc&#8221;. </p>
<p>&#160; </p>
<p>In ADSI edit Connect to the &#8220;Default naming context&#8221; and browse to the CN= Password <a href="http://www.dambeck.ch/wp-content/uploads/2009/03/adsiedt.jpg"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="73" alt="adsiedt" src="http://www.dambeck.ch/wp-content/uploads/2009/03/adsiedt-thumb.jpg" width="232" align="left" border="0" /></a>Settings Container,CN=System,DC=YourDomain,DC=YourDomain. With the right click you are able to create a new PSO with a wizard (I am not 100 % sure but it is a wise idea to do this with the newest version of adsiedit.msc on the server). </p>
<p>The wizard shows up and your are able to set the PSO settings:    <br />&#8226;&#160;&#160;&#160; Password settings precedence     <br />&#8226;&#160;&#160;&#160; Password reversible encryption status for user accounts     <br />&#8226;&#160;&#160;&#160; Password history length for user accounts     <br />&#8226;&#160;&#160;&#160; Password complexity status for user accounts     <br />&#8226;&#160;&#160;&#160; Minimum password length for user accounts     <br />&#8226;&#160;&#160;&#160; Minimum password age for user accounts     <br />&#8226;&#160;&#160;&#160; Maximum password age for user accounts     <br />&#8226;&#160;&#160;&#160; Lockout threshold for lockout of user accounts     <br />&#8226;&#160;&#160;&#160; Observation window for lockout of user accounts     <br />&#8226;&#160;&#160;&#160; Lockout duration for locked out user accounts     <br />&#8226;&#160;&#160;&#160; Links to objects that this password settings object applies to (forward link).</p>
<p><a href="http://www.dambeck.ch/wp-content/uploads/2009/03/ldap.jpg"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="244" alt="ldap" src="http://www.dambeck.ch/wp-content/uploads/2009/03/ldap-thumb.jpg" width="224" align="right" border="0" /></a>     <br />The last setting is very nice. The policy are now bound to an active directory global, universal or domain local group. The PSO does not outweigh the older GPO based managed policy. If a user has a policy both through PSO and GPO the GPO policy is enforced. </p>
<p>To use the PSO a PDC Emulator FSMO Role must be configured on the Windows 2008 Server. The domain and forest function level must be at least Windows Server 2008. The PSO works on Windows XP, Vista, 2003 and 2008 Servers. </p>
<p>Enjoy the simplified but even though smarter password policy    <br />Cheers Konrad</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dambeck.ch/2009/03/08/fine-grained-password-policy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Baseline Security of Windows Networks</title>
		<link>http://www.dambeck.ch/2009/02/27/baseline-security-of-windows-networks/</link>
		<comments>http://www.dambeck.ch/2009/02/27/baseline-security-of-windows-networks/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 17:06:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[EDV & Admin Stuff]]></category>
		<category><![CDATA[mbsa]]></category>
		<category><![CDATA[microsoft security]]></category>

		<guid isPermaLink="false">http://www.dambeck.ch/2009/02/27/baseline-security-of-windows-networks/</guid>
		<description><![CDATA[One of the hard tasks in the daily live of an IT administrator is to ensure that the network and the server are secure. The perfect security is not possible. There will always be some small leaks either provoked through the behavior of the user in version 1.0 or the administrator of the system. Not [...]]]></description>
			<content:encoded><![CDATA[<p>One of the hard tasks in the daily live of an IT administrator is to ensure that the network and the server are secure. The perfect security is not possible. There will always be some small leaks either provoked through the behavior of the user in version 1.0 or the administrator of the system. Not to mention design leaks in the software itself. Most environments are too large and too complex for a manual checkup of all security patches and service packs. One other factor is most users need some higher rights on their machine to do their work. This often results in disabling the windows firewall. These two scenarios are big the root of all evil.</p>
<p>A good tool to find security issues is the “Microsoft Baseline Security Analyzer” aka. MBSA. Which is released in version 2.1. The MBSA can be obtained for free from the Microsoft homepage. My recommendation is to install the tool on one centrally accessible client or server. Because it need’s full RPC access to all machines that are to be tested. Some heretic may say that a client that needs RPC ports through the whole network is a security problem in high secure environment, and maybe he is right, but this is another topic. After a short installation of the MBSA it’s ready to use. The tool is the solution for scanning whole networks and domain. Please keep in mind that the tool needs some performance on the scanned server or workstation</p>
<p>Let us start with a report for one server. A notice to my chef: “This is not a corporate server, it’s an special virtual machine for this blog, so relax when you see the report at the end J”. One of the nice features is the possibility to set the patch repository to a local WSUS. So if there is a problem with a windows patch you decide to not install it doesn’t show up as an error. I recommend in most cases to use the Microsoft update as repository. Maybe you’ll find out some dark secrets of the WSUS administrator</p>
<p><a href="http://www.dambeck.ch/wp-content/uploads/2009/02/clip-image002.jpg"><img style="border-right: 0px; border-top: 0px; margin: 0px 10px 0px 0px; border-left: 0px; border-bottom: 0px" src="http://www.dambeck.ch/wp-content/uploads/2009/02/clip-image002-thumb.jpg" border="0" alt="clip_image002" width="244" height="179" align="left" /></a></p>
<p>After a scan that runs approximately for 40 seconds a nice report is created by the tool.</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p><a href="http://www.dambeck.ch/wp-content/uploads/2009/02/clip-image004.jpg"><img style="border-right: 0px; border-top: 0px; margin: 0px 0px 0px 15px; border-left: 0px; border-bottom: 0px" src="http://www.dambeck.ch/wp-content/uploads/2009/02/clip-image004-thumb.jpg" border="0" alt="clip_image004" width="244" height="178" align="right" /></a></p>
<p>Special remarkable is that Microsoft gives a short description how to correct the problem.</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p><a href="http://www.dambeck.ch/wp-content/uploads/2009/02/clip-image006.jpg"><img style="border-right: 0px; border-top: 0px; margin: 0px 10px 0px 0px; border-left: 0px; border-bottom: 0px" src="http://www.dambeck.ch/wp-content/uploads/2009/02/clip-image006-thumb.jpg" border="0" alt="clip_image006" width="244" height="144" align="left" /></a></p>
<p>A small summary is that the tool can’t make wonders, but it’s an nice way to ensures that the big risk’s are closed even when you don’t have detail knowledge of the software like SQL Server. The tool is not perfect so checkup the recommended solution. “Some potentially unnecessary services are installed“ means in my test lab the “save service” which is a virus scanner. After all it’s a good tool. Read you soon !!</p>
<p>Cheers Konrad</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dambeck.ch/2009/02/27/baseline-security-of-windows-networks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>closer look on HP c7000 Blade Center</title>
		<link>http://www.dambeck.ch/2009/01/31/closer-look-on-hp-c7000-blade-center/</link>
		<comments>http://www.dambeck.ch/2009/01/31/closer-look-on-hp-c7000-blade-center/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 11:36:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[EDV & Admin Stuff]]></category>
		<category><![CDATA[blade]]></category>
		<category><![CDATA[bladecenter]]></category>
		<category><![CDATA[c7000]]></category>
		<category><![CDATA[hp]]></category>

		<guid isPermaLink="false">http://www.dambeck.ch/2009/01/31/closer-look-on-hp-c7000-blade-center/</guid>
		<description><![CDATA[Actually i want write this week something about security with the MSBA form Microsoft. After an hard week working with the new blade series from HP we do a closer look to the benefits of the c7000. Net time the security geek&#8217;s will be pleased. Fist we take a look to the question wath is [...]]]></description>
			<content:encoded><![CDATA[<p>Actually i want write this week something about security with the MSBA form Microsoft. After an hard week working with the new blade series from HP we do a closer look to the benefits of the c7000. Net time the security geek&#8217;s will be pleased. Fist we take a look to the question wath is an Blade Center? A blade center is an 12 U high rack mounted system. In this box you have 6 2700 Watt power supplies, 8 Multifunction network slots, 10 high performance fans and place for up to 32 dual Quad Core Server. the hole center can be managed from 2 Web sites. So its very cool for it professionals.&#160; </p>
<p>Lets take a closer look at the server. there are 16 Bays for servers some enterprise servers need two slots, some &quot;low power&quot; dual quad<a href="http://www.dambeck.ch/wp-content/uploads/2009/01/image3.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="189" alt="image" src="http://www.dambeck.ch/wp-content/uploads/2009/01/image-thumb3.png" width="244" align="right" border="0" /></a> core etch with 32 GB memory need for tow serves an half slot. In my case i am using 16 HP ProLiant BL460c Server Blade. Nice to know is that this slots can be used for Tape (DLT 5), storage (DAS) and PCI-Express Blades. but you lose an slot.</p>
<p>The network slots of the blade can be equipped wit Cisco, hp, Mc Data and Virtual connect bays. cowsing the best for your environment is an very hard and complex<a href="http://www.dambeck.ch/wp-content/uploads/2009/01/image4.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; margin: 5px 10px 0px 0px; border-right-width: 0px" height="244" alt="image" src="http://www.dambeck.ch/wp-content/uploads/2009/01/image-thumb4.png" width="242" align="left" border="0" /></a> dissensions. The Virtual connect is an brand new technology from hp witch is &quot;weder fisch noch Vogel&quot;. the best description it is an Virtual Patch panel. it can swishing, some layer 3 thinks like vLan tagging. The most important thin is it is able to du an dynamic LACP port Cannel, with is on HP English an Auto Port <img src='http://www.dambeck.ch/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> . </p>
<p>so stop the geek fan boy stuff and lets talk about benefits / disappointment of Blade. in the most guid&#8217;s you find that the c7000 is internal complete redundant. this is simply an lie. The base board is one Part if its fail <strong>the hole c7000 goes DOWN</strong> !!!. HP say it hase an normal time to fial from 140 years. why i know to blade centers with the second baseboard i am&#160; not so old <img src='http://www.dambeck.ch/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  It has 10 fans slots, but to operate in redundant mode you need only 8. if one fails nothing happened. my guess is you only need in future wit 16 GHZ 12 qore CPU an 200 gb ram the 10 fans. so safe the money while ordering. not every mezziane card that are able to work in the slot make sense.</p>
<p><a href="http://www.dambeck.ch/wp-content/uploads/2009/01/image5.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="211" alt="image" src="http://www.dambeck.ch/wp-content/uploads/2009/01/image-thumb5.png" width="555" border="0" /></a>&#160; </p>
<p>thake a look to this schematics from hp product bulletin. With an half high blade (16 Blades per enclouser) you only able to use 2 slots. So if you buy an quad port NIC you only able to use 2. HP don&#8217;t tell you in the order process.&#160; in Some cases blade are cheeper than normal serves but it depend on the configuration. in most case if you need fiber cannel HBA&#8217;s it&#8217;s an good chance to be on the cheeper side. Blade are an complex an modern technology witch requires intensive study for the IT professional&#8217;s. </p>
<p>at the least some nice videos from HP wit happy people from japan </p>
<div class="wlWriterSmartContent" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:6f58c614-a9d1-49ca-8410-7f779f8e7754" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px">
<div id="3b2f1722-6eec-4d56-bd7d-a38d89cf851b" style="margin: 0px; padding: 0px; display: inline;">
<div><a href="http://www.youtube.com/watch?v=jJ2bBHFWNuo&amp;hl=en&amp;fs=1" target="_new"><img src="http://www.dambeck.ch/wp-content/uploads/2009/01/videodc97a83f48ff.jpg" galleryimg="no" onload="var downlevelDiv = document.getElementById('3b2f1722-6eec-4d56-bd7d-a38d89cf851b'); downlevelDiv.innerHTML = &quot;&lt;div&gt;&lt;object width=\&quot;425\&quot; height=\&quot;355\&quot;&gt;&lt;param name=\&quot;movie\&quot; value=\&quot;http://www.youtube.com/v/jJ2bBHFWNuo&amp;hl=en&amp;fs=1\&quot;&gt;&lt;\/param&gt;&lt;param name=\&quot;wmode\&quot; value=\&quot;transparent\&quot;&gt;&lt;\/param&gt;&lt;embed src=\&quot;http://www.youtube.com/v/jJ2bBHFWNuo&amp;hl=en&amp;fs=1\&quot; type=\&quot;application/x-shockwave-flash\&quot; wmode=\&quot;transparent\&quot; width=\&quot;425\&quot; height=\&quot;355\&quot;&gt;&lt;\/embed&gt;&lt;\/object&gt;&lt;\/div&gt;&quot;;" alt=""></a></div>
</div>
</div>
<p>&#160;</p>
<div class="wlWriterSmartContent" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:55d2fd42-6e26-4c42-b6a1-511912f4a5f6" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px">
<div id="4d6b9058-1435-48c9-af2b-285216021805" style="margin: 0px; padding: 0px; display: inline;">
<div><a href="http://www.youtube.com/watch?v=OMiU_pQkLqM&amp;hl=en&amp;fs=1" target="_new"><img src="http://www.dambeck.ch/wp-content/uploads/2009/01/video9e9e7bbe7c95.jpg" galleryimg="no" onload="var downlevelDiv = document.getElementById('4d6b9058-1435-48c9-af2b-285216021805'); downlevelDiv.innerHTML = &quot;&lt;div&gt;&lt;object width=\&quot;425\&quot; height=\&quot;355\&quot;&gt;&lt;param name=\&quot;movie\&quot; value=\&quot;http://www.youtube.com/v/OMiU_pQkLqM&amp;hl=en&amp;fs=1\&quot;&gt;&lt;\/param&gt;&lt;param name=\&quot;wmode\&quot; value=\&quot;transparent\&quot;&gt;&lt;\/param&gt;&lt;embed src=\&quot;http://www.youtube.com/v/OMiU_pQkLqM&amp;hl=en&amp;fs=1\&quot; type=\&quot;application/x-shockwave-flash\&quot; wmode=\&quot;transparent\&quot; width=\&quot;425\&quot; height=\&quot;355\&quot;&gt;&lt;\/embed&gt;&lt;\/object&gt;&lt;\/div&gt;&quot;;" alt=""></a></div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.dambeck.ch/2009/01/31/closer-look-on-hp-c7000-blade-center/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
