<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-30193075</atom:id><lastBuildDate>Fri, 06 Nov 2009 19:54:30 +0000</lastBuildDate><title>Mathieu Chateau's blog in plain english</title><description>Why "Lord of The Ping" ? It's a bit complicated, but yes it's a mix of a famous movie and Networking's most famous command.</description><link>http://lordoftheping.blogspot.com/</link><managingEditor>mathieu.chateau@lotp.fr (Mathieu Chateau)</managingEditor><generator>Blogger</generator><openSearch:totalResults>232</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/LordOfThePing" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item><guid isPermaLink="false">tag:blogger.com,1999:blog-30193075.post-5465813985590283334</guid><pubDate>Sun, 27 Sep 2009 13:10:00 +0000</pubDate><atom:updated>2009-09-27T15:25:30.342+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">slowness</category><category domain="http://www.blogger.com/atom/ns#">Sharepoint</category><category domain="http://www.blogger.com/atom/ns#">search</category><category domain="http://www.blogger.com/atom/ns#">load</category><title>SharePoint 2007 slowness</title><description>&lt;p&gt;I recently had to solve 2 SharePoint 2007 slowness:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;The next call following application pool recycle : &lt;span style="color: rgb(255, 0, 0);"&gt;2 minutes&lt;/span&gt; to get the page&lt;br /&gt;&lt;/li&gt;&lt;li&gt;When searching for people in AD: a least &lt;span style="color: rgb(255, 0, 0);"&gt;30 seconds&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt; &lt;h1&gt;2 minutes to get the page&lt;br /&gt;&lt;/h1&gt; &lt;p&gt;IIS tries to contact crl.microsoft.com through http, but can't. This is to verify assembly's signatures in the GAC. Causes and solutions are explained on this blog:&lt;/p&gt; &lt;p&gt;&lt;a href="http://www.muhimbi.com/blog/2009/04/new-approach-to-solve-sharepoints.html" target="_blank"&gt;http://www.muhimbi.com/blog/2009/04/new-approach-to-solve-sharepoints.html&lt;/a&gt;&lt;/p&gt; &lt;p&gt;I chose the following one:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Download CRL: &lt;ul&gt;&lt;li&gt;&lt;a href="http://crl.microsoft.com/pki/crl/products/CodeSignPCA.crl" target="_blank"&gt;http://crl.microsoft.com/pki/crl/products/CodeSignPCA.crl&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://crl.microsoft.com/pki/crl/products/CodeSignPCA2.crl" target="_blank"&gt;http://crl.microsoft.com/pki/crl/products/CodeSignPCA2.crl&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt; &lt;/li&gt;&lt;li&gt;Add them to the store: &lt;ul&gt;&lt;li&gt;certutil -addstore CA CodeSignPCA.crl&lt;/li&gt;&lt;li&gt;certutil -addstore CA CodeSignPCA2.crl&lt;/li&gt;&lt;/ul&gt; &lt;/li&gt;&lt;/ul&gt; &lt;p&gt;Here we go, dropping load time to 20 seconds, which is "normal" since it has to compile again. But you can still go further by:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Modify when the application pool is recycled&lt;/li&gt;&lt;li&gt;Use &lt;a href="http://www.codeplex.com/SPWakeUp" target="_blank"&gt;SPWakeUp&lt;/a&gt;, to "warm up" the SharePoint engine by calling every site once&lt;/li&gt;&lt;/ul&gt; &lt;h1&gt;Search in AD : at least 30 seconds&lt;/h1&gt; &lt;p&gt;&lt;strong&gt;When:&lt;/strong&gt; you try to authorize a user, a group or just assign a task to someone. This takes around 30 seconds instead of one. I am targeting the time needed between the click and having the name underligned.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Causes:&lt;/strong&gt; In my case, tracing the network activity of the server, i realized it was failing to contact domain controllers of another forest when i checked a user name. This try is due to the add of another forest in peoplepicker's property, through stsadm. By default, SharePoint only checks users in it's own domain. To extend the search to others domains or forest, you need to add them through this command:&lt;br /&gt;&lt;span style="font-family: courier new;"&gt;stsadm -o setproperty -url http://SharePointSite:85 -pn peoplepicker-searchadforests –pv “domain1.com”,&lt;loginname1&gt;,&lt;password1&gt;;”domain2.com”,&lt;loginname2&gt;,&lt;password2&gt;&lt;/span&gt;&lt;/p&gt; &lt;p&gt;If you have trust between the SharePoint's domain and the targeted one, you don't have to provide credentials.&lt;/p&gt; &lt;p&gt;Here is a more detailled post: &lt;a href="http://www.gk.id.au/2009/04/people-picker-sharepoint-and-forest.html" target="_blank"&gt;http://www.gk.id.au/2009/04/people-picker-sharepoint-and-forest.html&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Solution:&lt;/strong&gt; Allows SharePoint to connect to the domain controllers of these targets. The port to open is ldap (389) both in  TCP and UDP.&lt;/p&gt; &lt;p&gt;That's it, it nows takes again around one second and we can now search people in the other forest!&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30193075-5465813985590283334?l=lordoftheping.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://lordoftheping.blogspot.com/2009/09/sharepoint-2007-slowness.html</link><author>mathieu.chateau@lotp.fr (Mathieu Chateau)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-30193075.post-1859014763870766920</guid><pubDate>Mon, 17 Aug 2009 16:20:00 +0000</pubDate><atom:updated>2009-08-17T20:35:42.946+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">sysinternal</category><category domain="http://www.blogger.com/atom/ns#">registry</category><category domain="http://www.blogger.com/atom/ns#">bginfo</category><category domain="http://www.blogger.com/atom/ns#">error</category><category domain="http://www.blogger.com/atom/ns#">picture</category><title>BgInfo: error with success without success</title><description>&lt;p style="text-align: left;"&gt;I hadn't used &lt;a href="http://technet.microsoft.com/en-us/sysinternals/bb897557.aspx"&gt;bginfo&lt;/a&gt; from Sysinternals for a long time. As usual, i added the company logo as background, but here comes the surprise when saving:&lt;br /&gt;&lt;/p&gt;&lt;p style="text-align: center;"&gt;&lt;a href="http://www.lotp.fr/wp-content/uploads/2009/07/bginfo.png"&gt;&lt;img class="aligncenter size-full wp-image-502" title="bginfo" src="http://www.lotp.fr/wp-content/uploads/2009/07/bginfo.png" alt="bginfo" height="175" width="326" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;em&gt;(Error saving settings to registry: The operation completed sucessfully)&lt;/em&gt;&lt;/p&gt; &lt;p style="text-align: left;"&gt;So we have an error saving to the reigstry, but the operation is a success...Amazing ? Obiously, disappointed few seconds later, no bgi file...&lt;br /&gt;&lt;span style="text-decoration: underline;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: left;"&gt;&lt;span style="text-decoration: underline;"&gt;Context&lt;/span&gt;:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Windows Vista SP1 32 bit&lt;/li&gt;&lt;li&gt;Last &lt;a title="Sysinternal: bginfo" href="http://technet.microsoft.com/en-us/sysinternals/bb897557.aspx"&gt;bginfo&lt;/a&gt; (4.15)&lt;/li&gt;&lt;li&gt;With and without privilege escalation (Why do we suspect immediately UAC?)&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;What can we do when a Sysinternal tool fails ? Use another Sysinternal tool for diagnostic!&lt;a title="Sysinternals: Process Monitor" href="http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx" target="_blank"&gt;&lt;br /&gt;Process monitor&lt;/a&gt; shows up an error for "&lt;span style="font-weight: bold;"&gt;insufficient resources&lt;/span&gt;":&lt;/p&gt; &lt;p style="text-align: center;"&gt;&lt;a href="http://www.lotp.fr/wp-content/uploads/2009/07/bginfo_processmonitor.png"&gt;&lt;img class="aligncenter size-full wp-image-503" title="bginfo_processmonitor" src="http://www.lotp.fr/wp-content/uploads/2009/07/bginfo_processmonitor.png" alt="bginfo_processmonitor" height="461" width="535" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;a title="Sysinternals: Process monitor" href="http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx" target="_blank"&gt;Process explorer&lt;/a&gt; shows that the system is missing some resources (but still 742MB of available memory immediately)&lt;br /&gt;&lt;a href="http://www.lotp.fr/wp-content/uploads/2009/07/procexp.png"&gt;&lt;img class="aligncenter size-full wp-image-504" title="procexp" src="http://www.lotp.fr/wp-content/uploads/2009/07/procexp.png" alt="procexp" height="410" width="500" /&gt;&lt;/a&gt; &lt;/p&gt; &lt;p style="text-align: left;"&gt;I tried on my workstation with 8GB of ram, same..Windows XP ? same!&lt;/p&gt; &lt;p style="text-align: left;"&gt;Finally, i reduced the picture before importing, and it worked great.&lt;/p&gt; &lt;p style="text-align: left;"&gt;I sent a quick mail to &lt;a title="Mark's blog" href="http://blogs.technet.com/markrussinovich/" target="_blank"&gt;Mark Russinovich&lt;/a&gt;…Feedback one hour later:&lt;/p&gt; &lt;p style="text-align: left;"&gt;“&lt;em&gt;Thanks for the bug report, Mathieu. It looks like Bginfo was trying to write 7MB to the registry.&lt;/em&gt;“&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30193075-1859014763870766920?l=lordoftheping.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://lordoftheping.blogspot.com/2009/08/bginfo-error-with-success-without.html</link><author>mathieu.chateau@lotp.fr (Mathieu Chateau)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-30193075.post-1886377757942734689</guid><pubDate>Tue, 28 Jul 2009 17:19:00 +0000</pubDate><atom:updated>2009-07-28T19:45:17.408+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">nlb</category><category domain="http://www.blogger.com/atom/ns#">network</category><category domain="http://www.blogger.com/atom/ns#">microsoft</category><title>All you need to know on NLB</title><description>&lt;p&gt;NLB (Network Load Balacing) from Microsoft have the advantage to come directly through the OS. As its name state, it allows to spread the load among many nodes, that are members of the farm (cluster). It's quick &amp;amp; easy to set up, or it looks like so, but there are many things to check if you want it to be more than appearing to work...&lt;br /&gt;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Network impact&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;NLB can works in two modes:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Unicast&lt;/li&gt;&lt;li&gt;Multicast (with or without IGMP)&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;Which one to pick ? It Depends! Things that make choose one:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Which application will be used through the farm ? Does it support both mode ? For example, ISA 2006 only supported unicast until Service Pack 1 (a hotfix was available but not so famous)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;How many network cards do the nodes have ? Unicast will require 2 interfaces minimum to respect best practice.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Do the nodes need to communicate between them ?&lt;/li&gt;&lt;li&gt;Is the multicast filtering activated on the switches ? It prevent flooding the network&lt;/li&gt;&lt;li&gt;Some switches (Cisco as example) do not stand at all to see the same mac address on the network from each node. You then have to convert your &lt;a href="http://www.cisco.com/en/US/products/hw/switches/ps708/products_configuration_example09186a0080a07203.shtml"&gt;switch to hub&lt;/a&gt;, sending all packets to all farm members.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;&lt;strong&gt;Monitoring &amp;amp; availability&lt;br /&gt;&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;It is true that if one node goes out of the network, the others will take its load over. But it's a full failure. If you have 2 nodes, and just stop your business application on one node, NLB will still send clients to it, and so you just lost half of your customers. NMB is layer 3 (IP), and so isn't aware at all of anything upper this layer. Even if the TCP port is not listened anymore. That's the pitfall of NLB. Microsoft included sentinel in the resource kit. It allowed to test a web page on each node and push it out of the farm if it's not working. ISA 2006 manage directly NLB, and can push a node out if ISA goes mad. So it's your duty to fill the gap. If it's a web site running through IIS, you can change a key in the metabase,&lt;a href="http://technet.microsoft.com/en-us/library/cc757659%28WS.10%29.aspx" target="_blank"&gt;&lt;strong&gt;LoadBalancerCapabilities&lt;/strong&gt;&lt;/a&gt; to replace the 503 per a TCP reset. So the client will reconnect and send again its request, on another node.&lt;/p&gt; &lt;p&gt;To fill this gap, you can use your monitoring solution or a script looping on each node. The goal is to test each node from the application point of view, and push it out in case of error. Appliance load balancer (Alteon...) do the same, the industrial way. What you must take care:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;You must check nodes as often as possible, but without overloading them. The best is to include this monitoring need in the application, by including a special web page that will test for us the applications compponents (database access...) and then back the result through a code.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Your monitoring becomes "active" (acting directly on the production by its own)&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;The Microsoft monitoring, SCOM, is interesting since you can act on trigger (eventlog, files...)&lt;/p&gt; &lt;p&gt;&lt;strong&gt;NLB versus MSCS ?&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;an MSCS cluster is meant to be active/passive. At anytime, resources are owned by only one node, which must be able to handle the full load. The good things is it can manage data, which are shared accross nodes and it monitors resources (state of windows services..). There again, it doesn't cover all case, especially when the application is there, but not answering anymore requests (database access lost...).&lt;br /&gt;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Other solution ?&lt;/strong&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt;I already set up Safekit from Evidian on Windows. Not bad, but applications checks are still for you (how could it be the other way ?)&lt;/li&gt;&lt;li&gt;Load balancer appliances (F5;Alteon...). As great as expensive...&lt;/li&gt;&lt;li&gt;Keep with only one node ?&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;KB/Articles:&lt;/p&gt; &lt;p&gt;&lt;a href="http://technet.microsoft.com/en-us/library/cc757659%28WS.10%29.aspx" target="_blank"&gt;IIS Responses to Load-Balanced Application Pool Behaviors&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;a href="http://support.microsoft.com/?scid=kb%3Ben-us%3B222079&amp;amp;x=4&amp;amp;y=18" target="_blank"&gt;NLB Operations Affect All Network Adapters on the Server&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;a href="http://support.microsoft.com/?scid=kb%3Ben-us%3B898867&amp;amp;x=20&amp;amp;y=10" target="_blank"&gt;Unicast NLB nodes cannot communicate over an NLB-enabled network adaptor in Windows Server 2003&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;a href="http://support.microsoft.com/?scid=kb%3Ben-us%3B890159&amp;amp;x=9&amp;amp;y=15" target="_blank"&gt;The “NLB troubleshooting overview for Windows Server 2003″ article is available&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;a href="http://support.microsoft.com/Default.aspx?scid=kb%3ben-us%3b947029&amp;amp;x=13&amp;amp;y=7" target="_blank"&gt;How to deploy a Secure Socket Tunneling Protocol (SSTP)-based VPN server that uses Network Load Balancing (NLB) in Windows Server 2008&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;a href="http://support.microsoft.com/?scid=kb%3Ben-us%3B938550&amp;amp;x=12&amp;amp;y=14" target="_blank"&gt;An update enables multicast operations for ISA Server integrated NLB&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;a href="http://support.microsoft.com/?scid=kb%3Ben-us%3B953828&amp;amp;x=16&amp;amp;y=12" target="_blank"&gt;Windows Server 2008 Hyper-V virtual machines generate a Stop error when NLB is configured or when the NLB cluster does not converge as expected&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;a href="http://support.microsoft.com/?scid=kb%3Ben-us%3B280805&amp;amp;x=8&amp;amp;y=14" target="_blank"&gt;Terminal Services Client Cannot Connect to NLB Cluster TCP/IP Address&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;a href="http://support.microsoft.com/?scid=kb%3Ben-us%3B316753&amp;amp;x=18&amp;amp;y=8" target="_blank"&gt;The NLB WMI Provider Generates a Lot of Error Entries in the Wbemcore.log File&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;a href="http://support.microsoft.com/?scid=kb%3Ben-us%3B238219&amp;amp;x=13&amp;amp;y=8" target="_blank"&gt;How NLB Hosts Converge When Connected to a Layer 2 Switch&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;a href="http://support.microsoft.com/?scid=kb%3Ben-us%3B843213&amp;amp;x=20&amp;amp;y=10" target="_blank"&gt;Windows Server 2003-based NLB nodes in an NLB cluster cannot communicate with each other over an NLB network adapter&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;a href="http://support.microsoft.com/?scid=kb%3Ben-us%3B954420&amp;amp;x=7&amp;amp;y=14" target="_blank"&gt;Servers in a Network Load Balancing (NLB) failover cluster cannot be used as print servers in Windows Server 2008&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;a href="http://support.microsoft.com/?scid=kb%3Ben-us%3B960916&amp;amp;x=8&amp;amp;y=11" target="_blank"&gt;Network Load Balancing (NLB) clients cannot connect to the Windows Server 2008 NLB cluster by using the virtual IP address when NLB is running in multicast mode&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;a href="http://support.microsoft.com/?scid=kb%3Ben-us%3B949429&amp;amp;x=12&amp;amp;y=9" target="_blank"&gt;The virtual IP address of a Windows Server 2008 NLB cluster is bound to the NetBIOS host name of a particular server or of multiple servers&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30193075-1886377757942734689?l=lordoftheping.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://lordoftheping.blogspot.com/2009/07/all-you-need-to-know-on-nlb.html</link><author>mathieu.chateau@lotp.fr (Mathieu Chateau)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-30193075.post-1244482874214403568</guid><pubDate>Wed, 15 Jul 2009 06:19:00 +0000</pubDate><atom:updated>2009-07-15T08:55:40.773+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">windows 7</category><category domain="http://www.blogger.com/atom/ns#">64 bit</category><category domain="http://www.blogger.com/atom/ns#">macbook</category><title>I have a Mac..How bad is it doctor?</title><description>Those who read my blog for some time may get surprised, but i just bought a Mac! A MacBook Air, the one with an SSD of 128GB. My XPS M1210 is now quite old (2006) and didn't loose its weight since! Notebook with high performance (alienware..) are around 3 kilos minimum, so i stopped the rush to performance, as i can know connect to my hosted server to get the missing performances..&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;The good:&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;It's really faster than my previous one. The CPU is lower, but the system bus upper than 1Ghz helps a lot, as having DDR3.&lt;/li&gt;&lt;li&gt;The WiFi is really great, bandwidth climb immediately to the top of my ADSL access, with both MacOSX &amp;amp; Windows 7. The chip is a Broadcom 802.11n.&lt;/li&gt;&lt;li&gt;The SSD is also great, close to my SuperTalent.&lt;/li&gt;&lt;li&gt;Windows 7 64 bit RC get ready in 28 seconds.&lt;/li&gt;&lt;li&gt;The keyboard is lighted&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold;"&gt;The not so good:&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;I installed Windows 7 64 bit through Boot Camp. Windows is working great, but the Apple's drivers a lot less (see later in this post).&lt;br /&gt;&lt;/li&gt;&lt;li&gt;MacOSX keeps the time in GMT (in bios). When Windows 7 boot, i then have 2 hours late. If Boot Camp get installed, it adds a time service to hide this difference (AppleTimesrv.exe)&lt;/li&gt;&lt;li&gt;The graphic card memory is shared, so we have 1764MB of memory for Windows.&lt;/li&gt;&lt;li&gt;No TPM, so no smart encryption with Windows 7.&lt;/li&gt;&lt;/ul&gt;SSD Performances:&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.lotp.fr/wp-content/uploads/2009/07/hd.PNG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 573px; height: 460px;" src="http://www.lotp.fr/wp-content/uploads/2009/07/hd.PNG" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Boot Camp drivers &amp;amp; Windows 7 64 bit:&lt;br /&gt;By default, the setup stop immediately:&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.lotp.fr/wp-content/uploads/2009/07/Capture.PNG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 405px; height: 163px;" src="http://www.lotp.fr/wp-content/uploads/2009/07/Capture.PNG" alt="" border="0" /&gt;&lt;/a&gt;Now we have 2 ways:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Change the MSI to skip this check, but Windows 7 alerts on issue with it...Safe to install?&lt;/li&gt;&lt;li&gt;Apply directly drivers to device without Apple setup.&lt;/li&gt;&lt;/ul&gt;I chose the second way, that worked, but no Boot Camp control panel as i didn't install the Apple layer. That generates some issues:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;To switch to MacOSX, i have to hold "Alt" when powering on.&lt;/li&gt;&lt;li&gt;No right click, neither multitouch, even with drivers.&lt;/li&gt;&lt;li&gt;No access to shortcuts over F1-12.&lt;/li&gt;&lt;/ul&gt;Not having the right click by now is not funny at all. MacBook Air only have one USB port, so connecting an external mouse full time is not an option. (The Ethernet module need it too..)&lt;br /&gt;&lt;br /&gt;So i choose to finally install Boot Camp anyway. The DVD i got with the laptop already contains Boot Camp version 2.1. As it won't let you going the smart way, we have to lie it a bit:&lt;br /&gt;&lt;ul&gt;&lt;li&gt; Switch regional settings (Formats) to English (United States). Their MSI doesn't stand French at least, generating an error 2229.&lt;/li&gt;&lt;li&gt;Launch the MSI directly from the DVD:\Boot Camp\Drivers\Apple\BootCamp64.msi&lt;/li&gt;&lt;li&gt;If it's not enough, you will have to change the registry key HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion from 6.1 to 6.0 to simulate Vista. To be put back after.&lt;/li&gt;&lt;/ul&gt;If you are having issue, here are some infos to help out:&lt;br /&gt;&lt;br /&gt;Path to the Boot Camp control panel: C:\windows\system32\AppleControlPanel.exe&lt;br /&gt;&lt;br /&gt;Drivers/services/shims launched by Apple at boot time:&lt;br /&gt;&lt;p&gt;&lt;em&gt;HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run:&lt;/em&gt;&lt;br /&gt;Apple_KbdMgr     Boot Camp Manager           c:\program files\boot camp\kbdmgr.exe&lt;br /&gt;IRW                           IR Receiver Application    c:\windows\system32\irw.exe&lt;br /&gt;RtHDVCpl              HD Audio Control Panel     Realtek Semiconductor    c:\program files\realtek\audio\hda\ravcpl64.exe&lt;/p&gt; &lt;p&gt;&lt;em&gt;HKLM\System\CurrentControlSet\Services:&lt;br /&gt;&lt;/em&gt;AppleOSSMgr          c:\windows\system32\appleossmgr.exe&lt;br /&gt;AppleTimeSrv        c:\windows\system32\appletimesrv.exe&lt;br /&gt;aapltctp                         Apple  Trackpad Enabler   c:\windows\system32\drivers\aapltctp.sys&lt;br /&gt;aapltp                              Apple Trackpad Driver      c:\windows\system32\drivers\aapltp.sys&lt;br /&gt;applebt                            Apple Bluetooth     c:\windows\system32\drivers\applebt.sys&lt;br /&gt;applemtm                      Apple Multitouch Mouse Driver     c:\windows\system32\drivers\applemtm.sys&lt;br /&gt;applemtp                      Apple  Multitouch Trackpad Driver   c:\windows\system32\drivers\applemtp.sys&lt;br /&gt;AppleODD                     Apple  Optical Disc Drive     c:\windows\system32\drivers\appleodd.sys&lt;br /&gt;AppleUSBEthernet    Apple USB  Ethernet Adapter Driver   c:\windows\system32\drivers\appleusbethernet.sys&lt;br /&gt;DevUpper                      Apple iSight Driver  c:\windows\system32\drivers\isightft.sys&lt;br /&gt;IRRemoteFlt                IR Receiver Driver    c:\windows\system32\drivers\irfilter.sys&lt;br /&gt;KeyAgent                     Apple  KeyAgent Driver c:\windows\system32\drivers\keyagent.sys&lt;br /&gt;KeyMagic                     Apple Keyboard Driver  c:\windows\system32\drivers\keymagic.sys&lt;/p&gt;&lt;p&gt;Devices as they must appears:&lt;/p&gt;&lt;p&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.lotp.fr/wp-content/uploads/2009/07/devices.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 324px; height: 665px;" src="http://www.lotp.fr/wp-content/uploads/2009/07/devices.jpg" alt="" border="0" /&gt;&lt;br /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Boot Camp must have a Trackpad tab among others:&lt;/p&gt;&lt;p&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.lotp.fr/wp-content/uploads/2009/07/bootcamp1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 576px; height: 412px;" src="http://www.lotp.fr/wp-content/uploads/2009/07/bootcamp1.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Some tips:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Right click: 2 fingers on the touchpad + trackpad button&lt;/li&gt;&lt;li&gt;Page up/down: 2 fingers that go up or down on the touchpad (multitouch)&lt;/li&gt;&lt;li&gt;Delete: Fn + backspace&lt;/li&gt;&lt;li&gt;Choose OS at boot time: hold Alt key while powering on.&lt;/li&gt;&lt;/ul&gt;Hope it helps!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30193075-1244482874214403568?l=lordoftheping.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://lordoftheping.blogspot.com/2009/07/i-have-machow-bad-is-it-doctor.html</link><author>mathieu.chateau@lotp.fr (Mathieu Chateau)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-30193075.post-6348393584967255987</guid><pubDate>Sun, 21 Jun 2009 17:53:00 +0000</pubDate><atom:updated>2009-06-21T20:13:28.082+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">64 bit</category><title>Going 64bit:: leader or last one ?</title><description>64 bit platform has been reserved for 'big system" during a long time, when a lot of memory or cpu math were needed. With the time being, it's now so common that any pretty current desktop /laptop can do 64 bit.  Nevertheless, 64 bit keep used only when it's mandatory, as it's still not so obvious on what it brings. Microsoft put some pressure by supporting Exchange 2007 on 64 bit. As it's stalling, they add more pressure by supporting Windows 2008 R2 only on 64 bit.&lt;br /&gt;&lt;br /&gt;Why do we put the brakes on 64 bit ?&lt;ul&gt;&lt;li&gt;A lot of software editors don't offer a 64 bit version of teir products. So it will works, but through Wow64 to emulate 32 bit anyway.&lt;/li&gt;&lt;li&gt;Drivers must be signed by Microsoft. Why ? Around 2 blue screen (BSOD) on 3 are due to bug in drivers. To be signed, a driver must pass some tests, to be considered as stable. You can even make these tests yourself by launching &lt;span style="font-weight: bold;"&gt;verifier&lt;/span&gt;. This is as simple as doing &lt;span style="font-weight: bold;"&gt;Start / Execute / verifier&lt;/span&gt;. Even if you are an admin and not a developper, you will want to use the developper scenario. Many checks are available:&lt;/li&gt;&lt;/ul&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_vm3CUZxDGGI/Sj52sc9cwmI/AAAAAAAAACo/C_itWHeWXSw/s1600-h/verifier.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 227px; height: 176px;" src="http://2.bp.blogspot.com/_vm3CUZxDGGI/Sj52sc9cwmI/AAAAAAAAACo/C_itWHeWXSw/s400/verifier.png" alt="" id="BLOGGER_PHOTO_ID_5349843913422979682" border="0" /&gt;&lt;/a&gt;You shouldn't activate these tests on all drivers, as you may not be able to boot again. Except if you are really confident on your drivers quality (or already signed)!&lt;br /&gt;&lt;br /&gt;Some editors provide a 64bit version, but all processes are still 32 bit. It's just that their 32 bit version still works in 64 bit.&lt;br /&gt;&lt;br /&gt;Apple, with Snow Leopard, finally make the big bang choice: they only provide a 64 bit version. iMacs and others won't have this new version, and editors will have to povide correct 64 bit versions.&lt;br /&gt;&lt;br /&gt;Should you be a leader on 64 bit deployment ? I don't think so, except if you truly need it, as with all new technology. But, deploying 64 bit in 2009 doesn't make you a leader anymore! Ok, you still have to manage changes on your teams, a lot on the dev team. As i always recommend, think big but start small. Use new project to learn on 64 bit impacts.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30193075-6348393584967255987?l=lordoftheping.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://lordoftheping.blogspot.com/2009/06/going-64bit-leader-or-last-one.html</link><author>mathieu.chateau@lotp.fr (Mathieu Chateau)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_vm3CUZxDGGI/Sj52sc9cwmI/AAAAAAAAACo/C_itWHeWXSw/s72-c/verifier.png" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-30193075.post-6947014994881047265</guid><pubDate>Sun, 07 Jun 2009 09:38:00 +0000</pubDate><atom:updated>2009-06-08T15:20:43.139+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">cygwin1.dll</category><category domain="http://www.blogger.com/atom/ns#">cygwin</category><title>Cygwin1.dll and the mysterious version problem</title><description>&lt;p&gt;As i started computing on Linux/FreeBSD, I still my little habits to parse logs (awk/sed/cat/sort/uniq…).&lt;br /&gt;Recently, cygwin, a Unix shell port on Windows, stopped working:&lt;br /&gt;&lt;/p&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://www.lotp.fr/wp-content/uploads/2009/06/cygwin.png"&gt;&lt;img class="aligncenter size-full wp-image-413" title="cygwin" src="http://www.lotp.fr/wp-content/uploads/2009/06/cygwin.png" alt="cygwin" width="509" height="112" /&gt;&lt;/a&gt;&lt;/div&gt; &lt;p&gt;So there is a trouble with cygwin1.dll. Indeed, i am also using another tool, John the ripper, that has been ported to Windows through cygwin.&lt;br /&gt;But the DLL for JTR is much older than the one included in my cygwin. Starting in the reverse order gives same result, except it's JTR that crash for same reason.&lt;br /&gt;&lt;/p&gt; &lt;p&gt;&lt;a title="Sysinternals" href="http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx" target="_blank"&gt;Procmon&lt;/a&gt; from Sysinternals confirm that each program load its own cygwin1.dll. But cygwin doesn't read the DLL file, instead it just do a "Load image". JTR does it, but after reading the DLL file:&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.lotp.fr/wp-content/uploads/2009/06/procmon_test.png" mce_href="http://www.lotp.fr/wp-content/uploads/2009/06/procmon_test.png"&gt;&lt;img class="aligncenter size-full wp-image-427" title="procmon" src="http://www.lotp.fr/wp-content/uploads/2009/06/procmon_test.png" mce_src="http://www.lotp.fr/wp-content/uploads/2009/06/procmon_test.png" alt="procmon" width="513" height="221" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a title="Sysinternals download" href="http://downloads.wordpress.org/plugin/all-in-one-seo-pack.zip" target="_blank"&gt;Process Explorer&lt;/a&gt; helps me to point out the root cause. Cygwin1.dll uses a section type handle that have the same name, anyway which version of the DLL is used.&lt;/p&gt; &lt;p style="text-align: center;"&gt;&lt;em&gt;Handles for JTR:&lt;/em&gt;&lt;br /&gt;&lt;a href="http://www.lotp.fr/wp-content/uploads/2009/06/cygwin1_processexplorer_jtr.png"&gt;&lt;img class="aligncenter size-full wp-image-411" title="cygwin1_processexplorer_jtr" src="http://www.lotp.fr/wp-content/uploads/2009/06/cygwin1_processexplorer_jtr.png" alt="cygwin1_processexplorer_jtr" width="484" height="388" /&gt;&lt;/a&gt; &lt;/p&gt; &lt;p style="text-align: center;"&gt;&lt;em&gt;Handles for cygwin itself (bash.exe)&lt;/em&gt;&lt;a href="http://www.lotp.fr/wp-content/uploads/2009/06/cygwin1_processexplorer_cygwin.png"&gt;&lt;img class="aligncenter size-full wp-image-406" title="cygwin1_processexplorer_cygwin" src="http://www.lotp.fr/wp-content/uploads/2009/06/cygwin1_processexplorer_cygwin.png" alt="cygwin1_processexplorer_cygwin" width="494" height="260" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;p style="text-align: left;"&gt;I could confirm the diagnostic using a feature of Process Explorer: close an handle inside a process:&lt;/p&gt; &lt;p style="text-align: center;"&gt;&lt;a href="http://www.lotp.fr/wp-content/uploads/2009/06/cygwin1_processexplorer_jtr_close.png"&gt;&lt;img class="aligncenter size-full wp-image-409" title="cygwin1_processexplorer_jtr_close" src="http://www.lotp.fr/wp-content/uploads/2009/06/cygwin1_processexplorer_jtr_close.png" alt="cygwin1_processexplorer_jtr_close" width="501" height="174" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;p style="text-align: left;"&gt; &lt;/p&gt;&lt;p style="text-align: left;"&gt;The cygwin shell is now working while JTR is also running. The thing is that i don't what could be the consequences in JTR:&lt;/p&gt; &lt;p style="text-align: left;"&gt;&lt;a href="http://www.lotp.fr/wp-content/uploads/2009/06/cygwin1.png"&gt;&lt;img class="aligncenter size-full wp-image-412" title="cygwin" src="http://www.lotp.fr/wp-content/uploads/2009/06/cygwin1.png" alt="cygwin" width="496" height="247" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30193075-6947014994881047265?l=lordoftheping.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://lordoftheping.blogspot.com/2009/06/cygwin1dll-and-mysterious-version.html</link><author>mathieu.chateau@lotp.fr (Mathieu Chateau)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-30193075.post-6380758900617130460</guid><pubDate>Sat, 06 Jun 2009 10:10:00 +0000</pubDate><atom:updated>2009-11-06T20:54:30.965+01:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">yukon</category><category domain="http://www.blogger.com/atom/ns#">marvell</category><category domain="http://www.blogger.com/atom/ns#">process explorer</category><category domain="http://www.blogger.com/atom/ns#">handle</category><title>The case of the driver leaking handles - Marvell Yukon Service</title><description>I noticed that one of my process, rundll32, was leaking handles thanks to &lt;a href="http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx"&gt;Process Explorer&lt;/a&gt;, a sysinternal tool. Rundll32 is a Windows hosting process, so it's the process hosted inside that is leaking. Hopefully Process explorer says who is behind by just overlaping the cursor:&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_vm3CUZxDGGI/SipJnFfPemI/AAAAAAAAABg/cRlTr01Yn60/s1600-h/processexplorer_rundll32.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 83px;" src="http://4.bp.blogspot.com/_vm3CUZxDGGI/SipJnFfPemI/AAAAAAAAABg/cRlTr01Yn60/s400/processexplorer_rundll32.png" alt="" id="BLOGGER_PHOTO_ID_5344164843665455714" border="0" /&gt;&lt;/a&gt;So the hosted service is &lt;span style="font-weight: bold;"&gt;Marvell Yukon Service (yksvc)&lt;/span&gt;, used by my network card. To find what sort of handle is leaking, i added the lower pane inside Process explorer by pressing crtl +L. Scrolling down, i found a lot of mutant, always on the same object, &lt;span style="font-family:courier new;"&gt;\BaseNameObjects\NetCfgWriteLock&lt;/span&gt;. All new handle are highlighted in green, so i found out that it keeps opening a new handle every second or so:&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_vm3CUZxDGGI/SipJvnmo00I/AAAAAAAAABo/_uNnHfAh5Lw/s1600-h/processexplorer_mutant.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 305px; height: 400px;" src="http://3.bp.blogspot.com/_vm3CUZxDGGI/SipJvnmo00I/AAAAAAAAABo/_uNnHfAh5Lw/s400/processexplorer_mutant.png" alt="" id="BLOGGER_PHOTO_ID_5344164990262235970" border="0" /&gt;&lt;/a&gt;A right click allows to get its property:&lt;span style="text-decoration: underline;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_vm3CUZxDGGI/SipJ9bbc4nI/AAAAAAAAABw/VOKDvXc_qZ4/s1600-h/processexplorer_mutant_detail.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 350px;" src="http://2.bp.blogspot.com/_vm3CUZxDGGI/SipJ9bbc4nI/AAAAAAAAABw/VOKDvXc_qZ4/s400/processexplorer_mutant_detail.png" alt="" id="BLOGGER_PHOTO_ID_5344165227512259186" border="0" /&gt;&lt;/a&gt;As &lt;a href="http://blogs.technet.com/markrussinovich/"&gt;Mark&lt;/a&gt; always recommend, i checked my driver version, which is a bit old:&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_vm3CUZxDGGI/SipKFYrN-TI/AAAAAAAAAB4/GuXvhd6744I/s1600-h/driver.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 398px; height: 162px;" src="http://3.bp.blogspot.com/_vm3CUZxDGGI/SipKFYrN-TI/AAAAAAAAAB4/GuXvhd6744I/s400/driver.png" alt="" id="BLOGGER_PHOTO_ID_5344165364212037938" border="0" /&gt;&lt;/a&gt;A newer version is available on the &lt;a href="http://www.marvell.com/drivers/search.do"&gt;Marvell support page&lt;/a&gt;, so i decided to give it a try.&lt;br /&gt;Before doing the driver update, i used perfmon on my system to check the handle behavior before and after the upgrade. It confirmed that the bug is now resolved:&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_vm3CUZxDGGI/SipKRuuBwoI/AAAAAAAAACA/P-970IsMUSc/s1600-h/perfmon_en.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 282px; height: 400px;" src="http://4.bp.blogspot.com/_vm3CUZxDGGI/SipKRuuBwoI/AAAAAAAAACA/P-970IsMUSc/s400/perfmon_en.png" alt="" id="BLOGGER_PHOTO_ID_5344165576287830658" border="0" /&gt;&lt;/a&gt;Thanks to mark tools &amp;amp; tutorial, this problem is gone :)&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_vm3CUZxDGGI/SipGz6M6YsI/AAAAAAAAABY/D3-o6LBxZc0/s1600-h/perfmon_en.png"&gt;&lt;br /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30193075-6380758900617130460?l=lordoftheping.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://lordoftheping.blogspot.com/2009/06/case-of-driver-leaking-handles-marvell.html</link><author>mathieu.chateau@lotp.fr (Mathieu Chateau)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_vm3CUZxDGGI/SipJnFfPemI/AAAAAAAAABg/cRlTr01Yn60/s72-c/processexplorer_rundll32.png" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-30193075.post-752273531874709550</guid><pubDate>Thu, 21 May 2009 08:21:00 +0000</pubDate><atom:updated>2009-05-21T10:46:57.728+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Google</category><title>my migration to Google Apps: the good, the bad and the ugly...</title><description>&lt;p&gt;Bored ? Migrate to Google Apps to shake your brain!&lt;/p&gt;&lt;p&gt;As input, i had:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;One Gmail account(2Gb of mails ; agenda ; reader ; contacts)&lt;/li&gt;&lt;li&gt;One pop account&lt;br /&gt;&lt;/li&gt;&lt;li&gt;my domain (lotp.fr) with my main email forwarded to the pop account&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;As output… Everything in Google Apps using my domain &lt;img src="http://www.lotp.fr/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /&gt; &lt;/p&gt; &lt;p&gt;Activation of Google Apps for your own domain is really simple and fast (&lt; 15mn)…Up to now, rock &amp;amp; roll !&lt;br /&gt;Of course, it would be great if it could just import the Gmail account into Google Apps… But if it was the case, i wouldn't be blogging about it !&lt;/p&gt; &lt;p&gt;&lt;strong&gt;The good…&lt;/strong&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Works immediately&lt;/li&gt;&lt;li&gt;No Credit card asked&lt;br /&gt;&lt;/li&gt;&lt;li&gt;We can change the url to a more friendly one, likewebmail.mydomain.com&lt;/li&gt;&lt;li&gt;Google Labs is still there, with all same addons as Gmail&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Having Google mail servers as frontend for incoming mail reduce a lot spam (compared to the forwarding solution i had before)&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;&lt;strong&gt;The bad…&lt;/strong&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Google doesn't give &lt;span style="font-weight: bold;"&gt;any&lt;/span&gt; way to migrate Gmail content to Google Apps. It's a shame! Even GoogleEmailUploader given by Google exclude Gmail account as source…Yes, it's not a bug, it's a feature! I used the way explained &lt;a href="http://www.thamtech.com/blog/2008/03/29/gmail-to-google-apps-email-migration/" target="_blank"&gt;here&lt;/a&gt; : synchro of the 2 accounts through imap protocol with an open source tool named imapsync. The thing is that you need the best Internet connection you can and a Linux in hand. Using my hosted server, it did 2Gb in 3 hours. Globally, it's all goods, maybe except one or two attached files that became corrupted!! Don't be afraid, the source mailbox isn't changed neither emptied, so you can just keep it at hand for some months in case..&lt;/li&gt;&lt;li&gt;For your contacts  and calendar, you will have to do a 2 way steps, synching the old account with a local mail client, and then the client with the new account.&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;&lt;strong&gt;The ugly…&lt;/strong&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt;No Google Reader! That's really ugly when you have 300 rss sources... Don't cry, there is a workaround! You have to create a new google Reader, using your google apps account (same login/pass). Then export and import your rss feeds. You still don't have the link to Google Reader from Google Apps, and you still have to logon again on google Reader.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Looks like people had more space on Google Apps than Gmail before. I have the same amount as my Gmail account...In fact, i even have 1Mb more on Gmail than my Google Apps account  &lt;img src="http://www.lotp.fr/wp-includes/images/smilies/icon_wink.gif" alt=";)" class="wp-smiley" /&gt; . Except if you switch to the Premier edition with 25Gb&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;Up to now, i am very satisfied with the service, especially for a free service! I would be ready to for more space in Google Documents (same space as a Gmail account) and Google Reader integrated.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;UPDATE&lt;/strong&gt;: I finally decided to use Google Email Uploader on my 64 bit desktop. It does not find any mailbox to upload (outlook, thunderbird, same problem). My luck is that a braveful guy spent the time to understand why and make a working version for 64 bit, working for me: &lt;a href="http://blog.insanegenius.com/2009/01/google-email-uploader-on-vista-x64.html" target="_blank"&gt;http://blog.insanegenius.com/2009/01/google-email-uploader-on-vista-x64.html&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30193075-752273531874709550?l=lordoftheping.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://lordoftheping.blogspot.com/2009/05/my-migration-to-google-apps-good-bad.html</link><author>mathieu.chateau@lotp.fr (Mathieu Chateau)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-30193075.post-6053836158530846950</guid><pubDate>Sat, 16 May 2009 14:59:00 +0000</pubDate><atom:updated>2009-05-16T17:10:45.336+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">windows 2008</category><category domain="http://www.blogger.com/atom/ns#">admin</category><category domain="http://www.blogger.com/atom/ns#">password</category><category domain="http://www.blogger.com/atom/ns#">reset</category><category domain="http://www.blogger.com/atom/ns#">security</category><title>how to reset domain admin password on a Windows Server 2008</title><description>I did not use my tests Virtual Machines for some times just after installing them....I forgot the domain admin password :'(&lt;br /&gt;I found a hack for Vista, that i reused for my Windows Server 2008 Domain controller !&lt;br /&gt;I just pushed it a litlle further by only using the official Windows Server 2008 DVD from Microsoft instead of backtrack :)&lt;br /&gt;&lt;br /&gt;For people in hurry, here are the steps:&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Boot onto DVD of Windows Server 2008&lt;/li&gt;&lt;li&gt;Choose “Repair your computer”&lt;/li&gt;&lt;li&gt;Launch cmd&lt;/li&gt;&lt;li&gt;Go to c:\windows\system32&lt;/li&gt;&lt;li&gt;Rename Utilman.exe to Utilman.exe.bak&lt;/li&gt;&lt;li&gt;Copy cmd.exe to Utilman.exe&lt;/li&gt;&lt;li&gt;Reboot on Windows&lt;/li&gt;&lt;li&gt;Do the keyboard shortcut Windows + U when on the logon screen&lt;/li&gt;&lt;li&gt;net user administrator Newpass123 inside the cmd&lt;/li&gt;&lt;li&gt;log on with the domain admin account and this new pass&lt;/li&gt;&lt;li&gt;change the password to remember it if needed&lt;/li&gt;&lt;li&gt;Reboot on the DVD to put back the original Utilman.exe&lt;/li&gt;&lt;/ul&gt;&lt;a href="http://www.youtube.com/watch?v=Ar-VoO9ogHc"&gt;http://www.youtube.com/watch?v=Ar-VoO9ogHc&lt;/a&gt; &lt;p&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;object width="560" height="340"&gt;&lt;param name="movie" value="http://www.youtube.com/v/Ar-VoO9ogHc&amp;amp;hl=fr&amp;amp;fs=1"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;embed src="http://www.youtube.com/v/Ar-VoO9ogHc&amp;hl=fr&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30193075-6053836158530846950?l=lordoftheping.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://lordoftheping.blogspot.com/2009/05/i-did-not-use-my-tests-virtual-machines.html</link><author>mathieu.chateau@lotp.fr (Mathieu Chateau)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-30193075.post-5353605327999420530</guid><pubDate>Mon, 11 May 2009 09:46:00 +0000</pubDate><atom:updated>2009-07-13T15:44:04.358+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">SCOM 2007</category><category domain="http://www.blogger.com/atom/ns#">dell</category><title>Management Pack Dell: Regional settings bug</title><description>&lt;p&gt;&lt;b&gt;[Update: Dell will only deliver a 4.0 with this bug corrected. No intermediate release. We signed an NDA to get a hand on the 4.0 beta, but i left the company before having it. The 4.0 should be released by the end of july.]&lt;/b&gt;&lt;/p&gt;&lt;p&gt;I have an open issue with the Dell Management Pack and our regional settings. I found out the bug, the resolution, but now Dell ask me to wait for the MP V4.0 because i am the only one to report this bug.&lt;/p&gt; &lt;p&gt;I guess that we are not the only one to have this bug, and it's about people not going through opening a case at Dell. I will expose the issue here, hoping others will realize they are affected too. My goal is to have Dell releasing a corrected version before 4.0 that will be out in months.&lt;/p&gt; &lt;p&gt;The Bug is for &lt;i&gt;DellStorageDiscovery.vbs&lt;/i&gt;:&lt;/p&gt; &lt;p&gt;Source: Health Service Modules&lt;br /&gt;Event number: 21405&lt;/p&gt; &lt;p&gt;The process started at 09:29:38 failed to create System.Discovery.Data, no errors detected in the output. The process exited with 0 Command executed: "C:\WINDOWS\system32\cscript.exe" /nologo "&lt;b&gt;DellStorageDiscovery.vbs&lt;/b&gt;" {XXXXXX-XXXX-XXXX-XXXX-XXXXXXXX} {XXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXX} agent.mydomain.com Working Directory: C:\Program Files\System Center Operations Manager 2007\Health Service State\Monitoring Host Temporary Files 1\1821\ One or more workflows were affected by this. Workflow name: Dell.Connections.DellStorage.Discovery Instance name: agent.mydomain.com Instance ID: {XXXXXX-XXXX-XXXX-XXXX-XXXXXXXX} Management group: FIRSTMG&lt;/p&gt; &lt;p&gt;------&lt;br /&gt;&lt;b&gt;&lt;span style="" mce_style="underline;"&gt;&lt;i&gt;The badly function is (in red the problem):&lt;/i&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;Function CheckVBScriptEngine()&lt;br /&gt;Dim bIsCompatV,  var&lt;br /&gt;Const VBSCRIPT_MIN_VERSION = 5.6&lt;br /&gt;var = ScriptEngineMajorVersion &lt;span style="color: rgb(255, 0, 0);" mce_style="#ff0000;"&gt;&amp;amp; “.” &amp;amp;&lt;/span&gt; ScriptEngineMinorVersion&lt;br /&gt;If (CInt(var)) &lt; biscompatv =" False" biscompatv =" True"&gt; 0 Then&lt;br /&gt;CheckVBScriptEngine  = Err.Number&lt;br /&gt;Else&lt;br /&gt;CheckVBScriptEngine = bIsCompatV&lt;br /&gt;End If&lt;br /&gt;End Function&lt;/p&gt; &lt;p&gt;&lt;b&gt;&lt;span style="" mce_style="underline;"&gt;&lt;i&gt;The corrected function is:&lt;/i&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;Function CheckVBScriptEngine()&lt;br /&gt;Dim bIsCompatV,  var, &lt;b&gt;sep, WshShell&lt;br /&gt;Set WshShell = WScript.CreateObject(”WScript.Shell”)&lt;br /&gt;sep = WshShell.RegRead(”HKCU\Control Panel\International\sDecimal”)&lt;br /&gt;&lt;/b&gt; Const VBSCRIPT_MIN_VERSION = 5.6&lt;br /&gt;var = ScriptEngineMajorVersion &lt;b&gt;&amp;amp; sep &amp;amp;&lt;/b&gt; ScriptEngineMinorVersion&lt;br /&gt;If (CInt(var)) &lt; biscompatv =" False" biscompatv =" True"&gt; 0 Then&lt;br /&gt;CheckVBScriptEngine  = Err.Number&lt;br /&gt;Else&lt;br /&gt;CheckVBScriptEngine = bIsCompatV&lt;br /&gt;End If&lt;br /&gt;End Function&lt;/p&gt; &lt;p&gt;PS: I also have a similar bug with the Microsoft ISA 2006 Management Pack. Microsoft acknowleged the bug and is going to deliver a new release.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30193075-5353605327999420530?l=lordoftheping.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://lordoftheping.blogspot.com/2009/05/management-pack-dell-regional-settings.html</link><author>mathieu.chateau@lotp.fr (Mathieu Chateau)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">3</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-30193075.post-328111810933279047</guid><pubDate>Tue, 05 May 2009 09:44:00 +0000</pubDate><atom:updated>2009-05-05T11:52:48.221+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">SCOM 2007</category><category domain="http://www.blogger.com/atom/ns#">certificate</category><category domain="http://www.blogger.com/atom/ns#">opsmgr</category><title>SCOM/OPSMGR: Web Application: Untrusted CA</title><description>&lt;p&gt;Context:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;You created a web application which use https (SSL)&lt;/li&gt;&lt;li&gt;The checkbox “monitor SSL health” is checked&lt;/li&gt;&lt;li&gt;When you log on the watcher node and call the same pages, you don't have any security alert through internet explorer&lt;/li&gt;&lt;li&gt;You do have the following error:&lt;/li&gt;&lt;/ul&gt;&lt;div style="text-align: left;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.lotp.fr/wp-content/uploads/2009/03/image001.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 453px; height: 258px;" src="http://www.lotp.fr/wp-content/uploads/2009/03/image001.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;Cause:&lt;br /&gt;You are missing a certificate on the chaine. Your user account has the full chaine, but not the computer account. In my case, i had to add a Verisign (Class 3) certificate for the local computer account:&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.lotp.fr/wp-content/uploads/2009/03/image002.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 687px; height: 410px;" src="http://www.lotp.fr/wp-content/uploads/2009/03/image002.png" alt="" border="0" /&gt;&lt;/a&gt;…And alerts are gone! We could just uncheck the health monitoring of certificate, but it's always better to get notified when it's expired &lt;img src="http://www.lotp.fr/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30193075-328111810933279047?l=lordoftheping.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://lordoftheping.blogspot.com/2009/05/scomopsmgr-web-application-untrusted-ca.html</link><author>noreply@blogger.com (Mathieu CHATEAU)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">2</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-30193075.post-7858043995916590411</guid><pubDate>Tue, 05 May 2009 09:35:00 +0000</pubDate><atom:updated>2009-05-05T11:43:45.416+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">web application</category><category domain="http://www.blogger.com/atom/ns#">tcp</category><category domain="http://www.blogger.com/atom/ns#">SCOM 2007</category><category domain="http://www.blogger.com/atom/ns#">opsmgr</category><title>OpsMgr/Scom: error 2130771918 on all TCP &amp; web applications</title><description>After installing a SCOM hotfix with errors, all TCP and web applications monitors stopped working with always the same error: 2130771918. For example, even a TCP test on the RMS itself failed:&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.lotp.fr/wp-content/uploads/2009/02/erreur.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 424px; height: 371px;" src="http://www.lotp.fr/wp-content/uploads/2009/02/erreur.jpg" alt="" border="0" /&gt;&lt;/a&gt;After opening a call to MS, they give us the patch for &lt;a title="KB 957511" href="http://support.microsoft.com/?scid=kb%3Ben-us%3B957511&amp;amp;x=8&amp;amp;y=14" target="_blank"&gt;KB 957511&lt;/a&gt;. We are not concerned by this KB but it contains a more recent version of DLL &lt;strong&gt;Momnetworkmodules.dll&lt;/strong&gt;, which does TCP and web applications tests. Once this dll updatedn the problem was gone. &lt;p&gt;By the way it could have been necessary to register again this dll with:&lt;/p&gt; &lt;p class="MsoNormal"&gt;&lt;span style=";font-family:'Arial','sans-serif';font-size:10;"  &gt;regsvr32 “c:\program  files\system center operations manager 2007\momnetworkmodules.dll”&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30193075-7858043995916590411?l=lordoftheping.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://lordoftheping.blogspot.com/2009/05/opsmgrscom-error-2130771918-on-all-tcp.html</link><author>noreply@blogger.com (Mathieu CHATEAU)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-30193075.post-3066397254387260660</guid><pubDate>Sun, 26 Apr 2009 10:30:00 +0000</pubDate><atom:updated>2009-04-26T12:41:24.136+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">security</category><title>Web site: security or index, do we need to choose ?</title><description>&lt;p&gt;Many web sites gives content based on questions/answers. Answering a question can even be paid, to keep people motivated to answer.&lt;/p&gt;&lt;p&gt;To have their business running, these sites often ask to register and pay to access the content....&lt;br /&gt;But, to have visitors and so customers, theses questions and answers must be indexed by search engine like google.&lt;br /&gt;You can't give google an account to log on your site to index it. So these web sites filters access based on the user agent coming to them, and if it's a known search engine, then they give full access to the content. So when a visitor find a page with the same question it has through google, they filter the answers because the user agent is not a search engine.  &lt;/p&gt;&lt;p&gt;This form of security can be easily circumvented by changing your user agent to googlebot or others. Very easy, even for dummies like with the firefow extension, &lt;a title="Extension User Agent Switcher" href="https://addons.mozilla.org/en-US/firefox/addon/59" target="_blank"&gt;User Agent Switcher&lt;/a&gt;!&lt;/p&gt;If you are too lazy to find the exact name of search engine, you can feed this extension with this ready to use XML:&lt;br /&gt;&lt;a title="useragentswitcher.xml" href="http://techpatterns.com/downloads/firefox/useragentswitcher.xml" target="_blank"&gt;http://techpatterns.com/downloads/firefox/useragentswitcher.xml&lt;/a&gt;&lt;br /&gt;&lt;p&gt;For example, the web site &lt;a title="SQL Server Central" href="http://www.sqlservercentral.com/" target="_blank"&gt;SQL Server Central&lt;/a&gt; use this false security.&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;To have a real security, you need to filter User Agent &lt;span style="font-weight: bold;"&gt;AND&lt;/span&gt; IP address &lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30193075-3066397254387260660?l=lordoftheping.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://lordoftheping.blogspot.com/2009/04/web-site-security-or-index-do-we-need.html</link><author>noreply@blogger.com (Mathieu CHATEAU)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-30193075.post-7732048409172965444</guid><pubDate>Sun, 15 Feb 2009 18:58:00 +0000</pubDate><atom:updated>2009-02-15T20:42:23.723+01:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">workstation</category><category domain="http://www.blogger.com/atom/ns#">vmware</category><category domain="http://www.blogger.com/atom/ns#">esxi</category><title>ESXi inside VmWare Workstation</title><description>If you want to try out vmware ESXi inside VmWare workstation, you have two things to look after:&lt;ul&gt;&lt;li&gt;Set the CPU to Intel-V or AMD-V&lt;/li&gt;&lt;li style="font-family: courier new;"&gt;&lt;meta equiv="Content-Type" content="text/html; charset=utf-8"&gt;&lt;meta name="ProgId" content="PowerPoint.Slide"&gt;&lt;meta name="Generator" content="Microsoft PowerPoint 12"&gt;  &lt;p style="margin-top: 0pt; margin-bottom: 0pt; margin-left: 0in; text-align: left; direction: ltr; unicode-bidi: embed;"&gt;&lt;span style=";font-size:85%;color:black;"  &gt;monitor_control.restrict_backdoor="true"&lt;/span&gt;&lt;/p&gt;  &lt;/li&gt;&lt;/ul&gt;If you don't put this line in the VMX, you will get this error:
&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_2IJ3AVBhBRQ/SZho0TtGo4I/AAAAAAAAAFk/B4fI-jl00Aw/s1600-h/erreur_vm.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 150px;" src="http://2.bp.blogspot.com/_2IJ3AVBhBRQ/SZho0TtGo4I/AAAAAAAAAFk/B4fI-jl00Aw/s400/erreur_vm.png" alt="" id="BLOGGER_PHOTO_ID_5303103809080697730" border="0" /&gt;&lt;/a&gt;&lt;span style="font-style: italic;"&gt;(You many not power on a virtual machine in a virtual machine.)&lt;/span&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;This means that ESXi detect it's running inside a VM and won't let you start a VM.
&lt;br /&gt;
&lt;br /&gt;For those that understand my native french language, i published a step by step video on how to set this up from:
&lt;br /&gt;
&lt;br /&gt;&lt;object width="480" height="295"&gt;&lt;param name="movie" value="http://www.youtube.com/v/Y71yj4j16U8&amp;amp;hl=fr&amp;amp;fs=1"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;embed src="http://www.youtube.com/v/Y71yj4j16U8&amp;amp;hl=fr&amp;amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"&gt;&lt;/embed&gt;&lt;/object&gt;
&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30193075-7732048409172965444?l=lordoftheping.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://lordoftheping.blogspot.com/2009/02/esxi-inside-vmware-workstation.html</link><author>noreply@blogger.com (lordoftheping)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_2IJ3AVBhBRQ/SZho0TtGo4I/AAAAAAAAAFk/B4fI-jl00Aw/s72-c/erreur_vm.png" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-30193075.post-1251744388693618761</guid><pubDate>Sat, 01 Nov 2008 10:27:00 +0000</pubDate><atom:updated>2008-11-01T11:29:45.153+01:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">TechED</category><title>I am going to TechED in Barcelona!</title><description>I am very pleased to be part of the TechED IT experience for the second time !&lt;br /&gt;&lt;br /&gt;I will post photos of the Keynote, maybe windows 7 first pictures :)&lt;br /&gt;&lt;br /&gt;PS: If you go to TechED too, drop me a mail :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30193075-1251744388693618761?l=lordoftheping.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://lordoftheping.blogspot.com/2008/11/i-am-going-to-teched-in-barcelona.html</link><author>noreply@blogger.com (lordoftheping)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-30193075.post-1860553509003787242</guid><pubDate>Fri, 12 Sep 2008 17:58:00 +0000</pubDate><atom:updated>2008-09-12T19:59:59.953+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">windows mobile</category><category domain="http://www.blogger.com/atom/ns#">powersms</category><category domain="http://www.blogger.com/atom/ns#">freeware</category><title>Windows Mobile: Free SMS Tool</title><description>&lt;div style="text-align: center;"&gt;&lt;a href="http://lh5.ggpht.com/m.chateau123/SMqt2gtYujI/AAAAAAAAADk/w4TOqx3tHsU/s1600-h/image%5B2%5D.png"&gt;&lt;img style="border: 0px none ;" alt="image" src="http://lh4.ggpht.com/m.chateau123/SMqt3542TLI/AAAAAAAAADo/gCvnDDZ6RA8/image_thumb.png?imgmax=800" border="0" width="244" height="125" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;p&gt; &lt;/p&gt;  &lt;p&gt;&lt;a href="http://www.trinketsoftware.com/PowerSMS/" target="_blank"&gt;http://www.trinketsoftware.com/PowerSMS/&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;PowerSMS is a mobile application for people who love text messaging. It enables a number of interesting communication scenarios, which are either cumbersome or impossible without it. &lt;/p&gt;  &lt;p&gt;PowerSMS does not replace your phone's built-in text messaging features. Instead, it works with the same folders and messages you already have. It's simple, performs tasks quickly, and gets out of the way. Use PowerSMS to improve communications with your family, friends and colleagues, and they'll wonder how you do it!&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30193075-1860553509003787242?l=lordoftheping.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://lordoftheping.blogspot.com/2008/09/windows-mobile-free-sms-tool.html</link><author>noreply@blogger.com (lordoftheping)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-30193075.post-6141555221193133512</guid><pubDate>Sun, 07 Sep 2008 09:46:00 +0000</pubDate><atom:updated>2008-09-07T11:51:31.664+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">windows 2008</category><title>Failed TO activate Windows 2008</title><description>&lt;p&gt;After installing a Windows 2008 VM, I got this error while trying to activate it over the internet:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://lh5.ggpht.com/m.chateau123/SMOjzE2NwHI/AAAAAAAAADc/iTU3mQduLVE/screenshot_01%5B3%5D.jpg"&gt;&lt;img style="border-width: 0px;" alt="screenshot_01" src="http://lh5.ggpht.com/m.chateau123/SMOjz9p-nMI/AAAAAAAAADg/qYzcG2-mSqg/screenshot_01_thumb%5B1%5D.jpg" border="0" width="297" height="253" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;The workaround is to enter again the serial number and activation works!&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30193075-6141555221193133512?l=lordoftheping.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://lordoftheping.blogspot.com/2008/09/failed-to-activate-windows-2008.html</link><author>noreply@blogger.com (lordoftheping)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-30193075.post-658295192095461785</guid><pubDate>Thu, 28 Aug 2008 17:22:00 +0000</pubDate><atom:updated>2008-08-29T18:57:06.255+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">IT++</category><title>Targeting ITDept ++</title><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.itconceptfr.com/Drapeaux/DrapeauFrance.gif"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 39px; height: 23px;" src="http://www.itconceptfr.com/Drapeaux/DrapeauFrance.gif" alt="" border="0" /&gt;&lt;/a&gt;Version française&lt;a href="http://www.lotp.fr/?p=92"&gt; ici&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;At first sight, it may looks easy to be an IT Dept ++, but it depends where you place the ++.&lt;br /&gt;Most of IT Department offer the same services to end users. To make a clear difference with a higher level, you have to give more for the same price ! Without promising impossible things to them… I decided to propose some « ++ » that’s are appreciated by our users, and that’s are not so much known.&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-style: italic;"&gt;Any propoal will be welcomed ! Please don’t hesitate !&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Mail : Exchange 2003&lt;/span&gt;&lt;br /&gt;All IT that have Exchange thinks they offer the maximum service user scan expect, but there are some small extras that make the difference!&lt;br /&gt;·    The clear minimum is having Outlook selfconfiguring at first launch.&lt;br /&gt;·    Customized the quota alert message. You will have to use a small free but unknown  addon from Microsoft, Exchange quota Service. It allow us to translate the messages to french, which is better for our end users. We added tips for them too.&lt;br /&gt;·    Exchange 2003 doesn’t give a way to manage resources in standard, like room reservations. If you want to stop the recurring “We could under Lotus“, I recommend you to install another Microsoft addon, the auto accept agent. It manages conflicts, allows to invite room directly and prevent abuse.&lt;br /&gt;·    Install WDS to index the mailbox on workstation. Microsoft gives GPO templates to get it managed centrally. And it will keep your exchange servers cool !&lt;br /&gt;·     Activate weeks numbers on calendar through GPO.&lt;br /&gt;·    Give end users true others way to send attachments. Sharepoint allow an effective collaborative work, dl.free.fr allows to send attachment through Website, up to 1GB (no account needed).&lt;br /&gt;·    PST files have always been a problem. Either local but unsaved, either on a server but taking a lot of space. Ways are limited: addin Microsoft to sync pst between the workstation and the network, tell end users to burn files (--), or a true mail archiving solution like Enterprise Vault.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;Users’ profiles&lt;/span&gt;&lt;br /&gt;·    Redirect « My Documents » folder. Nearly all software save documents there by default.&lt;br /&gt;·    A quota, yes, but managed the good and clean way through with proquota. User must knowns that he has a quota issue before trying to logoff!&lt;br /&gt;·    Your HelpDesk must never have to know user password, never. Instead, they have to know how to correctly do their job without needing it.&lt;br /&gt;·    No remote control wilderness. User acknowledge is mandatory.&lt;br /&gt;·    Use bginfo to set some useful informations on the wallpaper (helpdesk phone number, station’s name…), without replacing the baby’s photo on the wallpaper !&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Fixed workstations&lt;/span&gt;&lt;br /&gt;·    Schedule a defrag once a month through MS SMS or the local task’s scheduler.&lt;br /&gt;·    Clean local roaming profiles that haven’t been used for XX days with delprof.exe from Microsoft.&lt;br /&gt;·    Protect the Bios with a password.&lt;br /&gt;·    Automate Windows and applications installation through WDS and MS SCCM 2007.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;Notebooks&lt;/span&gt;&lt;br /&gt;Nomads needs are often violating IT Dept. rules (What ? I am not allowed to install Call Of duty 4 while on holidays ?). It’s often hard to distinguish between a real true professionnal need and something more…Personnal. How to guess it out ? Don’t allow software installations, and don’t give DVD video player…If they are still interested in having notebook, then it’s a true need! Joke appart, here is my checklist :&lt;br /&gt;·    Set the entreprise web proxy with a wpad through dhcp. So IE will work outside.&lt;br /&gt;·    Wifi must works correctly with a standard account. Take a look at XP Service pack 3 to get WPA2 managed natively, or better, Windows Vista.&lt;br /&gt;·    Windows vista (SP1) is really a must for notebooks.&lt;br /&gt;·    You must provide the latest drivers, and all hibernate mode must works.&lt;br /&gt;·    HelpDesk must be able to help with remote control while the user is outside. The easiest way is something like LogMeIn, which works even through an hotel (The workstation is making the connection, so it get through NAT and firewall). Why not through your nice corporate VPN ? Because he may be calling about this damned VPN that doesn’t work ! Remote users are often doing powerpoint presentations or other things that make them stressed, so keep it dumb simple.&lt;br /&gt;·    3G cards are quite good, but this type of network is not always available and is costly when roaming. Subscribing to hotspot is cheap and a true alternative.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Smartphone my love (Windows Mobile powered, of course)&lt;/span&gt;&lt;br /&gt;As it can be a hot topic without users rewarding efforts made (“BlackBerry is better…”‘), it’s not easy to get the “++” stars.&lt;br /&gt;·    Enforce Edge by default. 3G is a black hole when it comes to battery, and brings nothing to mail/calendar/contacts synchro. Notice it can be worse, there is 3G++ (HDSPA) ! To reach the ++, add a « 3G » button in comm’ Manager (where you go to plane mode) with Advanced Config. This way, switching between Edge and 3G is really simple for end users.&lt;br /&gt;·    Make over the Start Menu.&lt;br /&gt;·    Manage the configuration with Microsoft Mobile Device Manager. More than 130 settings possible.&lt;br /&gt;·    Use client certificate for authentification. Say Goodbye to broken synchro after every password changes!&lt;br /&gt;·    Technical intervention (replacing sim card or phone) mustn’t impact the end user. Backup SMS or the whole smartphone before.&lt;br /&gt;·    Install Googlemaps, It’s free and great !&lt;br /&gt;·    Train users! One single euro or $ invested in training on smartphone will always be more profitable than running after the last model&lt;br /&gt;·    People that create image to deploy or manage smartphones must have one theirselves. This is mandatory. With Data subscribtion, of course.&lt;br /&gt;·    Having spare is not an option!&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Printers&lt;/span&gt;&lt;br /&gt;·    For two sided printers, share them twice: One for one side prints by default, and one for two sided prints by default. This allow users to print in two sided mode without having to change parameters.&lt;br /&gt;·    Create a website to help end users to locate and connect printers.&lt;br /&gt;·    Block the manual tray, it’s a source of trouble.&lt;br /&gt;·    Block the tactile screen, it’s an incredible source of trouble&lt;br /&gt;·    Analyze issues on printers (HP WebjetAdmin is free). Replace the top 5 of printers with jam issues. Add paper tray to the top 5 of printers with no paper issue.&lt;br /&gt;·    Printers’ capacity given by manufacturer are higher than reality, change them before.&lt;br /&gt;·    If you can, send « low toner » alerts to people than know how to change them. Printing that goes out full of magenta because of a bad replacement always fall on a VIP !&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Desktop files&lt;/span&gt;&lt;br /&gt;·    Offer a way to make efficient search: either appliance Google Search entreprise, either Sharepoint search.&lt;br /&gt;·    Install Microsoft Access Base enumeration. It allows to only display folders user can open, so users keep a clear view.&lt;br /&gt;·    If cleaning by users doesn’t work, choose a good archiving solution like Enterprise Vault for example.&lt;br /&gt;&lt;br /&gt;Thanks for reading down to the end !&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30193075-658295192095461785?l=lordoftheping.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://lordoftheping.blogspot.com/2008/08/targeting-itdept.html</link><author>noreply@blogger.com (lordoftheping)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-30193075.post-2084999114231689910</guid><pubDate>Thu, 28 Aug 2008 17:18:00 +0000</pubDate><atom:updated>2008-08-28T19:22:27.515+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">outlook</category><category domain="http://www.blogger.com/atom/ns#">free</category><category domain="http://www.blogger.com/atom/ns#">freeware</category><title>Take back Outlook in control</title><description>If you receive too many mails, here are 2 powerful freeware:&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-weight: bold;"&gt;Microsoft Email Prioritizer&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.officelabs.com/projects/emailprioritizer/PublishingImages/EmailPrioritizerSmall.PNG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px;" src="http://www.officelabs.com/projects/emailprioritizer/PublishingImages/EmailPrioritizerSmall.PNG" alt="" border="0" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://www.officelabs.com/projects/emailprioritizer/Pages/default.aspx"&gt;http://www.officelabs.com/projects/emailprioritizer/Pages/default.aspx&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center; font-weight: bold;"&gt;xobni (inbox in reverse)&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.lotp.fr/wp-content/uploads/2008/08/screenshot_01.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px;" src="http://www.lotp.fr/wp-content/uploads/2008/08/screenshot_01.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;a href="http://www.xobni.com/"&gt;&lt;span style="font-weight: normal;"&gt;http://www.xobni.com/&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30193075-2084999114231689910?l=lordoftheping.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://lordoftheping.blogspot.com/2008/08/take-back-outlook-in-control.html</link><author>noreply@blogger.com (lordoftheping)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-30193075.post-7528507021828279896</guid><pubDate>Wed, 14 May 2008 11:57:00 +0000</pubDate><atom:updated>2008-05-14T14:04:40.619+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">active directory</category><category domain="http://www.blogger.com/atom/ns#">maximum</category><category domain="http://www.blogger.com/atom/ns#">microsoft</category><title>Active Directory Maximum Limits</title><description>&lt;a  href="http://technet2.microsoft.com/windowsserver/en/library/d2fc40d8-50ba-450c-959b-28fd7e31b9961033.mspx?mfr=true"&gt;Click here to view the page&lt;/a&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;h2&gt;&lt;span style="font-size:85%;"&gt;Maximum Number of Objects&lt;/span&gt;&lt;/h2&gt;&lt;/li&gt;&lt;li&gt;&lt;h2&gt;&lt;span style="font-size:85%;"&gt;Maximum Number of Security Identifiers&lt;/span&gt;&lt;/h2&gt;&lt;/li&gt;&lt;li&gt;&lt;h2&gt;&lt;span style="font-size:85%;"&gt;Group Memberships for Security Principals&lt;/span&gt;&lt;/h2&gt;&lt;/li&gt;&lt;li&gt;&lt;h2&gt;&lt;span style="font-size:85%;"&gt;FQDN Length Limitations&lt;/span&gt;&lt;/h2&gt;&lt;/li&gt;&lt;li&gt;&lt;h2&gt;&lt;span style="font-size:85%;"&gt;File Name Length Limitations&lt;/span&gt;&lt;/h2&gt;&lt;/li&gt;&lt;li&gt;&lt;h2&gt;&lt;span style="font-size:85%;"&gt;Organizational Unit Name Length&lt;/span&gt;&lt;/h2&gt;&lt;/li&gt;&lt;li&gt;&lt;h2&gt;&lt;span style="font-size:85%;"&gt;Maximum Number of Group Policy Objects Applied&lt;/span&gt;&lt;/h2&gt;&lt;/li&gt;&lt;li&gt;&lt;h2&gt;&lt;span style="font-size:85%;"&gt;Maximum Number of Accounts per LDAP Transaction&lt;/span&gt;&lt;/h2&gt;&lt;/li&gt;&lt;li&gt;&lt;h2&gt;&lt;span style="font-size:85%;"&gt;Recommended Maximum Number of Domains in a Forest&lt;/span&gt;&lt;/h2&gt;&lt;/li&gt;&lt;li&gt;&lt;h2&gt;&lt;span style="font-size:85%;"&gt;Recommended Maximum Number of Domain Controllers in a Domain&lt;/span&gt;&lt;/h2&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30193075-7528507021828279896?l=lordoftheping.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://lordoftheping.blogspot.com/2008/05/active-directory-maximum-limits.html</link><author>noreply@blogger.com (lordoftheping)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">2</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-30193075.post-1532119910975526376</guid><pubDate>Sat, 19 Apr 2008 17:32:00 +0000</pubDate><atom:updated>2008-04-19T19:39:37.840+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">vbscript</category><category domain="http://www.blogger.com/atom/ns#">defrag</category><category domain="http://www.blogger.com/atom/ns#">vmware</category><category domain="http://www.blogger.com/atom/ns#">shrink</category><title>VmWare: vbscript to defrag &amp; shrink all vmdk (batch)</title><description>&lt;p&gt;If you have quite a lot of VM like me, defrag' &amp;amp; shrink of them is a pain, as it's one by one and manual.&lt;/p&gt;&lt;p&gt;So i wrote up a vbscript to do the job:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Search recursively in all folders from a root folder&lt;/li&gt;&lt;li&gt;defrag all vmdk found (vdiskmanager knows if it's possible or not)&lt;/li&gt;&lt;li&gt;shrink all vmdk found (vdiskmanager knows if it's possible or not)&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;fire up thevbscript with cscript, you will have vdiskmanager output:&lt;/p&gt; &lt;h2 style="text-align: center;"&gt;&lt;a href="http://www.lotp.fr/wp-content/uploads/2008/04/vmware_compressor.vbs"&gt;vmware_compressor&lt;/a&gt;&lt;/h2&gt; &lt;p style="text-align: center;"&gt;&lt;a href="http://www.lotp.fr/wp-content/uploads/2008/04/screenshot_011.jpg"&gt;&lt;img class="alignnone size-full wp-image-72" title="screenshot vbscript vmware compressor" src="http://www.lotp.fr/wp-content/uploads/2008/04/screenshot_011.jpg" alt="" height="251" width="500" /&gt;&lt;/a&gt;&lt;/p&gt; &lt;p style="text-align: left;"&gt;You just need to change 2 things:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;where is installed vmware workstation:&lt;/li&gt;&lt;/ul&gt; &lt;pre&gt;VmWareInstallFolder="C:\" &amp;amp; """" &amp;amp; "Program Files (x86)"&lt;br /&gt;&amp;amp; """" &amp;amp; "\VMware\" &amp;amp; """" &amp;amp; "VMware Workstation" &amp;amp;&lt;br /&gt;""""&lt;/pre&gt; &lt;ul&gt;&lt;li&gt;Where are stored your VMDK :&lt;/li&gt;&lt;/ul&gt; &lt;pre&gt;VmdkRootFolder="F:\vmware"&lt;/pre&gt; &lt;p&gt;My environnement:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Windows vista SP1 64 bit&lt;/li&gt;&lt;li&gt;VmWare Workstation 6&lt;/li&gt;&lt;/ul&gt; &lt;h2&gt;&lt;span style="text-decoration: underline;"&gt;&lt;strong&gt;download&lt;/strong&gt;&lt;/span&gt;:&lt;a href="http://www.lotp.fr/wp-content/uploads/2008/04/vmware_compressor.vbs"&gt; vmware_compressor&lt;/a&gt;&lt;/h2&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30193075-1532119910975526376?l=lordoftheping.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://lordoftheping.blogspot.com/2008/04/vmware-vbscript-to-defrag-shrink-all.html</link><author>noreply@blogger.com (lordoftheping)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-30193075.post-1096909106080806290</guid><pubDate>Sat, 22 Dec 2007 09:33:00 +0000</pubDate><atom:updated>2007-12-22T10:39:35.361+01:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">vmware</category><title>VmWare: Suppress all host speaker beep from VM</title><description>Still getting beeeep even with the sound card disconnected from your VM ? This is getting seriously on your nerves ? Just take this pill :)&lt;br /&gt;&lt;br /&gt;Add &lt;span style="font-weight: bold; font-family: courier new;"&gt;mks.noBeep = true&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;On Vista:&lt;br /&gt;C:\Users\XXXXX\AppData\Roaming\VMware\preferences.ini&lt;br /&gt;&lt;br /&gt;On XP:&lt;br /&gt;%USERPROFILE%\Application Data\VMware\preferences.ini&lt;br /&gt;&lt;br /&gt;Enjoy now silent VM :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30193075-1096909106080806290?l=lordoftheping.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://lordoftheping.blogspot.com/2007/12/vmware-suppress-all-host-speaker-beep.html</link><author>noreply@blogger.com (lordoftheping)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">2</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-30193075.post-4371456291846691098</guid><pubDate>Mon, 12 Nov 2007 23:19:00 +0000</pubDate><atom:updated>2007-11-13T00:20:47.159+01:00</atom:updated><title>TechED IT Forum 2007 / Barcelone: Day 1</title><description>Here are my photos:&lt;br /&gt;&lt;a href="http://www.lotp.fr/?page_id=51"&gt;http://www.lotp.fr/?page_id=51&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30193075-4371456291846691098?l=lordoftheping.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://lordoftheping.blogspot.com/2007/11/teched-it-forum-2007-barcelone-day-1.html</link><author>noreply@blogger.com (lordoftheping)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-30193075.post-6801686355014526103</guid><pubDate>Sun, 21 Oct 2007 09:24:00 +0000</pubDate><atom:updated>2007-10-21T11:27:22.163+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">vista</category><category domain="http://www.blogger.com/atom/ns#">driver</category><title>HP All-in-one driver update - issue fix</title><description>For those that have an HP all-in-one 6310 and Windows Vista, there is an update from P to prevent uninstall of the driver &lt;a href="http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=oj-54112-1&amp;amp;lc=en&amp;amp;cc=us&amp;amp;dlc=en&amp;amp;product=1119598&amp;amp;os=2093&amp;amp;lang=en"&gt;Here&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;This is a follow up of my previous post:&lt;br /&gt;&lt;a href="http://lordoftheping.blogspot.com/2007/05/hp-officejet-all-in-one-6310-and-vista.html"&gt;http://lordoftheping.blogspot.com/2007/05/hp-officejet-all-in-one-6310-and-vista.html&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30193075-6801686355014526103?l=lordoftheping.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://lordoftheping.blogspot.com/2007/10/hp-all-in-one-driver-update-issue-fix.html</link><author>noreply@blogger.com (lordoftheping)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-30193075.post-5287549038517040081</guid><pubDate>Thu, 18 Oct 2007 22:07:00 +0000</pubDate><atom:updated>2007-10-19T00:10:05.495+02:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">TechED</category><title>I am going to TechED in Barcelone!</title><description>I subscription is definitely OK! I am going to TechED !! YeAh !!&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.mseventseurope.com/teched/07/itforum/images/logo_people7.gif"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 278px; height: 214px;" src="http://www.mseventseurope.com/teched/07/itforum/images/logo_people7.gif" alt="" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/30193075-5287549038517040081?l=lordoftheping.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://lordoftheping.blogspot.com/2007/10/i-am-going-to-teched-in-barcelone.html</link><author>noreply@blogger.com (lordoftheping)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item></channel></rss>
