<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-6705827636155762044</id><updated>2012-01-26T01:56:35.040+02:00</updated><category term='media'/><category term='introduction'/><category term='DNS'/><category term='installation'/><category term='icons'/><category term='registry'/><category term='free'/><category term='exchange 2010 RC'/><category term='info'/><category term='updates'/><category term='Remote Desktop'/><category term='Group Policy'/><category term='outlook 2007'/><category term='windows 7'/><category term='PHP4'/><category term='Session Broker'/><category term='compression'/><category term='webserver'/><category term='downloads'/><category term='File Server'/><category term='powershell'/><category term='arbitration mailbox'/><category term='printer'/><category term='ISA'/><category term='NLB'/><category term='installer'/><category term='link'/><category term='import-mailbox'/><category term='.Net Framework 2.0'/><category term='logon'/><category term='Apache'/><category term='Terminal'/><category term='cmd'/><category term='Server 2008 R2'/><category term='RDP'/><category term='operating system'/><category term='sharing'/><category term='hibernate'/><category term='windows server 2003'/><category term='hdd'/><category term='MySQL'/><category term='POP3'/><category term='boot'/><category term='SQL Server 2008'/><category term='ntfs'/><category term='authentication'/><category term='schedule'/><category term='IOps'/><category term='spooler'/><category term='remove-mailbox'/><category term='administrator'/><category term='information'/><category term='IE security'/><category term='SQL Server 2005'/><category term='pst'/><category term='migration'/><category term='msi'/><category term='RC to RTM'/><category term='owa'/><category term='smpt'/><category term='IIS'/><category term='wsus'/><category term='activesync'/><category term='PC game'/><category term='exchange 2007'/><category term='permissions'/><category term='desktop'/><category term='UAC'/><category term='wireless'/><category term='software'/><category term='FTM'/><category term='GPO'/><category term='gpedit'/><category term='credentials'/><category term='Mailbox role'/><category term='shutdown'/><category term='network'/><category term='hotkeys'/><category term='export-mailbox'/><category term='account'/><category term='vista'/><category term='TMG'/><title type='text'>IT owns</title><subtitle type='html'>Everyday IT experience, experience IT everyday. At work and at home.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>55</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-2446000287750815635</id><published>2011-06-28T11:54:00.008+03:00</published><updated>2011-06-28T12:20:42.261+03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='logon'/><category scheme='http://www.blogger.com/atom/ns#' term='GPO'/><title type='text'>Track Users logon/logoff activity in Windows Domain environment (Active Directory)</title><content type='html'>&lt;div&gt;Sorry for bad formatting, but I'm using wordpress for bloging now and this is just copy paste without any additional work. You can view this post here for better looks: http://www.pupils.lt/?p=447&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;If you find yourself in need to quickly review historical logon/logoff information in your environment then following might be useful in future.&lt;br /&gt;&lt;br /&gt;So how are we going to track user logon information?&lt;br /&gt;&lt;br /&gt;Answer is by implementing user logon logoff scripts in Group Policy.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Steps&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;1) Share a directory on network where logs will be saved.&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Share a folder with full access permissions for everyone, as well as full NTFS permissions for users which you want to log. It is recommended that you make a hidden share &lt;strong&gt;\\server\share$\&lt;/strong&gt;. In this scenario I will use  2 folders in shared location, one for computers &lt;strong&gt;\\server\share$\computers\&lt;/strong&gt; and another for users &lt;strong&gt;\\server\share$\users\&lt;/strong&gt;.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;2) Create a .bat file with necessary commands for logon and logoff events.&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;a)&lt;/strong&gt; Create logon.bat with the contents below and put it in the &lt;strong&gt;\\server\share$\logon.bat&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;address&gt;&lt;code&gt;ver &amp;gt;&amp;gt;&lt;strong&gt;\\server\share$\computers\&lt;/strong&gt;%computername%.txt&lt;br /&gt;echo %username% logged on %date% - %time% &amp;gt;&amp;gt;&lt;strong&gt;\\server\share$\computers\&lt;/strong&gt;%computername%.txt&lt;br /&gt;ipconfig /all |findstr Address &amp;gt;&amp;gt;&lt;strong&gt;\\server\share$\computers\&lt;/strong&gt;%computername%.txt&lt;strong&gt;\\server\share$\users\&lt;/strong&gt;%username%.txt&lt;br /&gt;echo %computername% logged on %date% - %time% &amp;gt;&amp;gt;&lt;strong&gt;\\server\share$\users\&lt;/strong&gt;%username%.txt&lt;br /&gt;ipconfig /all |findstr Address &amp;gt;&amp;gt;&lt;strong&gt;\\server\share$\users\&lt;/strong&gt;%username%.txt&lt;/code&gt;&lt;/address&gt;&lt;br /&gt;&lt;br /&gt;First command returns OS version and writes it to computer_name.txt on your share.&lt;br /&gt;&lt;br /&gt;Second command writes username of logged on user with the date when the script was run and writes it to computer_name.txt on your share.&lt;br /&gt;&lt;br /&gt;Third command returns IP and Mac addresses of network connections and also writes them to computer_name.txt on your share.&lt;br /&gt;&lt;br /&gt;Next three commands do exactly the same as above, but writes all info into user_name.txt files \\server\share$\users&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;b) &lt;/strong&gt;Create logoff.bat with the contents below and put it in the &lt;strong&gt;\\server\share$\logoff.bat&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;address&gt;&lt;code&gt;echo %username% logged off %date% - %time% &amp;gt;&amp;gt;&lt;strong&gt;\\server\share$\computers\&lt;/strong&gt;%computername%.txtecho %computername% logged off %date% - %time% &amp;gt;&amp;gt;&lt;strong&gt;\\server\share$\users\&lt;/strong&gt;%username%.txt&lt;strong&gt; &lt;/strong&gt;&lt;/code&gt;&lt;/address&gt;&lt;br /&gt;&lt;br /&gt;Of course you can modify .bat files to suit your needs.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;3) Enable .bat files to run on user logon and logoff via Group Policy.&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Now we need to make those .bat files run every time users logon and logoff.&lt;br /&gt;&lt;br /&gt;Open &lt;strong&gt;Group Policy Management&lt;/strong&gt;, &lt;strong&gt;Create and Link GPO &lt;/strong&gt;to the OU where targeted users reside. Now right click that that GPO and choose &lt;strong&gt;Edit.&lt;/strong&gt; Navigate to &lt;strong&gt;User Configuration\Windows Settings\Scripts Logon/Logoff &lt;/strong&gt;double click on &lt;strong&gt;Logon&lt;/strong&gt; and then &lt;strong&gt;Add, &lt;/strong&gt;browse for logon.bat (\\server\share$\logon.bat) and click &lt;strong&gt;OK &lt;/strong&gt;two times. Now open &lt;strong&gt;Logoff&lt;/strong&gt; click &lt;strong&gt;Add &lt;/strong&gt;and navigate for logoff.bat (\\server\share$\logoff.bat) and click &lt;strong&gt;OK&lt;/strong&gt; two times.&lt;br /&gt;&lt;br /&gt;&lt;a rel="attachment wp-att-448" href="http://www.pupils.lt/?attachment_id=448"&gt;&lt;img class="alignnone size-full wp-image-448" title="gpo logon" src="http://www.pupils.lt/wp-content/uploads/2011/06/gpo-logon.jpg" alt="" width="801" height="652" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;All set. To test it firs update group policy on a target computer with &lt;em&gt;&lt;strong&gt;gpupdate /force&lt;/strong&gt;&lt;/em&gt; command. Then logoff and logon with a test user which resides within the OU where your GPO applies.&lt;br /&gt;&lt;br /&gt;If your test users is &lt;em&gt;&lt;strong&gt;A.Test &lt;/strong&gt;&lt;/em&gt;and computer &lt;em&gt;&lt;strong&gt;TESTXP &lt;/strong&gt;&lt;/em&gt;you should get 2 files created:&lt;br /&gt;&lt;br /&gt;\\server\share$\computers\TESTXP.txt with the following contents:&lt;br /&gt;&lt;br /&gt;&lt;address&gt;&lt;code&gt;Microsoft Windows XP [Version 5.1.2600]&lt;br /&gt;A.test logged on 2011.06.28 - 11:45:14,44&lt;br /&gt;Physical Address. . . . . . . . . : 00-0C-0C-60-C2-FA&lt;br /&gt;IP Address. . . . . . . . . . . . : 192.168.1.15&lt;br /&gt;A.test logged off 2011.06.28 - 11:45:50,35&lt;/code&gt;&lt;/address&gt;&lt;br /&gt;&lt;br /&gt;and \\server\share$\users\A.test.txt with the following contents:&lt;br /&gt;&lt;br /&gt;&lt;address&gt;&lt;code&gt;Microsoft Windows XP [Version 5.1.2600]&lt;br /&gt;TESTXP logged on 2011.06.28 - 11:45:15,82&lt;br /&gt;Physical Address. . . . . . . . . : 00-0C-0C-60-C2-FA&lt;br /&gt;IP Address. . . . . . . . . . . . : 192.168.1.15&lt;br /&gt;TESTXP logged off 2011.06.28 - 11:45:50,37&lt;/code&gt;&lt;/address&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-2446000287750815635?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/2446000287750815635/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=2446000287750815635&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/2446000287750815635'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/2446000287750815635'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2011/06/track-users-logonlogoff-activity-in.html' title='Track Users logon/logoff activity in Windows Domain environment (Active Directory)'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-5697253662727067456</id><published>2011-06-14T19:12:00.005+03:00</published><updated>2011-06-14T19:16:21.209+03:00</updated><title type='text'>Moving to wordpress</title><content type='html'>For more comfortable user UI I am moving my blog to wordpress platform here: &lt;a href="http://www.pupils.lt/"&gt;www.pupils.lt&lt;/a&gt;&lt;br /&gt;I will continue to mirror my blog on blogger.com as well.&lt;span style="display: block;" id="formatbar_Buttons"&gt;&lt;span onmouseover="ButtonHoverOn(this);" onmouseout="ButtonHoverOff(this);" onmouseup="" onmousedown="CheckFormatting(event);FormatbarButton('richeditorframe', this, 8);ButtonMouseDown(this);" class=" down" style="display: block;" id="formatbar_CreateLink" title="Link"&gt;&lt;img src="http://www.blogger.com/img/blank.gif" alt="Link" class="gl_link" border="0" /&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-5697253662727067456?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/5697253662727067456/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=5697253662727067456&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/5697253662727067456'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/5697253662727067456'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2011/06/moving-to-wordpress.html' title='Moving to wordpress'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-3250814979648901722</id><published>2011-06-10T20:47:00.007+03:00</published><updated>2011-06-10T21:36:33.041+03:00</updated><title type='text'>Enabling Remote Desktop Connection client Single Sign On (SSO) for Remote Desktop Services</title><content type='html'>You probably came here for one of the following reasons:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;a) &lt;/span&gt;having to login twice when connecting to terminal server in RD Connection Broker Farm&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;b) &lt;/span&gt;having to enter credentials for every Remote App even though you already are logged on with same credentials&lt;br /&gt;&lt;br /&gt;To  avoid (multiple) double logins you will need to enable Single Sign On  functionality. For that you will make some changes on both - Server and  Client.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;1.&lt;/span&gt; Server&lt;br /&gt;&lt;br /&gt;Connect to Remote Desktop Host Server&lt;br /&gt;Start &lt;span style="font-weight: bold;"&gt;Server Manager&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Expand Roles&lt;/span&gt;-&amp;gt;&lt;span style="font-weight: bold;"&gt;Remote Desktop Services&lt;/span&gt; select &lt;span style="font-weight: bold;"&gt;RD Session Host Configuration&lt;/span&gt;&lt;br /&gt;In the right pane in the &lt;span style="font-weight: bold;"&gt;Connections&lt;/span&gt; right click &lt;span style="font-weight: bold;"&gt;RDP-Tcp&lt;/span&gt; connection name and choose &lt;span style="font-weight: bold;"&gt;Properties&lt;/span&gt;&lt;br /&gt;On the &lt;span style="font-weight: bold;"&gt;Log on Settings&lt;/span&gt; tab make sure "Alsways prompt for password" is unchecked.&lt;br /&gt;On the &lt;span style="font-weight: bold;"&gt;General &lt;/span&gt;tab choose security layer: &lt;span style="font-weight: bold;"&gt;Negotiate&lt;/span&gt; or&lt;span style="font-weight: bold;"&gt; SSL (TLS 1.0)&lt;/span&gt;&lt;br /&gt;Click &lt;span style="font-weight: bold;"&gt;OK&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;2.&lt;/span&gt; Client&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;2.1&lt;/span&gt; Windows Vista / Windows 7&lt;br /&gt;&lt;br /&gt;Start Group Policy Editor (run: gpedit.msc)&lt;br /&gt;Expand &lt;span style="font-weight: bold;"&gt;Computer Configuration&lt;/span&gt;-&amp;gt;&lt;span style="font-weight: bold;"&gt;Administratie Templates&lt;/span&gt;-&amp;gt;&lt;span style="font-weight: bold;"&gt;Credentials Delegation&lt;/span&gt;&lt;br /&gt;Enable following settings: &lt;span style="font-weight: bold;"&gt;Allow Delegating Default Credentials&lt;/span&gt; and &lt;span style="font-weight: bold;"&gt;Allow Delegating Default Credentials with NTLM-only Server Authentication&lt;/span&gt;&lt;br /&gt;Add following entries to each setting &lt;span style="font-weight: bold;"&gt;TERMSRV/&lt;/span&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;server_name&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;server_name &lt;/span&gt;is the name of the RDSH server, you can use one wildcard there, for  example: TERMSRV/myserver or TERMSRV/*.domain.com or TERMSRV/*&lt;br /&gt;&lt;br /&gt;Do a &lt;span style="font-weight: bold;"&gt;"gpupdate /force&lt;/span&gt;"  on your client and now you should be able to connect to your RDSH  server without having to supply credentials. If you have saved  credentials in your RDC client - delete them and you should see message  "Your Windows logon credentials will be used to connect." indicating  that SSO functionality is on.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;2.2&lt;/span&gt; Windows XP SP3&lt;br /&gt;&lt;br /&gt;It is more tricky for windows XP as it does not have GPO setting to enable SSO, so you will need to do some registry changes.&lt;br /&gt;Fortunately there is Microsoft &lt;span style="font-weight: bold;"&gt;Fix It&lt;/span&gt; tool which can do it for you - &lt;a href="http://go.microsoft.com/?linkid=9758284"&gt;http://go.microsoft.com/?linkid=9758284&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;If you prefer to do it yourself read below:&lt;br /&gt;&lt;br /&gt;Enable &lt;span style="font-weight: bold;"&gt;CredSSP&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Under &lt;strong&gt;HKLM\SYSTEM\CurrentControlSet\Control\Lsa&lt;br /&gt;&lt;/strong&gt;Edit the REG_MULTI_SZ value named &lt;strong&gt;Security Packages&lt;/strong&gt; and add &lt;strong&gt;tspkg&lt;/strong&gt; to the list.&lt;br /&gt;&lt;br /&gt;Under &lt;strong&gt;HKLM\SYSTEM\CurrentControlSet\Control\SecurityProviders&lt;/strong&gt;&lt;br /&gt;Edit the REG_SZ value named SecurityProviders and add "&lt;strong&gt;, credssp.dll&lt;/strong&gt;" to the end (without quotation marks)&lt;br /&gt;&lt;br /&gt;Also you will need to create the following registry entries:&lt;br /&gt;&lt;br /&gt;Path: &lt;strong&gt;HKLM\SOFTWARE\Policies\Microsoft\Windows\CredentialsDelegation&lt;br /&gt;&lt;/strong&gt;Name: &lt;strong&gt;ConcatenateDefaults_AllowDefault&lt;br /&gt;&lt;/strong&gt;Type: &lt;strong&gt;REG_DWORD&lt;br /&gt;&lt;/strong&gt;Data: &lt;strong&gt;1      &lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Name: &lt;strong&gt;AllowDefaultCredentials&lt;br /&gt;&lt;/strong&gt;Type: &lt;strong&gt;REG_DWORD&lt;br /&gt;&lt;/strong&gt;Data: &lt;strong&gt;1&lt;br /&gt;&lt;/strong&gt;&lt;br /&gt;Name: &lt;strong&gt;AllowDefCredentialsWhenNTLMOnly&lt;br /&gt;&lt;/strong&gt;Type: &lt;strong&gt;REG_DWORD&lt;br /&gt;&lt;/strong&gt;Data: &lt;strong&gt;1&lt;br /&gt;&lt;br /&gt;&lt;/strong&gt;Name: &lt;strong&gt;ConcatenateDefaults_AllowDefNTLMOnly&lt;br /&gt;&lt;/strong&gt;Type: &lt;strong&gt;REG_DWORD&lt;br /&gt;&lt;/strong&gt;Data: &lt;strong&gt;1&lt;br /&gt;&lt;br /&gt;&lt;/strong&gt;Path: &lt;strong&gt;HKLM\SOFTWARE\Policies\Microsoft\Windows\CredentialsDelegation\AllowDefaultCredentials&lt;br /&gt;&lt;/strong&gt;Name: &lt;strong&gt;1&lt;br /&gt;&lt;/strong&gt;Type: &lt;strong&gt;REG_SZ&lt;br /&gt;&lt;/strong&gt;Data: &lt;strong&gt;TERMSRV/*&lt;br /&gt;&lt;br /&gt;&lt;/strong&gt;Path: &lt;strong&gt;HKLM\SOFTWARE\Policies\Microsoft\Windows\CredentialsDelegation\AllowDefCredentialsWhenNTLMOnly&lt;br /&gt;&lt;/strong&gt;Name: &lt;strong&gt;1&lt;br /&gt;&lt;/strong&gt;Type: &lt;strong&gt;REG_SZ&lt;br /&gt;&lt;/strong&gt;Data: &lt;strong&gt;TERMSRV/*&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: normal;"&gt;note:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: normal;"&gt;modify &lt;span style="font-weight: bold;"&gt;TERMSRV/*&lt;/span&gt; to your needs, if you need to specify more servers just create aditional entries with names "2" "3" and so on.&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-weight: normal;"&gt;You might need to restart windows XP machine for registry changes to take effect.&lt;br /&gt;In addition after all these changes you still might need a hotfix for Windows XP - &lt;a href="http://support.microsoft.com/kb/953760"&gt;http://support.microsoft.com/kb/953760&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Links:&lt;br /&gt;&lt;a href="http://blogs.technet.com/Paul-Adams/ProfileUrlRedirect.ashx"&gt;Paul Adams&lt;/a&gt; blogpost - &lt;a href="http://blogs.technet.com/b/mrsnrub/archive/2010/12/16/xp-clients-credssp-sso-connection-broker-and-other-animals.aspx"&gt;http://blogs.technet.com/b/mrsnrub/archive/2010/12/16/xp-clients-credssp-sso-connection-broker-and-other-animals.aspx&lt;/a&gt;&lt;br /&gt;Technet article - &lt;a href="http://technet.microsoft.com/en-us/library/cc742808.aspx"&gt;http://technet.microsoft.com/en-us/library/cc742808.aspx&lt;/a&gt;&lt;br /&gt;Microsoft KB article - &lt;a href="http://support.microsoft.com/kb/951608/"&gt;http://support.microsoft.com/kb/951608/&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;/strong&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-3250814979648901722?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/3250814979648901722/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=3250814979648901722&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/3250814979648901722'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/3250814979648901722'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2011/06/enabling-remote-desktop-connection.html' title='Enabling Remote Desktop Connection client Single Sign On (SSO) for Remote Desktop Services'/><author><name>complexxL9</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-7362991429939623218</id><published>2011-06-06T15:40:00.006+03:00</published><updated>2011-06-06T17:52:07.382+03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='IE security'/><category scheme='http://www.blogger.com/atom/ns#' term='File Server'/><category scheme='http://www.blogger.com/atom/ns#' term='sharing'/><title type='text'>Can't launch executable files from shares (domain environment)</title><content type='html'>When trying to launch some .exe files from network drive (mapped share from file server) I've got the following error:&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;b&gt;&lt;i&gt;Windows cannot access the specified device, path, or file. You may not have the appropriate permissions to access the item.&lt;/i&gt;&lt;/b&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;This error occurs even though I have full security permissions on the file and full share permissions and non executable files are opening as expected. This behavior is due to IE security settings, to fix it you will need:&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;1) Open &lt;b&gt;IE&lt;/b&gt; and go &lt;b&gt;Tools -&amp;gt;&lt;/b&gt; &lt;b&gt;Internet Options&lt;/b&gt;&lt;/div&gt;&lt;div&gt;2) Click &lt;b&gt;Security&lt;/b&gt; tab select &lt;b&gt;Local intranet&lt;/b&gt; and click on &lt;b&gt;Sites&lt;/b&gt;&lt;/div&gt;&lt;div&gt;3) Add "&lt;b&gt;file://&lt;i&gt;server name&lt;/i&gt;&lt;/b&gt;" (without quotes) to the Local intranet zone, click close OK and OK.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;"&lt;b&gt;&lt;i&gt;server name&lt;/i&gt;&lt;/b&gt;" is the name of your server where the shared files reside.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-7362991429939623218?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/7362991429939623218/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=7362991429939623218&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/7362991429939623218'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/7362991429939623218'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2011/06/cant-launch-executable-files-in-shares.html' title='Can&apos;t launch executable files from shares (domain environment)'/><author><name>complexxL9</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-6727455590704639964</id><published>2011-06-06T13:19:00.006+03:00</published><updated>2011-06-10T21:19:28.863+03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Session Broker'/><category scheme='http://www.blogger.com/atom/ns#' term='Terminal'/><category scheme='http://www.blogger.com/atom/ns#' term='RDP'/><category scheme='http://www.blogger.com/atom/ns#' term='NLB'/><title type='text'>Double login to Terminal Servers with RD Connection Broker</title><content type='html'>If your users are frustrated by the double login prompt while attempting to connect to terminal server (2008 R2 in my case) in RD Connection Broker far,, you may try few things.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;b&gt;1)&lt;/b&gt; Make sure users are entering their credentials on the RDP client and not when they are already connected to the server.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;b&gt;2)&lt;/b&gt; Enable Credssp on windows XP SP3&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="line-height: 13px; "&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="line-height: 13px; "&gt;Click &lt;b&gt;Start&lt;/b&gt;, click &lt;b&gt;Run&lt;/b&gt;, type &lt;b&gt;regedit&lt;/b&gt;, and then press&lt;b&gt; ENTER&lt;/b&gt;.&lt;br /&gt;In the navigation pane, locate and then click the following registry subkey:&lt;br /&gt;&lt;b&gt;HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa&lt;/b&gt;&lt;br /&gt;In the details pane, right-click &lt;b&gt;Security Packages&lt;/b&gt;, and then click &lt;b&gt;Modify&lt;/b&gt;.&lt;br /&gt;In the &lt;b&gt;Value&lt;/b&gt; data box, type &lt;b&gt;tspkg&lt;/b&gt;. Leave any data that is specific to other SSPs, and then click &lt;b&gt;OK&lt;/b&gt;.&lt;br /&gt;In the navigation pane, locate and then click the following registry subkey:&lt;br /&gt;&lt;b&gt;HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders&lt;/b&gt;&lt;br /&gt;In the details pane, right-click &lt;b&gt;SecurityProviders&lt;/b&gt;, and then click &lt;b&gt;Modify&lt;/b&gt;.&lt;br /&gt;In the &lt;b&gt;Value&lt;/b&gt; data box, type &lt;b&gt;credssp.dll&lt;/b&gt;&lt;span class="Apple-style-span"&gt;. Leave any data that is specific to other SSPs, and then click OK.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="line-height: 13px;  font-size:medium;" &gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="line-height: 13px;  font-size:medium;" &gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span"&gt;&lt;b&gt;3)&lt;/b&gt; Create RDP shortcut and edit it with notepad, add the following lines:&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="line-height: 13px; "&gt;&lt;p  style="border-style: initial; border-color: initial; font-weight: inherit; margin-top: 0in; margin-right: 0in; margin-bottom: 0pt; margin-left: 0in; outline-width: 0px; outline-style: initial; outline-color: initial; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border- list-style-type: none; text-decoration: none; color:initial;"&gt;&lt;span style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-weight: inherit; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; outline-width: 0px; outline-style: initial; outline- padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color:initial;" &gt;&lt;span style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-weight: inherit; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; outline-width: 0px; outline-style: initial; outline- padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color:initial;" &gt;&lt;span style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-weight: inherit; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; outline-width: 0px; outline-style: initial; outline- padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color:initial;" &gt;&lt;span class="Apple-style-span"&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p  style="border-style: initial; border-color: initial; font-weight: inherit; margin-top: 0in; margin-right: 0in; margin-bottom: 0pt; margin-left: 0in; outline-width: 0px; outline-style: initial; outline-color: initial; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border- list-style-type: none; text-decoration: none; color:initial;"&gt;&lt;span style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-weight: inherit; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; outline-width: 0px; outline-style: initial; outline- padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color:initial;" &gt;&lt;span style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-weight: inherit; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; outline-width: 0px; outline-style: initial; outline- padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color:initial;" &gt;&lt;span style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-weight: inherit; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; outline-width: 0px; outline-style: initial; outline- padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color:initial;" &gt;&lt;span class="Apple-style-span"&gt;&lt;i&gt;prompt for credentials on client:i:1&lt;/i&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p  style="border-style: initial; border-color: initial; font-weight: inherit; margin-top: 0in; margin-right: 0in; margin-bottom: 0pt; margin-left: 0in; outline-width: 0px; outline-style: initial; outline-color: initial; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border- list-style-type: none; text-decoration: none; color:initial;"&gt;&lt;span style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-weight: inherit; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; outline-width: 0px; outline-style: initial; outline- padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color:initial;" &gt;&lt;span style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-weight: inherit; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; outline-width: 0px; outline-style: initial; outline- padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color:initial;" &gt;&lt;span style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-weight: inherit; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; outline-width: 0px; outline-style: initial; outline- padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color:initial;" &gt;&lt;span class="Apple-style-span"&gt;&lt;i&gt;enablecredsspsupport:i:1&lt;/i&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p  style="border-style: initial; border-color: initial; font-weight: inherit; margin-top: 0in; margin-right: 0in; margin-bottom: 0pt; margin-left: 0in; outline-width: 0px; outline-style: initial; outline-color: initial; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border- list-style-type: none; text-decoration: none; color:initial;"&gt;&lt;span style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-weight: inherit; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; outline-width: 0px; outline-style: initial; outline- padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color:initial;" &gt;&lt;span style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-weight: inherit; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; outline-width: 0px; outline-style: initial; outline- padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color:initial;" &gt;&lt;span style="border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; font-weight: inherit; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; outline-width: 0px; outline-style: initial; outline- padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; color:initial;" &gt;&lt;span class="Apple-style-span"&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p  style="border-style: initial; border-color: initial; font-weight: inherit; margin-top: 0in; margin-right: 0in; margin-bottom: 0pt; margin-left: 0in; outline-width: 0px; outline-style: initial; outline-color: initial; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border- list-style-type: none; text-decoration: none; color:initial;"&gt;&lt;span class="Apple-style-span"&gt;Links: &lt;/span&gt;&lt;span class="Apple-style-span" style="line-height: normal; "&gt;&lt;a href="http://social.technet.microsoft.com/Forums/en/winserverTS/thread/53cdb3ee-7c73-4cda-aff9-afffec4b94f3"&gt;http://social.technet.microsoft.com/Forums/en/winserverTS/thread/53cdb3ee-7c73-4cda-aff9-afffec4b94f3&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="border-style: initial; border-color: initial; font-weight: inherit; margin-top: 0in; margin-right: 0in; margin-bottom: 0pt; margin-left: 0in; outline-width: 0px; outline-style: initial; outline-color: initial; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border-color: initial; list-style-type: none; text-decoration: none; "&gt;&lt;a href="http://support.microsoft.com/kb/951608"&gt;http://support.microsoft.com/kb/951608&lt;/a&gt;&lt;/p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-6727455590704639964?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/6727455590704639964/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=6727455590704639964&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/6727455590704639964'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/6727455590704639964'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2011/06/double-login-to-terminal-servers-with.html' title='Double login to Terminal Servers with RD Connection Broker'/><author><name>complexxL9</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-3972665234967297213</id><published>2011-05-03T09:06:00.005+03:00</published><updated>2011-06-06T13:19:22.329+03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='TMG'/><category scheme='http://www.blogger.com/atom/ns#' term='RDP'/><category scheme='http://www.blogger.com/atom/ns#' term='ISA'/><title type='text'>Remote Desktop does not work to TMG (ISA) server</title><content type='html'>If all rules are in place for RDP, but you still can't connect to your TMG (ISA) server, following steps might help you:&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;This  is for Windows Server 2008 R2&lt;/div&gt;&lt;div&gt;Connect to TMG locally and go &lt;b&gt;Administrative Tools -&amp;gt; Remote Desktop Services -&amp;gt; Remote Desktop Session Host Configuration&lt;/b&gt;&lt;/div&gt;&lt;div&gt;In connections table right click &lt;b&gt;RDP-Tcp&lt;/b&gt; and select &lt;b&gt;Properties&lt;/b&gt; then select &lt;b&gt;Network Adapters&lt;/b&gt; tab and choose &lt;b&gt;Network Adapter: &lt;/b&gt;for which you want to enable RDP.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Links: &lt;a href="http://social.technet.microsoft.com/Forums/en/Forefrontedgegeneral/thread/ef37e149-27ce-4da9-8739-cc58fdba46dc"&gt;http://social.technet.microsoft.com/Forums/en/Forefrontedgegeneral/thread/ef37e149-27ce-4da9-8739-cc58fdba46dc&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/6705827636155762044-3972665234967297213?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/3972665234967297213/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=3972665234967297213&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/3972665234967297213'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/3972665234967297213'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2011/05/remote-desktop-does-not-work-to-tmg.html' title='Remote Desktop does not work to TMG (ISA) server'/><author><name>complexxL9</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-3217989611118769728</id><published>2011-05-02T11:36:00.005+03:00</published><updated>2011-05-02T14:38:49.500+03:00</updated><title type='text'>Windows Server 2008 R2 console freezes when viewing form vSphere client</title><content type='html'>If you experience you console freezing from time to time when viewing from VMware vSphere client try to change video adapter drivers to&lt;b&gt; VMware SVGA 3D (Microsoft Corporation - WDDM)&lt;/b&gt;.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Step by step:&lt;/div&gt;&lt;div&gt;1. Shut down your VM and edit it's video card settings to use at least 8MB (32MB recommended) of total video RAM.&lt;/div&gt;&lt;div&gt;2. Boot up VM login to the machine and open Device Manager. Expand &lt;b&gt;Display Adapters&lt;/b&gt; and right click your video adapter (should be "&lt;b&gt;VMware SVGA II&lt;/b&gt;") select "&lt;b&gt;Update Driver Software&lt;/b&gt;".&lt;/div&gt;&lt;div&gt;3. Choose "&lt;b&gt;Browse my computer for driver software&lt;/b&gt;" and navigate to &lt;b&gt;C:\Program files\Common files\VMware\drivers\wdda_video.&lt;/b&gt; Complete the wizard and restart VM when promted.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;If you can not find &lt;b&gt;wdda_video&lt;/b&gt; folder in your &lt;b&gt;VMware\drivers&lt;/b&gt; folder that probably means you are using VMware tools version below 4.1 if that is the case you can download 4.1 tools from here: &lt;a href="http://packages.vmware.com/tools/esx/4.1latest/windows/x64/index.html"&gt;http://packages.vmware.com/tools/esx/4.1latest/windows/x64/index.html&lt;/a&gt;&lt;/div&gt;&lt;div&gt;install it on some test machine and then share "wdda_video" folder to access it from 2008 R2 machine. I don't know what effect it will have running video driver from 4.1 tools package on ESX server below version 4.1 so try it on your own risk.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Links: &lt;a href="http://sysadmin-talk.org/2010/06/windows-server-2008-r2-console-freezes-when-viewed-from-vcenter-client/comment-page-1/#comment-2516"&gt;http://sysadmin-talk.org/2010/06/windows-server-2008-r2-console-freezes-when-viewed-from-vcenter-client/comment-page-1/#comment-2516&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;a href="http://communities.vmware.com/thread/307584"&gt;http://communities.vmware.com/thread/307584&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-3217989611118769728?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/3217989611118769728/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=3217989611118769728&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/3217989611118769728'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/3217989611118769728'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2011/05/windows-server-2008-r2-console-freezes.html' title='Windows Server 2008 R2 console freezes when viewing form vSphere client'/><author><name>complexxL9</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-9208709946903996010</id><published>2011-04-27T11:02:00.004+03:00</published><updated>2011-04-27T12:28:27.122+03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='windows server 2003'/><category scheme='http://www.blogger.com/atom/ns#' term='wsus'/><category scheme='http://www.blogger.com/atom/ns#' term='updates'/><title type='text'>Change location of WSUS update files</title><content type='html'>If you ever need to change the location where WSUS stores updates you can do the following:&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Win+R&lt;/div&gt;&lt;div&gt;type: &lt;b&gt;cmd&lt;/b&gt; and hit &lt;b&gt;Enter&lt;/b&gt;&lt;/div&gt;&lt;div&gt;at the command prompt navigate to the directory containing &lt;b&gt;wsusutil.exe&lt;/b&gt;&lt;/div&gt;&lt;div&gt;(default: C:\Program files\Microsoft Windows Server Update Services\Tools)&lt;/div&gt;&lt;div&gt;and run command:&lt;/div&gt;&lt;div&gt;&lt;b&gt;&lt;span class="Apple-style-span" style="font-weight: normal; "&gt;&lt;b&gt;wsusutil.exe movecontent "D:\WSUS Update Packages" D:\logfile.log&lt;/b&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;this assumes you want to move update files to "D:\Wsus Update Packages" (you must create folder prior moving contents) and D:\logfile.log is where logs for this operation go.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;If you do not want to copy all content to the new location add -skipcopy flag to the end of command &lt;b&gt;wsusutil.exe movecontent "D:\WSUS Update Packages" D:\logfile.log -skipcopy&lt;/b&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Links: &lt;a href="http://blogs.technet.com/b/sus/archive/2008/05/19/wsus-how-to-change-the-location-where-wsus-stores-updates-locally.aspx"&gt;http://blogs.technet.com/b/sus/archive/2008/05/19/wsus-how-to-change-the-location-where-wsus-stores-updates-locally.aspx&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/6705827636155762044-9208709946903996010?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/9208709946903996010/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=9208709946903996010&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/9208709946903996010'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/9208709946903996010'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2011/04/change-location-of-wsus-update-files.html' title='Change location of WSUS update files'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-551382393918052615</id><published>2010-11-24T11:16:00.019+02:00</published><updated>2010-11-24T14:35:24.985+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='MySQL'/><category scheme='http://www.blogger.com/atom/ns#' term='PHP4'/><category scheme='http://www.blogger.com/atom/ns#' term='Apache'/><title type='text'>Running Apache 2.2.x PHP 4.4.x and MySQL 5.1.x under Windows Server 2003</title><content type='html'>&lt;p class="MsoNormal"&gt;These are steps I took to successfully launch old PHP 4 website on windows 2003 using following software: &lt;/p&gt;  &lt;p class="MsoNormal"&gt;Apache 2.2.17 &lt;/p&gt;  &lt;p class="MsoNormal"&gt;MySQL 5.1.53&lt;/p&gt;  &lt;p class="MsoNormal"&gt;PHP 4.4.9&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;strong&gt;&lt;span style="font-size:130%;"&gt;1. Download and install PHP 4.4.9&lt;/span&gt;&lt;/strong&gt; &lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;You can download PHP 4.4.9 from here&lt;/p&gt;  &lt;p class="MsoNormal"&gt;After download is finished just extract it to &lt;a href="http://www.php.net/get/php-4.4.9-Win32.zip"&gt;&lt;strong&gt;C:\php&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;strong&gt;&lt;span style="font-size:130%;"&gt;2. Download, install and configure Apache 2.2.17&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;Download windows installer from &lt;a href="http://httpd.apache.org/download.cgi#apache22"&gt;here&lt;/a&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;Installation should go without any problems so I will jump to the Apache configuration for PHP:&lt;/p&gt;  &lt;p class="MsoNormal"&gt;Open Apache configuration file (default location &lt;strong&gt;C:\Program Files\Apache Software Foundation\Apache2.2\conf\Httpd.conf&lt;/strong&gt;) with any text editor.&lt;/p&gt;  &lt;p class="MsoNormal"&gt;To enable Apache processing of PHP pages find a line similar to this: &lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;em&gt;DirectoryIndex index.html&lt;/em&gt; &lt;/p&gt;&lt;p class="MsoNormal"&gt;and edit it to something like this: &lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;em&gt;DirectoryIndex index.php index.html&lt;/em&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;You’ll also need to permit the use of .htaccess files in any directory, so search for an AllowOverride setting and change it from &lt;em&gt;None&lt;/em&gt; to &lt;em&gt;All&lt;/em&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;Copy all dlls from &lt;strong&gt;C:\Php\dlls&lt;/strong&gt; to the Windows system directory (default &lt;strong&gt;C:\windows\system32&lt;/strong&gt;). Look for the section of Apache’s configuration file that contains AddType commands, and add this one: &lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;em&gt;AddType application/x-httpd-php .php&lt;/em&gt; &lt;/p&gt;  &lt;p class="MsoNormal"&gt;Copy &lt;strong&gt;C:\Php\Php.ini-recommended&lt;/strong&gt; to your &lt;strong&gt;Windows\system32&lt;/strong&gt; directory, rename it to &lt;strong&gt;Php.ini&lt;/strong&gt;, and open it in a text editor. Edit the lines that set doc_root, extension_dir, and session.save_path so they look like the following: &lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;em&gt;doc_root = "C:\Program Files\Apache Software Foundation\Apache2.2\htdocs"&lt;/em&gt; &lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;em&gt;extension_dir = "c:\php\extensions"&lt;/em&gt; &lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;em&gt;session.save_path = "c:\temp"&lt;/em&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;You’ll need to create &lt;strong&gt;C:\Temp&lt;/strong&gt; if it doesn’t already exist. &lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;The next two steps are to enable Apache to run PHP programs as modules.&lt;/p&gt;&lt;p class="MsoNormal"&gt;First, copy &lt;strong&gt;C:\Php\Php4ts.dll&lt;/strong&gt; to your &lt;strong&gt;Windows\system32&lt;/strong&gt; folder. &lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;Download &lt;strong&gt;php4apache2.dll&lt;/strong&gt; file from &lt;a href="http://www.apachelounge.com/download/mods/php4apache2.dll-php4.4.x.zip"&gt;here&lt;/a&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;(note that the default file php4apache2.dll which comes in the php package won't work with apache 2.2 so you will have to download the file in the link above, if the link is no longer valid - contact me I still might have a copy).&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;Look for the LoadModule section in Httpd.conf and add this line: &lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;em&gt;LoadModule php4_module modules/php4apache2.dll&lt;/em&gt; &lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;strong&gt;&lt;span style="font-size:130%;"&gt;3. Downloading, installing and configuring MySQL&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;Download &lt;strong&gt;MySQL&lt;/strong&gt; 5.1.53 from &lt;a href="http://dev.mysql.com/downloads/mysql"&gt;here&lt;/a&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;After installing it, open configuration file (default location &lt;strong&gt;C:\Program Files\MySQL\MySQL Server 5.1\my.ini&lt;/strong&gt;) and add the following line:&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;em&gt;old-passwords&lt;/em&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;when you change the server to use old-passwords, any existing accounts need to have their password changed to the old password format. Example: &lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;em&gt;mysql&gt; SET PASSWORD FOR 'username'@'hostname' = OLD_PASSWORD('mypassword');&lt;/em&gt; &lt;/p&gt;  &lt;p class="MsoNormal"&gt;Where '&lt;em&gt;username&lt;/em&gt;'@'&lt;em&gt;hostname&lt;/em&gt;' is the account and client host you use, and '&lt;em&gt;mypassword&lt;/em&gt;' is the password you want to use for that account. &lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;You need that last step to enable a PHP4 application to connect to a MySQL 4.1 or later, else you will probably see the following message: "&lt;em&gt;Client does not support authentication protocol&lt;/em&gt;"&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;strong&gt;&lt;span style="font-size:130%;"&gt;4. Testing&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;First of all after saving all previous changes restart the Apache server. &lt;/p&gt;  &lt;p class="MsoNormal"&gt;Now to see if we set everything correctly navigate to the htdocs folder (default location: &lt;em&gt;C:\Program Files\Apache Software Foundation\Apache2.2\htdocs&lt;/em&gt;) and create 2 php files there.&lt;/p&gt;  &lt;p class="MsoNormal"&gt;First one to test php - name it &lt;strong&gt;index.php&lt;/strong&gt; and add following line to it:&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;div style="border: 1px solid rgb(163, 163, 163); background: rgb(240, 242, 245) none repeat scroll 0% 0%; width: 210px; -moz-background-clip: border; -moz-background-origin: padding; -moz-background-inline-policy: continuous;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;em&gt;&amp;lt;? phpinfo(); ?&gt;&lt;/em&gt;&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Save the file and navigate to &lt;strong&gt;http://localhost&lt;/strong&gt; on you broswer, if you see PHP information - congrats PHP and Apache are setup correctly.  &lt;p class="MsoNormal"&gt;&lt;br /&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;Name second file &lt;strong&gt;testsql.php&lt;/strong&gt; and add following code to it:&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;em&gt;&lt;code&gt;&lt;br /&gt;&amp;lt;?&lt;br /&gt;&lt;br /&gt;$db_link = mysql_connect ("localhost", "root", "mypassword") or die ("Connection Failed!");&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;if($db_link) { echo "&amp;lt;b&amp;gt;&lt;/code&gt;&lt;/em&gt;&lt;em&gt;&lt;code&gt;Connection to MySQL server initiated successfully&lt;/code&gt;&lt;/em&gt;&lt;em&gt;&lt;code&gt;!&amp;lt;/b&amp;gt;"; }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;mysql_close();&lt;br /&gt;&lt;br /&gt;?&amp;gt;&lt;/code&gt;&lt;/em&gt;&lt;code&gt;&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;/p&gt;Save it and navigate to &lt;strong&gt;http://localhost/testsql.php&lt;/strong&gt; on your browser to see if connection is successful.  &lt;p class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;strong&gt;Links:&lt;/strong&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;a href="http://www.builderau.com.au/strategy/architecture/soa/Get-Apache-2-and-PHP-4-working-together-in-Windows/0,339028264,320273988,00.htm"&gt;http://www.builderau.com.au/strategy/architecture/soa/Get-Apache-2-and-PHP-4-working-together-in-Windows/0,339028264,320273988,00.htm&lt;/a&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;a href="http://forge.mysql.com/wiki/PHP_FAQ"&gt;http://forge.mysql.com/wiki/PHP_FAQ&lt;/a&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;strong&gt;Errors encountered:&lt;/strong&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;httpd.exe: Syntax error Cannot load php4apache2.dll into server: The specified module could not be found. - Solved by replacing php4apache2.dll to one downloaded&lt;/p&gt;  &lt;p class="MsoNormal"&gt;Warning: mysql_connect() [function.mysql-connect]: Client does not support authentication protocol requested by server; consider upgrading MySQL client - Solved by adding "old-passwords" line to MySQL configuration file my.ini&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-551382393918052615?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/551382393918052615/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=551382393918052615&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/551382393918052615'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/551382393918052615'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2010/11/running-apache-22x-php-44x-and-mysql.html' title='Running Apache 2.2.x PHP 4.4.x and MySQL 5.1.x under Windows Server 2003'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-6399271188870575818</id><published>2010-03-15T12:53:00.005+02:00</published><updated>2010-03-22T17:43:11.642+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='RC to RTM'/><title type='text'>Upgrade Windows 7 RC to Windows 7 RTM</title><content type='html'>It's pretty simple, if you have bootable flash just navigate to folder "sources" open file &lt;strong&gt;cversion.ini&lt;/strong&gt; and change "&lt;strong&gt;MinClient&lt;/strong&gt;" value to &lt;strong&gt;7000&lt;/strong&gt;.&lt;br /&gt;&lt;br /&gt;You can also do this with ISO image before burning it to dvd.&lt;br /&gt;&lt;br /&gt;Just tested - works with Server 2008 R2 RC to Server 2008 R2 RTM.&lt;br /&gt;&lt;br /&gt;One more thing, upgrade from windows, don't boot from usb or dvd it will ask you to boot up you windows and launch setup then.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-6399271188870575818?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/6399271188870575818/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=6399271188870575818&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/6399271188870575818'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/6399271188870575818'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2010/03/upgrade-windows-7-rc-to-windows-7-rtm.html' title='Upgrade Windows 7 RC to Windows 7 RTM'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-6637951677444942893</id><published>2009-11-16T10:21:00.002+02:00</published><updated>2009-11-16T10:29:00.752+02:00</updated><title type='text'>Advertisement: SnapIt Screen Capture</title><content type='html'>&lt;strong&gt;&lt;/strong&gt;&lt;span class="fontTahoma18Gray"&gt;&lt;/span&gt;&lt;strong&gt;Capture anything you see on your PC screen!&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;/strong&gt;&lt;a href="http://www.digeus.com/products/snapit/snapit_screen_capture_3_5.html"&gt;Screen Capture Software&lt;/a&gt;&lt;a href="http://www.digeus.com/products/snapit/snapit_screen_capture_3_5.html" target="_blank"&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/6705827636155762044-6637951677444942893?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/6637951677444942893/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=6637951677444942893&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/6637951677444942893'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/6637951677444942893'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2009/11/advertisement.html' title='Advertisement: SnapIt Screen Capture'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-5799151460624217424</id><published>2009-11-13T00:24:00.016+02:00</published><updated>2009-11-13T12:54:02.995+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SQL Server 2008'/><category scheme='http://www.blogger.com/atom/ns#' term='migration'/><category scheme='http://www.blogger.com/atom/ns#' term='SQL Server 2005'/><title type='text'>Move databases from SQL 2005 to SQL 2008</title><content type='html'>I am awfully new at SQL server and this was a real headache for me. So I decided to document this experience so I never have to go through all those google pages again :)&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Contents:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-size:100%;" &gt;Step 1 - Making a backup of database.&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold;font-size:100%;" &gt;Step 2 - Restoring databases.&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold;font-size:100%;" &gt;Step 3 - Transfer of logins and passwords&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Source: Server A - SQL 2005&lt;br /&gt;Destination: Server B - SQL 2008&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:180%;"&gt;&lt;span style="font-weight: bold;"&gt;Step 1&lt;/span&gt; - Making a backup of database.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;On the source server: Open&lt;span style="font-weight: bold;"&gt; Microsoft&lt;/span&gt; &lt;span style="font-weight: bold;"&gt;SQL Server Management Studio&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;method a) &lt;/span&gt;(preferable when backuping a single database)&lt;br /&gt;&lt;br /&gt;expand &lt;span style="font-weight: bold; font-style: italic;"&gt;ServerA &lt;/span&gt;&lt;span style="font-weight: bold;"&gt;-&gt; Databases&lt;/span&gt;&lt;br /&gt;right click on the database you want to backup and choose &lt;span style="font-weight: bold;"&gt;Tasks -&gt; Back Up&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Backup type: Full&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Backup component: Database&lt;/span&gt;&lt;br /&gt;now choose where you want to put your backup file - click &lt;span style="font-weight: bold;"&gt;Add&lt;/span&gt; and enter path and file name (you can enter share location as well for example&lt;span style="font-weight: bold;"&gt; \\Server_B\backups\database1.bak&lt;/span&gt;)&lt;br /&gt;Click &lt;span style="font-weight: bold;"&gt;OK&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;method b)&lt;/span&gt; (when backuping few, lots or all databases)&lt;br /&gt;&lt;br /&gt;expand &lt;span style="font-weight: bold; font-style: italic;"&gt;ServerA&lt;/span&gt; -&gt; &lt;span style="font-weight: bold;"&gt;Management&lt;/span&gt;&lt;br /&gt;right click &lt;span style="font-weight: bold;"&gt;Maintenance Plans&lt;/span&gt; and choose &lt;span style="font-weight: bold;"&gt;Maintenance Plan Wizard&lt;br /&gt;&lt;/span&gt;on the first page of the wizard click &lt;span style="font-weight: bold;"&gt;Next&lt;br /&gt;&lt;/span&gt;on the second page enter name for your backup plan, choose "&lt;span style="font-weight: bold;"&gt;Single schedule for the entire plan or no schedule&lt;/span&gt;", enter schedule setings or leave it on demand if you want to run it manualy, and click &lt;span style="font-weight: bold;"&gt;Next&lt;/span&gt;.&lt;br /&gt;third page select "&lt;span style="font-weight: bold;"&gt;Back Up Database (Full)&lt;/span&gt;" and click &lt;span style="font-weight: bold;"&gt;Next&lt;br /&gt;&lt;/span&gt;fourth page - &lt;span style="font-weight: bold;"&gt;Next&lt;br /&gt;&lt;/span&gt;fifth page - choose which databases you want to backup, select "&lt;span style="font-weight: bold;"&gt;Create a backup file for every database&lt;/span&gt;" and select a location for backups (preferably share on the destination server \\Server_B\backups\)&lt;br /&gt;sixth page - &lt;span style="font-weight: bold;"&gt;Next&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;and at last - &lt;span style="font-weight: bold;"&gt;Finish&lt;/span&gt;&lt;br /&gt;after wizard finishes to create your maintenance plan - click &lt;span style="font-weight: bold;"&gt;Close&lt;/span&gt;&lt;br /&gt;Now expand &lt;span style="font-weight: bold;"&gt;Maintenante Plans&lt;/span&gt; and you will see your maintenance plan listed there. Right click it and &lt;span style="font-weight: bold;"&gt;Execute&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:180%;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;Step 2&lt;/span&gt; - Restoring databases.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;On the destination server: Open &lt;span style="font-weight: bold;"&gt;Microsoft&lt;/span&gt; &lt;span style="font-weight: bold;"&gt;SQL Server Management Studio&lt;/span&gt;&lt;br /&gt;expand &lt;span style="font-weight: bold; font-style: italic;"&gt;ServerB,&lt;/span&gt; right click &lt;span style="font-weight: bold;"&gt;Databases&lt;/span&gt; and choose &lt;span style="font-weight: bold;"&gt;Restore Database&lt;/span&gt;&lt;br /&gt;enter the name of database you are going to restore&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;To database:&lt;/span&gt; &lt;span style="font-weight: bold; font-style: italic;"&gt;database1&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;then choose "&lt;span style="font-weight: bold;"&gt;From device&lt;/span&gt;" and browse for you database backup file&lt;br /&gt;once you add it select it and press &lt;span style="font-weight: bold;"&gt;OK&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:180%;"&gt;&lt;span style="font-weight: bold;"&gt;Step 3&lt;/span&gt; - Transfer of logins and passwords&lt;/span&gt; (&lt;a href="http://support.microsoft.com/kb/918992/"&gt;http://support.microsoft.com/kb/918992/&lt;/a&gt;)&lt;br /&gt;&lt;br /&gt;3.1 On source &lt;span style="font-weight: bold; font-style: italic;"&gt;Server A&lt;/span&gt; open &lt;span style="font-weight: bold;"&gt;New Query&lt;/span&gt; in the&lt;span style="font-weight: bold;"&gt; Microsoft SQL Management Studio&lt;/span&gt;&lt;br /&gt;paste and execute the following code:&lt;br /&gt;&lt;br /&gt;&lt;div style="border: 1px solid rgb(163, 163, 163); background: rgb(240, 242, 245) none repeat scroll 0% 0%; width: 610px; -moz-background-clip: border; -moz-background-origin: padding; -moz-background-inline-policy: continuous;"&gt;&lt;span style="font-weight: bold;font-size:85%;" &gt;USE master&lt;br /&gt;GO&lt;br /&gt;IF OBJECT_ID ('sp_hexadecimal') IS NOT NULL&lt;br /&gt;DROP PROCEDURE sp_hexadecimal&lt;br /&gt;GO&lt;br /&gt;CREATE PROCEDURE sp_hexadecimal&lt;br /&gt;@binvalue varbinary(256),&lt;br /&gt;@hexvalue varchar (514) OUTPUT&lt;br /&gt;AS&lt;br /&gt;DECLARE @charvalue varchar (514)&lt;br /&gt;DECLARE @i int&lt;br /&gt;DECLARE @length int&lt;br /&gt;DECLARE @hexstring char(16)&lt;br /&gt;SELECT @charvalue = '0x'&lt;br /&gt;SELECT @i = 1&lt;br /&gt;SELECT @length = DATALENGTH (@binvalue)&lt;br /&gt;SELECT @hexstring = '0123456789ABCDEF'&lt;br /&gt;WHILE (@i &lt;= @length) BEGIN   DECLARE @tempint int   DECLARE @firstint int   DECLARE @secondint int   SELECT @tempint = CONVERT(int, SUBSTRING(@binvalue,@i,1))   SELECT @firstint = FLOOR(@tempint/16)   SELECT @secondint = @tempint - (@firstint*16)   SELECT @charvalue = @charvalue +     SUBSTRING(@hexstring, @firstint+1, 1) +     SUBSTRING(@hexstring, @secondint+1, 1)   SELECT @i = @i + 1 END  SELECT @hexvalue = @charvalue GO  IF OBJECT_ID ('sp_help_revlogin') IS NOT NULL   DROP PROCEDURE sp_help_revlogin GO CREATE PROCEDURE sp_help_revlogin @login_name sysname = NULL AS DECLARE @name sysname DECLARE @type varchar (1) DECLARE @hasaccess int DECLARE @denylogin int DECLARE @is_disabled int DECLARE @PWD_varbinary  varbinary (256) DECLARE @PWD_string  varchar (514) DECLARE @SID_varbinary varbinary (85) DECLARE @SID_string varchar (514) DECLARE @tmpstr  varchar (1024) DECLARE @is_policy_checked varchar (3) DECLARE @is_expiration_checked varchar (3)  DECLARE @defaultdb sysname  IF (@login_name IS NULL)   DECLARE login_curs CURSOR FOR        SELECT p.sid, p.name, p.type, p.is_disabled, p.default_database_name, l.hasaccess, l.denylogin FROM sys.server_principals p LEFT JOIN sys.syslogins l       ON ( l.name = p.name ) WHERE p.type IN ( 'S', 'G', 'U' ) AND p.name &lt;&gt; 'sa'&lt;br /&gt;ELSE&lt;br /&gt;DECLARE login_curs CURSOR FOR&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;SELECT p.sid, p.name, p.type, p.is_disabled, p.default_database_name, l.hasaccess, l.denylogin FROM&lt;br /&gt;sys.server_principals p LEFT JOIN sys.syslogins l&lt;br /&gt;ON ( l.name = p.name ) WHERE p.type IN ( 'S', 'G', 'U' ) AND p.name = @login_name&lt;br /&gt;OPEN login_curs&lt;br /&gt;&lt;br /&gt;FETCH NEXT FROM login_curs INTO @SID_varbinary, @name, @type, @is_disabled, @defaultdb, @hasaccess, @denylogin&lt;br /&gt;IF (@@fetch_status = -1)&lt;br /&gt;BEGIN&lt;br /&gt;PRINT 'No login(s) found.'&lt;br /&gt;CLOSE login_curs&lt;br /&gt;DEALLOCATE login_curs&lt;br /&gt;RETURN -1&lt;br /&gt;END&lt;br /&gt;SET @tmpstr = '/* sp_help_revlogin script '&lt;br /&gt;PRINT @tmpstr&lt;br /&gt;SET @tmpstr = '** Generated ' + CONVERT (varchar, GETDATE()) + ' on ' + @@SERVERNAME + ' */'&lt;br /&gt;PRINT @tmpstr&lt;br /&gt;PRINT ''&lt;br /&gt;WHILE (@@fetch_status &lt;&gt; -1)&lt;br /&gt;BEGIN&lt;br /&gt;IF (@@fetch_status &lt;&gt; -2)&lt;br /&gt;BEGIN&lt;br /&gt;PRINT ''&lt;br /&gt;SET @tmpstr = '-- Login: ' + @name&lt;br /&gt;PRINT @tmpstr&lt;br /&gt;IF (@type IN ( 'G', 'U'))&lt;br /&gt;BEGIN -- NT authenticated account/group&lt;br /&gt;&lt;br /&gt;SET @tmpstr = 'CREATE LOGIN ' + QUOTENAME( @name ) + ' FROM WINDOWS WITH DEFAULT_DATABASE = [' + @defaultdb + ']'&lt;br /&gt;END&lt;br /&gt;ELSE BEGIN -- SQL Server authentication&lt;br /&gt; -- obtain password and sid&lt;br /&gt;     SET @PWD_varbinary = CAST( LOGINPROPERTY( @name, 'PasswordHash' ) AS varbinary (256) )&lt;br /&gt; EXEC sp_hexadecimal @PWD_varbinary, @PWD_string OUT&lt;br /&gt; EXEC sp_hexadecimal @SID_varbinary,@SID_string OUT&lt;br /&gt;&lt;br /&gt; -- obtain password policy state&lt;br /&gt; SELECT @is_policy_checked = CASE is_policy_checked WHEN 1 THEN 'ON' WHEN 0 THEN 'OFF' ELSE NULL END FROM sys.sql_logins WHERE name = @name&lt;br /&gt; SELECT @is_expiration_checked = CASE is_expiration_checked WHEN 1 THEN 'ON' WHEN 0 THEN 'OFF' ELSE NULL END FROM sys.sql_logins WHERE name = @name&lt;br /&gt;&lt;br /&gt;     SET @tmpstr = 'CREATE LOGIN ' + QUOTENAME( @name ) + ' WITH PASSWORD = ' + @PWD_string + ' HASHED, SID = ' + @SID_string + ', DEFAULT_DATABASE = [' + @defaultdb + ']'&lt;br /&gt;&lt;br /&gt; IF ( @is_policy_checked IS NOT NULL )&lt;br /&gt; BEGIN&lt;br /&gt;   SET @tmpstr = @tmpstr + ', CHECK_POLICY = ' + @is_policy_checked&lt;br /&gt; END&lt;br /&gt; IF ( @is_expiration_checked IS NOT NULL )&lt;br /&gt; BEGIN&lt;br /&gt;   SET @tmpstr = @tmpstr + ', CHECK_EXPIRATION = ' + @is_expiration_checked&lt;br /&gt; END&lt;br /&gt;END&lt;br /&gt;IF (@denylogin = 1)&lt;br /&gt;BEGIN -- login is denied access&lt;br /&gt;SET @tmpstr = @tmpstr + '; DENY CONNECT SQL TO ' + QUOTENAME( @name )&lt;br /&gt;END&lt;br /&gt;ELSE IF (@hasaccess = 0)&lt;br /&gt;BEGIN -- login exists but does not have access&lt;br /&gt;SET @tmpstr = @tmpstr + '; REVOKE CONNECT SQL TO ' + QUOTENAME( @name )&lt;br /&gt;END&lt;br /&gt;IF (@is_disabled = 1)&lt;br /&gt;BEGIN -- login is disabled&lt;br /&gt;SET @tmpstr = @tmpstr + '; ALTER LOGIN ' + QUOTENAME( @name ) + ' DISABLE'&lt;br /&gt;END&lt;br /&gt;PRINT @tmpstr&lt;br /&gt;END&lt;br /&gt;&lt;br /&gt;FETCH NEXT FROM login_curs INTO @SID_varbinary, @name, @type, @is_disabled, @defaultdb, @hasaccess, @denylogin&lt;br /&gt;END&lt;br /&gt;CLOSE login_curs&lt;br /&gt;DEALLOCATE login_curs&lt;br /&gt;RETURN 0&lt;br /&gt;GO&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;this creates a stored procedure named &lt;span style="font-weight: bold;"&gt;sp_help_revlogin&lt;/span&gt; in &lt;span style="font-weight: bold; font-style: italic;"&gt;ServerA&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;/Databases/System Databases/Master/Programmability/Stored Procedures&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;3.2 Open &lt;span style="font-weight: bold;"&gt;New Query&lt;/span&gt; window again and run this code:&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;div style="border: 1px solid rgb(163, 163, 163); background: rgb(240, 242, 245) none repeat scroll 0% 0%; width: 210px; -moz-background-clip: border; -moz-background-origin: padding; -moz-background-inline-policy: continuous;"&gt;&lt;span style="font-weight: bold;"&gt;EXEC sp_help_revlogin&lt;/span&gt;&lt;/div&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;3.3&lt;span style="font-weight: bold;"&gt; &lt;/span&gt;copy the outcome of the step 3.2 and paste it in the &lt;span style="font-weight: bold;"&gt;New Query&lt;/span&gt; window on destination &lt;span style="font-weight: bold; font-style: italic;"&gt;Server B,&lt;/span&gt;&lt;span style="font-weight: bold;"&gt; &lt;/span&gt;execute it.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-5799151460624217424?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/5799151460624217424/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=5799151460624217424&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/5799151460624217424'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/5799151460624217424'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2009/11/move-databases-from-sql-2005-to-sql.html' title='Move databases from SQL 2005 to SQL 2008'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-7008444997116196850</id><published>2009-11-07T18:57:00.003+02:00</published><updated>2009-11-07T19:32:00.176+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Group Policy'/><category scheme='http://www.blogger.com/atom/ns#' term='Remote Desktop'/><category scheme='http://www.blogger.com/atom/ns#' term='RDP'/><title type='text'>Enable Remote Desktop remotely via Group Policy</title><content type='html'>Have you been in a situation where you need to remotely connect to some workplace and do some administrator stuff, but can not because &lt;span style="font-weight: bold;"&gt;Remote Desktop&lt;/span&gt; is not enabled and the user who is near that PC has no admin rights to enable &lt;span style="font-weight: bold;"&gt;Remote Desktop&lt;/span&gt;?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;So here is what you do (Windows Server 2008 R2 in this case):&lt;br /&gt;Connect to your domain controller -&gt; Open &lt;span style="font-weight: bold;"&gt;Group Policy Management&lt;/span&gt; &lt;span style="font-weight: bold;"&gt;Editor&lt;/span&gt;&lt;br /&gt;navigate to:&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Computer Configuration &gt; Administrative Templates &gt; Windows Components &gt; Remote Desktop Services &gt; Remote Desktop Session Host &gt; Connections&lt;/span&gt;&lt;br /&gt;Enable: &lt;span style="font-weight: bold;"&gt;Allow users to connect remotely using Remote Desktop Services&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Also you might need to add an exception to &lt;span style="font-weight: bold;"&gt;Windows Firewall&lt;/span&gt;, to do this via &lt;span style="font-weight: bold;"&gt;Group Policy&lt;/span&gt; navigate to:&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Computer Configuration &gt; Administrative Templates &gt; Network &gt; Network Connections &gt; Windows Firewall &gt; Domain Profile&lt;/span&gt;&lt;br /&gt;Enable: &lt;span style="font-weight: bold;"&gt;Windows Firewall: Allow inbound Remote Desktop exceptions&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Links: &lt;a href="http://www.twistedethics.com/2009/01/06/how-to-enable-remote-desktop-via-group-policy/comment-page-1/"&gt;http://www.twistedethics.com/2009/01/06/how-to-enable-remote-desktop-via-group-policy/comment-page-1/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-7008444997116196850?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/7008444997116196850/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=7008444997116196850&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/7008444997116196850'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/7008444997116196850'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2009/11/enable-remote-desktop-remotely-via.html' title='Enable Remote Desktop remotely via Group Policy'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-5191341573885566305</id><published>2009-10-02T15:33:00.007+03:00</published><updated>2009-10-02T16:05:59.590+03:00</updated><title type='text'>Can't uninstall Exchange 2010 RC, must remove public folder replicas first.</title><content type='html'>&lt;p&gt;&lt;span style="font-family:arial;"&gt;When trying to uninstall Exchange 2010 RC I ecounter this situation&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;em&gt;&lt;span style="font-family:arial;"&gt;Mailbox Role Prerequisites&lt;/span&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;em&gt;&lt;span style="font-family:arial;"&gt;Failed&lt;/span&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;em&gt;&lt;span style="font-family:arial;"&gt;Error:&lt;/span&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;em&gt;&lt;span style="font-family:arial;"&gt;Uninstall cannot continue. Database 'Public Folder Database 1166479595': The public folder database "Public Folder Database 1166479595" contains folder replicas. Before deleting the public folder database, remove the folders or move the replicas to another public folder database. For detailed instructions about how to remove a public folder database, see http://go.microsoft.com/fwlink/?linkid=81409&amp;amp;clcid=0x409.Recommended Action: http://go.microsoft.com/fwlink/?linkid=30939&amp;amp;l=en&amp;amp;v=ExBPA.4&amp;amp;id=b6e3b32a-8848-46cb-9567-72288ac15f60&lt;/span&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;&lt;span style="font-family:arial;"&gt;When trying to use cmdlet to remove public folder replicas &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;&lt;strong&gt;&lt;em&gt;Get-PublicFolder -Server &lt;server&gt;"\Non_Ipm_Subtree" -Recurse -ResultSize:Unlimited Remove-PublicFolder -Server &lt;server&gt;-Recurse -ErrorAction:SilentlyContinue&lt;/em&gt;&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;I get the error:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;"&lt;strong&gt;&lt;em&gt;Multiple MAPI public folder trees were found&lt;/em&gt;&lt;/strong&gt;".&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;What I did was opened &lt;strong&gt;ADSI Edit &lt;/strong&gt;and went to&lt;/span&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="font-family:arial;"&gt;Configuration [&lt;domaincontroller&gt;.contoso.com]&lt;br /&gt;CN=Configuration,DC=contoso,DC=com&lt;br /&gt;CN=Services&lt;br /&gt;CN=Microsoft Exchange &lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;then in the details pane right clicked "&lt;strong&gt;CN=Public Folders" &lt;/strong&gt;and changed parameter of &lt;em&gt;"&lt;strong&gt;msExchPFTreeType&lt;/strong&gt;"&lt;/em&gt; from "&lt;strong&gt;1&lt;/strong&gt;" to "&lt;strong&gt;&amp;lt;not set&amp;gt;&lt;/strong&gt;" (by choosing &lt;strong&gt;Edit&lt;/strong&gt; and clicking &lt;strong&gt;Clear&lt;/strong&gt;).&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;Then restarted &lt;strong&gt;Microsoft Exchange Information Store&lt;/strong&gt; service and rerun cmdlets:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;strong&gt;&lt;em&gt;&lt;span style="font-family:arial;"&gt;Get-PublicFolder -Server &lt;server&gt;"\" -Recurse -ResultSize:Unlimited Remove-PublicFolder -Server &lt;server&gt;-Recurse -ErrorAction:SilentlyContinue&lt;/span&gt;&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;and&lt;/span&gt;&lt;br /&gt;&lt;strong&gt;&lt;em&gt;&lt;span style="font-family:arial;"&gt;Get-PublicFolder -Server &lt;server&gt;"\Non_Ipm_Subtree" -Recurse -ResultSize:Unlimited Remove-PublicFolder -Server &lt;server&gt;-Recurse -ErrorAction:SilentlyContinue&lt;/span&gt;&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;Ttried to uninstall Exchange server again. This time prerequisites passed and I uninstalled successfully.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;Links: &lt;/span&gt;&lt;a href="http://msexchangeteam.com/archive/2007/07/09/445967.aspx"&gt;&lt;span style="font-family:arial;"&gt;http://msexchangeteam.com/archive/2007/07/09/445967.aspx&lt;/span&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-5191341573885566305?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/5191341573885566305/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=5191341573885566305&amp;isPopup=true' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/5191341573885566305'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/5191341573885566305'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2009/10/cant-uninstall-exchange-2010-rc-must.html' title='Can&apos;t uninstall Exchange 2010 RC, must remove public folder replicas first.'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-1718084813814379969</id><published>2009-10-01T12:37:00.004+03:00</published><updated>2009-10-01T12:53:03.898+03:00</updated><title type='text'>How to custom schedule Windows Server Backup on Windows Server 2008 R2</title><content type='html'>I was kinda pissed that Windows Server 2008 R2 Backup GUI had so little scheduling options,&lt;br /&gt;you have to choose a "&lt;strong&gt;Once a day&lt;/strong&gt;" bakcup or "&lt;strong&gt;More than once a day&lt;/strong&gt;".&lt;br /&gt;&lt;br /&gt;So to customize a shcedule to suite ones needs, simply create a backup with "Once a day" option, then in the &lt;strong&gt;Administrative Tools&lt;/strong&gt; open &lt;strong&gt;Task Scheduler &lt;/strong&gt;and navigate to:&lt;br /&gt;&lt;em&gt;&lt;strong&gt;Task Scheduler Library/Microsoft/Windows/Backup&lt;/strong&gt;&lt;/em&gt;&lt;br /&gt;there you should find your backup job, right click it and select &lt;strong&gt;Properties.&lt;/strong&gt;&lt;br /&gt;Go to &lt;strong&gt;Triggers&lt;/strong&gt; tab, select trigger &lt;strong&gt;Daily&lt;/strong&gt; and press &lt;strong&gt;Edit. &lt;/strong&gt;Here you have more options for scheduling. Good luck.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-1718084813814379969?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/1718084813814379969/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=1718084813814379969&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/1718084813814379969'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/1718084813814379969'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2009/10/how-to-custom-schedule-windows-server.html' title='How to custom schedule Windows Server Backup on Windows Server 2008 R2'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-2066279892324429987</id><published>2009-09-26T18:59:00.002+03:00</published><updated>2009-09-26T19:02:06.692+03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='POP3'/><category scheme='http://www.blogger.com/atom/ns#' term='outlook 2007'/><category scheme='http://www.blogger.com/atom/ns#' term='exchange 2010 RC'/><title type='text'>Outlook cannot connect to Exchange Server 2010 RC using POP3</title><content type='html'>Just installed Exchange Server 2010 RC and when trying to test it with my outlook in POP3 configuration I received this error:&lt;br /&gt;&lt;br /&gt;"&lt;span style="font-style: italic;"&gt;Task 'user@domain.com  - Receiving' reported error (0x800CCC0F) : 'The connection to the server was interrupted. If this problem continues, contact your server administrator or Internet service provider (ISP).'&lt;/span&gt;"&lt;br /&gt;&lt;br /&gt;The problem was that for some reason after installing &lt;span style="font-weight: bold;"&gt;Exchange Server 2010 RC&lt;/span&gt;, service &lt;span style="font-weight: bold;"&gt;Microsoft Exchange POP3&lt;/span&gt; did not start automatically, so I had to open &lt;span style="font-weight: bold;"&gt;services.msc&lt;/span&gt; (via "&lt;span style="font-weight: bold;"&gt;run&lt;/span&gt;"), and start this service manually, also changed its startup type to &lt;span style="font-weight: bold;"&gt;Automatic&lt;/span&gt; for future. This solved  the problem.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-2066279892324429987?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/2066279892324429987/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=2066279892324429987&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/2066279892324429987'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/2066279892324429987'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2009/09/outlook-cannot-connect-to-exchange_26.html' title='Outlook cannot connect to Exchange Server 2010 RC using POP3'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-3620792473958306858</id><published>2009-09-26T18:50:00.003+03:00</published><updated>2009-09-26T18:58:28.657+03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='outlook 2007'/><category scheme='http://www.blogger.com/atom/ns#' term='exchange 2010 RC'/><title type='text'>Outlook cannot connect to Exchange Server 2010 RC using IMAP</title><content type='html'>Just installed Exchange Server 2010 RC and when trying to test it with my outlook in IMAP configuration I received this error:&lt;br /&gt;&lt;br /&gt;"&lt;span style="font-style: italic;"&gt;Task 'Synchronizing subscribed folders for user@domain.com.' reported error (0x8004DF0B) : 'Outlook cannot synchronize subscribed folders for user@domain.com. Error: The connection to the server is unavailable. Outlook must be online or connected to complete this action. If you continue to receive this message, contact your server administrator or Internet service provider (ISP).'&lt;/span&gt;"&lt;br /&gt;&lt;br /&gt;The problem was that for some reason after installing &lt;span style="font-weight: bold;"&gt;Exchange Server 2010 RC&lt;/span&gt;, service &lt;span style="font-weight: bold;"&gt;Microsoft Exchange IMAP4&lt;/span&gt; did not start automatically, so I had to open &lt;span style="font-weight: bold;"&gt;services.msc&lt;/span&gt; (via "&lt;span style="font-weight: bold;"&gt;run&lt;/span&gt;"), and start this service manually, also changed its startup type to &lt;span style="font-weight: bold;"&gt;Automatic&lt;/span&gt; for future. This solved  the problem.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-3620792473958306858?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/3620792473958306858/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=3620792473958306858&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/3620792473958306858'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/3620792473958306858'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2009/09/outlook-cannot-connect-to-exchange.html' title='Outlook cannot connect to Exchange Server 2010 RC using IMAP'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-6185827806179690814</id><published>2009-09-26T14:13:00.004+03:00</published><updated>2009-09-26T14:30:42.248+03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='arbitration mailbox'/><category scheme='http://www.blogger.com/atom/ns#' term='remove-mailbox'/><category scheme='http://www.blogger.com/atom/ns#' term='exchange 2010 RC'/><title type='text'>Uninstalling Exchange Server 2010 RC, Mailbox role prerequisites error:</title><content type='html'>Tried to uninstall Exchange 2010 RC and encountered this error:&lt;span style="font-style: italic;"&gt;&lt;br /&gt;"Uninstall cannot continue. Database 'Mailbox Database 0186314254': This mailbox database contains one or more mailboxes or arbitration mailboxes. To get a list of all mailboxes in this database, run the command Get-Mailbox -Database &lt;database&gt;. To get a list of all arbitration mailboxes in this database, run the command Get-Mailbox -Database &lt;database&gt; -Arbitration. Before you can remove this mailbox database, you must disable, move, or remove user mailboxes and move arbitration mailboxes. &lt;/database&gt;&lt;/database&gt;&lt;/span&gt;"&lt;br /&gt;&lt;br /&gt;So I removed the user maibloxes, but had no idea how to remove arbitration mailboxes, after some googling here is what I did:&lt;br /&gt;in Exchange Management Shell&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Get-Mailbox -Arbitration | Remove-Mailbox -Arbitration -RemoveLastArbitrationMailboxAllowed&lt;/span&gt;&lt;br /&gt;this should remove all arbitration mailboxes.&lt;br /&gt;&lt;br /&gt;Or you can do the following&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;get-mailbox -arbitration | fl name, identity&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;After you get the ID of those mailboxes you can remove them one by one with the following command:&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;remove-mailbox -identity "domain.com/Users/SystemMailbox{1f05a927-563f-4671-8a1b-487764400889}" -arbitration -RemoveLastArbitrationMailboxAllowed&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;If all went smooth you can try uninstalling Exchange Server.&lt;br /&gt;&lt;br /&gt;Links: &lt;a href="http://social.technet.microsoft.com/Forums/en-US/exchange2010/thread/d058717e-bf70-4449-91c2-fa00b47d415f"&gt;http://social.technet.microsoft.com/Forums/en-US/exchange2010/thread/d058717e-bf70-4449-91c2-fa00b47d415f&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-6185827806179690814?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/6185827806179690814/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=6185827806179690814&amp;isPopup=true' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/6185827806179690814'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/6185827806179690814'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2009/09/uninstalling-exchange-server-2010-rc.html' title='Uninstalling Exchange Server 2010 RC, Mailbox role prerequisites error:'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-8975772653618923169</id><published>2009-09-11T09:38:00.003+03:00</published><updated>2009-09-11T09:46:03.952+03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='FTM'/><title type='text'>Microsoft File Transfer Manager queue keeps on restoring when you relaunch FTM</title><content type='html'>If you can't get rid of files in FTM queue try navigating to &lt;strong&gt;&lt;em&gt;C:\Users\you_username\AppData\Roaming\Microsoft\File Transfer Manager&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;and delete file "&lt;strong&gt;ftmTransferList.txt&lt;/strong&gt;". Next time you launch FTM they should not reappear.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-8975772653618923169?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/8975772653618923169/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=8975772653618923169&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/8975772653618923169'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/8975772653618923169'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2009/09/microsoft-file-transfer-manager-queue.html' title='Microsoft File Transfer Manager queue keeps on restoring when you relaunch FTM'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-5060036026124069831</id><published>2009-09-11T09:28:00.003+03:00</published><updated>2009-09-11T09:33:15.590+03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='exchange 2007'/><category scheme='http://www.blogger.com/atom/ns#' term='Server 2008 R2'/><category scheme='http://www.blogger.com/atom/ns#' term='Mailbox role'/><title type='text'>Can't uninstall Exchange 2007 SP1 Mailbox role from Server 2008 R2</title><content type='html'>If you are getting error:&lt;br /&gt;&lt;em&gt;"An error occurred. The error code was 3221685466. The message was The service is already registered.."&lt;/em&gt;&lt;br /&gt;while trying to uninstall Exchange 2007 SP1 Mailbox role from Server 2008 R2 (RC in my case)&lt;br /&gt;try changing registry key value from "Uninstall" to "Install" located at&lt;br /&gt;&lt;strong&gt;&lt;em&gt;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Exchange\v8.0\Mailbox\&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;after that try uninstalling again.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-5060036026124069831?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/5060036026124069831/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=5060036026124069831&amp;isPopup=true' title='22 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/5060036026124069831'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/5060036026124069831'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2009/09/cant-uninstall-exchange-2007-sp1.html' title='Can&apos;t uninstall Exchange 2007 SP1 Mailbox role from Server 2008 R2'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>22</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-5780144833063396734</id><published>2009-07-23T11:36:00.007+03:00</published><updated>2010-01-15T10:16:40.912+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='spooler'/><category scheme='http://www.blogger.com/atom/ns#' term='printer'/><title type='text'>Cannot install printer, because Print Spooler service does not work.</title><content type='html'>When trying to add a printer you receive error message:&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;"Operation could not be completed. The Print Spooler service is not running"&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Start&lt;/span&gt;-&gt;&lt;span style="font-weight: bold;"&gt;Run &lt;/span&gt;(Win+R)&lt;br /&gt;type: &lt;span style="font-style: italic; font-weight: bold;"&gt;services.msc&lt;/span&gt;&lt;br /&gt;in the list find &lt;span style="font-weight: bold;"&gt;Print Spooler&lt;/span&gt; service, check for &lt;span style="font-weight: bold;"&gt;Startup Type&lt;/span&gt; (should be automatic) right click and choose &lt;span style="font-weight: bold;"&gt;Start.&lt;br /&gt;&lt;/span&gt;If the service starts successfully you can try adding printer again.&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;If after a short time you receive error message similar to this:&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-style: italic;"&gt;"Spooler subsystem app has encountered a problem and needs to close.&lt;/span&gt;&lt;/span&gt;"&lt;br /&gt;&lt;br /&gt;Download &lt;a href="http://go.microsoft.com/?linkid=9662904"&gt;FixPrintSpooler.msi&lt;/a&gt; from Microsoft, run it and follow the instructions.&lt;br /&gt;&lt;br /&gt;More info here: &lt;span style="text-decoration: underline;"&gt;&lt;/span&gt;&lt;a href="http://support.microsoft.com/kb/324757"&gt;http://support.microsoft.com/kb/324757&lt;/a&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-5780144833063396734?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/5780144833063396734/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=5780144833063396734&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/5780144833063396734'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/5780144833063396734'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2009/07/cannot-install-printer-because-print.html' title='Cannot install printer, because Print Spooler service does not work.'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-8837877047610213295</id><published>2009-07-23T11:09:00.004+03:00</published><updated>2009-07-23T11:34:40.886+03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='pst'/><category scheme='http://www.blogger.com/atom/ns#' term='outlook 2007'/><title type='text'>Cannot add Outlook Data File - Maximum file size exceeded.</title><content type='html'>If you're trying to add .pst data file to your outlook profile and get the following error&lt;br /&gt;&lt;pre style="font-style: italic; font-weight: bold;" class="FreeTextFull"&gt;&lt;span style="font-size:100%;"&gt;"The file "drive:/path_to_your_.pst/outlook.pst" has reached its maximum size. To reduce&lt;br /&gt;the amount of data in the file, select some items that you no longer need and&lt;br /&gt;then permanently delete them by pressing SHIFT + DELETE".&lt;/span&gt;&lt;br /&gt;&lt;/pre&gt;Obviously you can not delete any messages because you can't add the data file itself. This case should be only for Outlook 2003 without sp2 because it limits .pst file size to somewhat 2GB, however I encountered a situation where this message was generated by Outlook 2007.&lt;br /&gt;&lt;br /&gt;Fastest workaround for this is to share the .pst file and add it to outlook 2007 on another computer in you local area network and delete some messages to lower the size of .pst file. That is if you have a network and another PC with outlook installed.&lt;br /&gt;&lt;br /&gt;The other way is to download &lt;a href="http://support.microsoft.com/kb/296088"&gt;microsoft tool for shrinking .pst files&lt;/a&gt;, then fix the file with &lt;span style="font-weight: bold;"&gt;SCANPST.EXE&lt;/span&gt; ) (if you have outlook 2007 it will be located in &lt;i style="font-weight: bold;"&gt;"drive&lt;/i&gt;&lt;span style="font-weight: bold;"&gt;:\Program Files\Microsoft Office\OFFICE12"&lt;/span&gt;) and then try adding the Data File again.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-8837877047610213295?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/8837877047610213295/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=8837877047610213295&amp;isPopup=true' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/8837877047610213295'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/8837877047610213295'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2009/07/cannot-add-outlook-data-file-maximum.html' title='Cannot add Outlook Data File - Maximum file size exceeded.'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-8736528730666547564</id><published>2009-07-23T11:02:00.002+03:00</published><updated>2009-07-23T11:09:11.718+03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='outlook 2007'/><title type='text'>Cannot start Microsoft Office Outlook. Cannot open the Outlook window.</title><content type='html'>When launching &lt;span style="font-weight: bold;"&gt;Microsoft Outlook 2007&lt;/span&gt; you get the following error message:&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;"Cannot start Microsoft Office Outlook.  Cannot open the Outlook window."&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;This might help:&lt;br /&gt;Start-&gt;Run (or Win+R)&lt;br /&gt;then type the following: Outlook.exe /resetnavpane&lt;br /&gt;&lt;br /&gt;If this does not fix your problem, you can always try &lt;a href="http://social.answers.microsoft.com/Forums/en-US/vistaprograms/thread/baf53169-0514-4dd3-808f-d8437c898e67"&gt;&lt;span style="font-weight: bold;"&gt;System Restore&lt;/span&gt;&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-8736528730666547564?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/8736528730666547564/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=8736528730666547564&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/8736528730666547564'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/8736528730666547564'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2009/07/cannot-start-microsoft-office-outlook.html' title='Cannot start Microsoft Office Outlook. Cannot open the Outlook window.'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-3757658756375439041</id><published>2009-06-23T00:00:00.002+03:00</published><updated>2009-06-23T00:11:28.974+03:00</updated><title type='text'>Unable to Import-Mailbox from .pst file to newly created mailbox on Exchange Server 2007 SP1</title><content type='html'>If you're unable to import .pst file to newly created mailbox using &lt;span style="font-weight: bold; font-style: italic;"&gt;"Import-Mailbox"&lt;/span&gt; cmdlet check if the mailbox appeared in the &lt;span style="font-weight: bold;"&gt;Store&lt;/span&gt;. If it won't appear for a long time simply send an email for that mailbox and try importing again.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-3757658756375439041?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/3757658756375439041/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=3757658756375439041&amp;isPopup=true' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/3757658756375439041'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/3757658756375439041'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2009/06/unable-to-import-mailbox-from-pst-file.html' title='Unable to Import-Mailbox from .pst file to newly created mailbox on Exchange Server 2007 SP1'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-5391547005699834948</id><published>2009-06-22T22:47:00.005+03:00</published><updated>2009-09-29T10:04:44.865+03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='exchange 2007'/><category scheme='http://www.blogger.com/atom/ns#' term='export-mailbox'/><category scheme='http://www.blogger.com/atom/ns#' term='import-mailbox'/><title type='text'>Error when trying to Export-Mailbox to .pst file (or import-mailbox) on Exchange Server 2007 SP1</title><content type='html'>When trying to export mailbox to .pst file in&lt;span style="FONT-WEIGHT: bold"&gt; Exchange Server 2007 SP1 &lt;/span&gt;using &lt;span style="FONT-WEIGHT: bold"&gt;Exchange Management Shell &lt;/span&gt;command &lt;span style="FONT-STYLE: italic; FONT-WEIGHT: bold"&gt;"Export-Mailbox"&lt;/span&gt; I have encountered an error:&lt;br /&gt;&lt;span style="FONT-STYLE: italic"&gt;"Failed to copy messages to the destination mailbox store with error: MAPI or an unspecified service provider. ID no: 00000000-0000-00000000.."&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;To solve this run this command in &lt;span style="FONT-WEIGHT: bold"&gt;Exchange Management Shell&lt;/span&gt;&lt;br /&gt;&lt;span style="FONT-STYLE: italic; FONT-WEIGHT: bold"&gt;"Get-Mailbox  Add-MailboxPermission -User "&lt;yourusername&gt;" -AccessRights FullAccess"&lt;/yourusername&gt;&lt;/span&gt;&lt;br /&gt;and try exporting again.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-5391547005699834948?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/5391547005699834948/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=5391547005699834948&amp;isPopup=true' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/5391547005699834948'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/5391547005699834948'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2009/06/error-when-trying-to-export-mailbox-to.html' title='Error when trying to Export-Mailbox to .pst file (or import-mailbox) on Exchange Server 2007 SP1'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-8758901021962366460</id><published>2009-06-22T21:50:00.003+03:00</published><updated>2009-06-22T22:19:33.471+03:00</updated><title type='text'>Cannot install maiblox role on Exchange Server 2007 SP1:  An error occurred. The error code was 3221684229. The message was Access is denied</title><content type='html'>If you're trying to install&lt;span style="font-weight: bold;"&gt; Exchange Server 2007 SP1&lt;/span&gt; on &lt;span style="font-weight: bold;"&gt;Windows Server 2008 R2 RC&lt;/span&gt; as did I and get the following results for &lt;span style="font-weight: bold;"&gt;Mailbox Role&lt;/span&gt;:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;"Mailbox Role&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Failed&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Error:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;An error occurred. The error code was 3221684229. The message was Access is denied.."&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;try running &lt;span style="font-weight: bold;"&gt;Setup.exe&lt;/span&gt; in &lt;span style="font-weight: bold;"&gt;Vista SP2&lt;/span&gt; compatibility mode and it should be ok.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-8758901021962366460?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/8758901021962366460/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=8758901021962366460&amp;isPopup=true' title='38 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/8758901021962366460'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/8758901021962366460'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2009/06/cannot-install-maiblox-role-on-exchange.html' title='Cannot install maiblox role on Exchange Server 2007 SP1:  An error occurred. The error code was 3221684229. The message was Access is denied'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>38</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-3837175800448042610</id><published>2009-06-22T20:43:00.005+03:00</published><updated>2009-06-22T22:26:43.443+03:00</updated><title type='text'>Cannot install Exchange Server 2007 SP1:  The system cannot find the file specified</title><content type='html'>If you are getting this error when trying to install Exchange Server 2007 SP1&lt;br /&gt;Error:&lt;br /&gt;The system cannot find the file specified&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;"Warning:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;An unexpected error has occurred and debug information is being generated: The system cannot find the file specified&lt;/span&gt;"&lt;br /&gt;&lt;br /&gt;you may want to check&lt;span style="font-weight: bold;"&gt; C:\ExchangeSetupLogs\ExchangeSetup.log&lt;/span&gt; for errors.&lt;br /&gt;If the missing file is &lt;span style="font-weight: bold;"&gt;Ldifde.exe&lt;span style="font-weight: bold;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;span&gt;you should install &lt;span style="font-weight: bold;"&gt;ADDS&lt;/span&gt;.&lt;br /&gt;For &lt;span style="font-weight: bold;"&gt;Windows Server 2008 R2&lt;/span&gt; open &lt;span style="font-weight: bold;"&gt;Server Manager&lt;/span&gt; go to &lt;span style="font-weight: bold;"&gt;Roles&lt;/span&gt;, click &lt;span style="font-weight: bold;"&gt;Add Roles &lt;/span&gt;and install&lt;span style="font-weight: bold;"&gt; Active Directory Domain Services&lt;/span&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;.&lt;br /&gt;&lt;/span&gt;&lt;span&gt;If you're installing Exchange 2007 Management Tools on&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt; Windows 7,&lt;/span&gt;&lt;/span&gt;&lt;span&gt; simply copy the file&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt; ldifde.exe&lt;/span&gt;&lt;/span&gt;&lt;span&gt; from your server to&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt; C:\windows\system32\ &lt;/span&gt;&lt;/span&gt;&lt;span&gt;folder&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;.&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-3837175800448042610?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/3837175800448042610/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=3837175800448042610&amp;isPopup=true' title='8 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/3837175800448042610'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/3837175800448042610'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2009/06/cannot-install-exchange-server-2007-sp1.html' title='Cannot install Exchange Server 2007 SP1:  The system cannot find the file specified'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>8</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-3294319778013367474</id><published>2009-06-09T14:14:00.032+03:00</published><updated>2009-10-19T10:01:52.327+03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='free'/><category scheme='http://www.blogger.com/atom/ns#' term='installation'/><category scheme='http://www.blogger.com/atom/ns#' term='software'/><title type='text'>Clean System Installation v0.6</title><content type='html'>List of most useful free programs for freshly installed OS.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Antivirus:&lt;/span&gt;&lt;br /&gt;&lt;a href="http://www.microsoft.com/Security_Essentials/"&gt;Microsoft Security Essentials&lt;/a&gt; (recommended)&lt;br /&gt;&lt;a href="http://download.cnet.com/3001-2239_4-10019223.html?spi=5257798eb668a30070d264a48081492a&amp;amp;part=dl-85737" target="_blank"&gt;Avast Home&lt;/a&gt;&lt;br /&gt;&lt;a href="http://download.cnet.com/3001-2239_4-10322935.html?spi=eb33cdc78327c2fc91aef4b8d948258a&amp;amp;part=dl-10322935" target="_blank"&gt;Avira Personal&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;File archiver:&lt;/span&gt;&lt;br /&gt;&lt;a href="http://sunet.dl.sourceforge.net/sourceforge/sevenzip/7z465.msi" target="_blank"&gt;7zip 32-bit&lt;/a&gt;&lt;br /&gt;&lt;a href="http://sunet.dl.sourceforge.net/sourceforge/sevenzip/7z465-x64.msi" target="_blank"&gt;7zip x64&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Browser:&lt;/span&gt;&lt;br /&gt;&lt;a href="http://www.mozilla.com/en-US/" target="_blank"&gt;Firefox&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.google.com/chrome/" target="_blank"&gt;Chrome&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.opera.com/download/get.pl?id=32022&amp;amp;location=195&amp;amp;nothanks=yes&amp;amp;sub=marine" target="_blank"&gt;Opera&lt;/a&gt;&lt;br /&gt;&lt;a href="https://swdlp.apple.com/cgi-bin/WebObjects/SoftwareDownloadApp.woa/798/wo/KNhfzvYDBjQ3BUymEQmxhM/2.5" target="_blank"&gt;Safari&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;Flash Player:&lt;/span&gt;&lt;br /&gt;&lt;a href="http://fpdownload.adobe.com/get/flashplayer/current/install_flash_player_ax.exe" target="_blank"&gt;IE&lt;/a&gt;&lt;br /&gt;&lt;a href="http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player.exe" target="_blank"&gt;non IE&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;.pdf Reader:&lt;/span&gt;&lt;br /&gt;&lt;a href="http://get.adobe.com/reader/thankyou/?item_reader=860" target="_blank"&gt;Adobe Reader&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.foxitsoftware.com/pdf/reader/download.php" target="_blank"&gt;Foxit Reader&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;Java plug-in:&lt;/span&gt;&lt;br /&gt;&lt;a href="http://javadl.sun.com/webapps/download/AutoDL?BundleId=33889" target="_blank"&gt;Java&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;Silverlight:&lt;/span&gt;&lt;br /&gt;&lt;a href="http://silverlight.net/GetStarted/" target="_blank"&gt;Silverlight&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;Burner:&lt;/span&gt;&lt;br /&gt;&lt;a href="http://www.techspot.com/downloadget.php?id=3285&amp;amp;file=1&amp;amp;evp=277115bff124c270076132b0f9879c23" target="_blank"&gt;ImgBurn&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;Imaging:&lt;/span&gt;&lt;br /&gt;&lt;a href="http://download.live.com/photogallery" target="_blank"&gt;Photo Gallery&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.google.com/picasa/" target="_blank"&gt;Picasa&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.techspot.com/downloadget.php?id=299&amp;amp;file=1&amp;amp;evp=adbb5905285e1f70bbfa39b3953de579" target="_blank"&gt;Irfan View&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.faststone.org/FSViewerDownload.htm" target="_blank"&gt;FastStone&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;Codeck Pack:&lt;/span&gt;&lt;br /&gt;&lt;a href="http://cccp-project.net/download.php?type=cccp" target="_blank"&gt;cccp&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.free-codecs.com/K_lite_codec_pack_download.htm" target="_blank"&gt;K-Lite Codec Pack&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;Video:&lt;/span&gt;&lt;br /&gt;&lt;a href="http://www.videolan.org/vlc/download-windows.html" target="_blank"&gt;VLC&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;Audio:&lt;/span&gt;&lt;br /&gt;&lt;a href="http://www.winamp.com/player/free-download-full?lang=en-us" target="_blank"&gt;Winamp&lt;/a&gt; (recommended)&lt;br /&gt;&lt;a href="http://www.aimp2.lt/" target="_blank"&gt;aimp2&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.getsongbird.com/download/" target="_blank"&gt;Songbird&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;Malware Removal:&lt;/span&gt;&lt;br /&gt;&lt;a href="http://vil.nai.com/vil/stinger/" target="_blank"&gt;&lt;/a&gt;&lt;a href="http://www.microsoft.com/downloads/thankyou.aspx?familyId=ad724ae0-e72d-4f54-9ab3-75b8eb148356&amp;amp;displayLang=en" target="_blank"&gt;Malicious Software Removal Tool 32-bit&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.microsoft.com/downloads/thankyou.aspx?familyId=585d2bde-367f-495e-94e7-6349f4effc74&amp;amp;displayLang=en" target="_blank"&gt;Malicious Software Removal Tool x64&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;Messaging:&lt;/span&gt;&lt;br /&gt;&lt;a href="http://www.google.com/talk/" target="_blank"&gt;Google Talk&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.skype.com/go/getskype" target="_blank"&gt;Skype&lt;/a&gt;&lt;br /&gt;&lt;a href="http://download.live.com/?sku=messenger" target="_blank"&gt;Windows Live Messenger&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;Torrents:&lt;/span&gt;&lt;br /&gt;&lt;a href="http://www.utorrent.com/downloads/complete?os=win" target="_blank"&gt;Micro Torrent&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;Virtual Drive:&lt;/span&gt;&lt;br /&gt;&lt;a href="http://static.slysoft.com/SetupVirtualCloneDrive.exe" target="_blank"&gt;VirtualClone Drive&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;Mail:&lt;br /&gt;&lt;/span&gt;&lt;a href="http://download.live.com/wlmail" target="_blank"&gt;Windows Live Mail&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.mozillamessaging.com/en-US/thunderbird/" target="_blank"&gt;Thunderbird&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.zimbra.com/products/desktop_download.html" target="_blank"&gt;Zimbra&lt;/a&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;br /&gt;Mail Spam Filters:&lt;br /&gt;&lt;/span&gt;&lt;a href="http://www.spamihilator.com/download" target="_blank"&gt;Spamihilator&lt;/a&gt; (works with Outlook 2000/XP/2003/Express, Eudora, Mozilla Thunderbird, IncrediMail, Pegasus Mail, Phoenix Mail, Opera, etc…)&lt;br /&gt;&lt;a href="http://download.cnet.com/Cactus-Spam-Filter/3000-2382_4-10326600.html?part=dl-CactusSpa&amp;amp;subj=dl&amp;amp;tag=button" target="_blank"&gt;Cactus Spam Filter&lt;/a&gt; (this spam stopper integrates seamlessly with all e-mail clients that use POP3)&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;System Maintenance:&lt;/span&gt;&lt;br /&gt;&lt;a href="http://www.filehippo.com/download_ccleaner/download/79cdedf2243b113d4f269134bfa9a19f/" target="_blank"&gt;CCleaner&lt;/a&gt; (uninstaller, registry cleaner, temp files cleaner and more)&lt;br /&gt;&lt;a href="http://www.revouninstaller.com/revo_uninstaller_free_download.html" target="_blank"&gt;Revo Uninstaller&lt;/a&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;br /&gt;HDD Maintenance:&lt;/span&gt;&lt;br /&gt;&lt;a href="http://www.techspot.com/downloadget.php?id=4843&amp;amp;file=1&amp;amp;evp=18bece27e2efb102676ac8f42927cb9a" target="_blank"&gt;Smart Defrag&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Recover lost data (deleted files, formatted data)&lt;/span&gt;&lt;br /&gt;&lt;a href="http://www.filehippo.com/download_recuva/download/132b88ab05c7a1e3a73d5af50e9c06b6/"&gt;Recuva&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-3294319778013367474?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/3294319778013367474/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=3294319778013367474&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/3294319778013367474'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/3294319778013367474'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2009/06/clean-system-installation.html' title='Clean System Installation v0.6'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-3466080495451640666</id><published>2009-01-27T14:08:00.002+02:00</published><updated>2009-01-27T14:20:10.577+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='IOps'/><category scheme='http://www.blogger.com/atom/ns#' term='hdd'/><title type='text'>Calculate HDD Input Outputs per second (IOps)</title><content type='html'>If you're looking to buy HDD and you need to know what IOps it can sustain, here is a formula you could use:&lt;br /&gt;IOps = 1000[msec] / (Average seek time [msec] + Average Latency [msec])&lt;br /&gt;&lt;br /&gt;For example let's calculate IOps for this &lt;a href="http://www-304.ibm.com/shop/americas/webapp/wcs/stores/servlet/default/ProductDisplay?productId=4611686018425132256&amp;amp;storeId=1&amp;amp;langId=-1&amp;amp;catalogId=-840"&gt;IBM SAS HDD&lt;/a&gt;&lt;br /&gt;1000 / 4.7 + 3 = 129.87 IOps&lt;br /&gt;&lt;br /&gt;Links:&lt;br /&gt;&lt;a href="http://blogs.smugmug.com/don/2007/10/08/hdd-iops-limiting-factor-seek-or-rpm/"&gt;http://blogs.smugmug.com/don/2007/10/08/hdd-iops-limiting-factor-seek-or-rpm/&lt;/a&gt;&lt;br /&gt;&lt;a href="http://technet.microsoft.com/en-us/library/bb897498.aspx"&gt;http://technet.microsoft.com/en-us/library/bb897498.aspx&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-3466080495451640666?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/3466080495451640666/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=3466080495451640666&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/3466080495451640666'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/3466080495451640666'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2009/01/calculate-hdd-input-outputs-per-second.html' title='Calculate HDD Input Outputs per second (IOps)'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-6934920968449028149</id><published>2009-01-24T00:40:00.006+02:00</published><updated>2009-01-24T00:56:09.275+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='windows 7'/><category scheme='http://www.blogger.com/atom/ns#' term='msi'/><category scheme='http://www.blogger.com/atom/ns#' term='installer'/><title type='text'>Install process randomly crashes when trying to install anything that uses an MSI based installer on Windows 7 beta</title><content type='html'>&lt;span style="font-size:78%;"&gt;Solution taken from Windows 7 Action Center&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Solve a problem with Windows 7 beta&lt;br /&gt;&lt;br /&gt;An issue with the Customer Experience Improvement Program (CEIP) client in  Windows 7 beta is causing Explorer and some MSI-based installers to stop working  properly.&lt;br /&gt;&lt;br /&gt;&lt;p&gt;To solve this problem, follow these steps:&lt;script language="javascript"&gt;nction expand( obj )               {                 if( obj.nextSibling.style.display=='none' )                 {                   obj.nextSibling.style.display = 'block';                   obj.firstChild.firstChild.src= 'http://wer.microsoft.com/Responses/include/images/down.gif'                 }                 else                 {                   obj.nextSibling.style.display = 'none';                   obj.firstChild.firstChild.src= 'http://wer.microsoft.com/Responses/include/images/right.gif'                 }               }&lt;/script&gt;&lt;script language="javascript"&gt;               function expand( obj )               {                 if( obj.nextSibling.style.display=='none' )                 {                   obj.nextSibling.style.display = 'block';                   obj.firstChild.firstChild.src= 'http://wer.microsoft.com/Responses/include/images/down.gif'                 }                 else                 {                   obj.nextSibling.style.display = 'none';                   obj.firstChild.firstChild.src= 'http://wer.microsoft.com/Responses/include/images/right.gif'                 }               }&lt;/script&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt; &lt;p&gt;Click the &lt;b&gt;Start&lt;/b&gt; button &lt;img class="Arrow" alt="" src="http://wer.microsoft.com/Responses/include/images/StartButton_16x16.gif" align="absmiddle" border="0" /&gt;,  click &lt;b&gt;All Programs&lt;/b&gt;, and then click &lt;b&gt;Accessories&lt;/b&gt;.&lt;/p&gt; &lt;/li&gt;&lt;li&gt; &lt;p&gt;Right-click &lt;b&gt;Command Prompt&lt;/b&gt;, and then click &lt;b&gt;Run as  administrator&lt;/b&gt;. &lt;img class="Arrow" alt="" src="http://wer.microsoft.com/Responses/include/images/SecurityBadge_16x16.gif" align="absmiddle" border="0" /&gt;  In the &lt;b&gt;User Account Control&lt;/b&gt; window, verify that &lt;b&gt;Program name&lt;/b&gt; is  &lt;b&gt;Windows Command Processor&lt;/b&gt;, and then click &lt;b&gt;Yes&lt;/b&gt;.&lt;/p&gt; &lt;/li&gt;&lt;li&gt; &lt;p&gt;In the &lt;b&gt;Administrator: Command Prompt&lt;/b&gt; window, type or paste the  following text at the prompt: &lt;/p&gt; &lt;p&gt;&lt;b&gt;reg delete HKLM\SOFTWARE\Microsoft\SQMClient\Windows\DisabledSessions /va  /f&lt;/b&gt;&lt;/p&gt; &lt;/li&gt;&lt;li&gt; &lt;p&gt;Press Enter to install the solution.&lt;/p&gt; &lt;/li&gt;&lt;li&gt; &lt;p&gt;If &lt;b&gt;The operation completed successfully&lt;/b&gt; displays, close the  &lt;b&gt;Administrator: Command Prompt&lt;/b&gt; window to complete this procedure. If  &lt;b&gt;"ERROR: Access is denied"&lt;/b&gt; displays, repeat this procedure from the top,  making sure you clicked &lt;b&gt;Run as administrator&lt;/b&gt; in step two.&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;&lt;br /&gt;links:&lt;br /&gt;&lt;a href="http://chris123nt.com/2009/01/18/sqm-client-causing-crashing-in-windows-7/"&gt;http://chris123nt.com/2009/01/18/sqm-client-causing-crashing-in-windows-7/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-6934920968449028149?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/6934920968449028149/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=6934920968449028149&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/6934920968449028149'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/6934920968449028149'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2009/01/install-process-randomly-crashes-when.html' title='Install process randomly crashes when trying to install anything that uses an MSI based installer on Windows 7 beta'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-4264384881182580539</id><published>2009-01-23T00:16:00.002+02:00</published><updated>2009-01-23T00:29:57.683+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='windows 7'/><category scheme='http://www.blogger.com/atom/ns#' term='hotkeys'/><title type='text'>Windows 7 Hotkey list</title><content type='html'>&lt;strong&gt;&lt;span style="font-size:180%;"&gt;General&lt;/span&gt;&lt;br /&gt;&lt;/strong&gt;&lt;span style="font-weight: bold;"&gt;Win+Up&lt;/span&gt; = Maximize&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Win+Left&lt;/span&gt;  = Snap to left&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Win+Right&lt;/span&gt; = Snap to right&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Win+Shift+Lef&lt;/span&gt;t = Jump to left monitor&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Win+Shift+Right&lt;/span&gt; = Jump to right monitor&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Win+Home&lt;/span&gt; = Minimize / Restore all other windows&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Win+T&lt;/span&gt; = Focus the first taskbar entry&lt;br /&gt;Pressing again will cycle through them, you can can arrow around.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Win+Shift+T&lt;/span&gt; = cycles backwards.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Win+Space&lt;/span&gt; = Peek at the desktop&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Win+G&lt;/span&gt; = Bring gadgets to the top of the Z-order&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Win+P&lt;/span&gt; = External display options (mirror, extend desktop, etc)&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Win+X&lt;/span&gt; = Mobility Center (same as Vista, but still handy!)&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Win+#&lt;/span&gt;&lt;br /&gt;(# = a number key) Launches a new instance of the application in the Nth slot on the taskbar.&lt;br /&gt;Example: Win+1 launches first pinned app, Win+2 launches second, etc.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Win + +&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Win + -&lt;/span&gt;&lt;br /&gt;(plus or minus key) Zoom in or out.&lt;br /&gt;&lt;strong&gt;&lt;br /&gt;&lt;span style="font-size:180%;"&gt;Explorer&lt;/span&gt;&lt;br /&gt;&lt;/strong&gt;&lt;span style="font-weight: bold;"&gt;Alt+P&lt;/span&gt; = Show/hide Preview Pane&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="font-size:180%;"&gt;Taskbar modifiers&lt;/span&gt;&lt;br /&gt;&lt;/strong&gt;&lt;span style="font-weight: bold;"&gt;Shift + Click on icon&lt;/span&gt; = Open a new instance&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Middle click on icon&lt;/span&gt; = Open a new instance&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Ctrl + Shift + Click on icon&lt;/span&gt; = Open a new instance with Admin privileges&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Shift + Right-click on icon&lt;/span&gt; = Show window menu (Restore / Minimize / Move / etc)&lt;br /&gt;Note: Normally you can just right-click on the window thumbnail to get this menu&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Shift + Right-click on grouped icon&lt;/span&gt; = Menu with Restore All / Minimize All / Close All, etc.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Ctrl + Click on grouped icon&lt;/span&gt; = Cycle between the windows (or tabs) in the group&lt;br /&gt;&lt;br /&gt;Links:&lt;br /&gt;taken from &lt;a href="http://brandonlive.com/"&gt;http://brandonlive.com/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-4264384881182580539?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/4264384881182580539/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=4264384881182580539&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/4264384881182580539'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/4264384881182580539'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2009/01/windows-7-hotkey-list.html' title='Windows 7 Hotkey list'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-9214572157717185550</id><published>2009-01-21T09:33:00.005+02:00</published><updated>2009-01-21T10:19:50.108+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='credentials'/><category scheme='http://www.blogger.com/atom/ns#' term='RDP'/><category scheme='http://www.blogger.com/atom/ns#' term='gpedit'/><title type='text'>Remote Desktop not allowed to use saved credentials</title><content type='html'>When trying to use saved credentials in &lt;span style="font-weight: bold;"&gt;Remote Desktop Connection&lt;/span&gt; you might receive this message:&lt;br /&gt;&lt;br /&gt;Your credentials did not work&lt;br /&gt;Your system administrator does not allow the use of saved credentials to log on to the remote computer terminal.server.com because its identity is not fully verified. Please enter new credentials.&lt;br /&gt;&lt;a href="http://i252.photobucket.com/albums/hh30/complexxL9/Yourcredentialsdidnotwork.jpg"&gt;(screenshot)&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;To be able to use saved credentials in this situation you need to do the following:&lt;br /&gt;&lt;br /&gt;1. Open Group Policy Editor via &lt;span style="font-weight: bold;"&gt;cmd&lt;/span&gt; -&gt; &lt;span style="font-weight: bold;"&gt;gpedit.msc&lt;/span&gt; &lt;a href="http://i252.photobucket.com/albums/hh30/complexxL9/gpedit.jpg"&gt;(screenshot)&lt;/a&gt;&lt;br /&gt;2. Navigate to&lt;span style="font-weight: bold;"&gt; Local Computer Policy\Computer Configuration\Administrative Templates\System\Credentials Delegation\&lt;/span&gt;&lt;br /&gt;3.Open Setting &lt;span style="font-weight: bold;"&gt;Allow Delegating Saved Credentials with NTLM-only Server Authentication&lt;/span&gt;, set it to &lt;span style="font-weight: bold;"&gt;Enabled &lt;/span&gt;click on button &lt;span style="font-weight: bold;"&gt;Show...  &lt;/span&gt;and in &lt;span style="font-weight: bold;"&gt;Show Contents&lt;/span&gt; window add Value TERMSRV/&lt;span style="font-style: italic;"&gt;terminal.server.com. &lt;/span&gt;Close all windows by pressing &lt;span style="font-weight: bold;"&gt;OK. &lt;/span&gt;&lt;a href="http://i252.photobucket.com/albums/hh30/complexxL9/allowdelegatingsavedcredentialswith.jpg"&gt;(screenshot)&lt;/a&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;4. Run &lt;span style="font-weight: bold;"&gt;cmd &lt;/span&gt;and enter &lt;span style="font-weight: bold;"&gt;gpupdate&lt;/span&gt; command to update your policy.&lt;span style="font-weight: bold;"&gt; &lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;a href="http://i252.photobucket.com/albums/hh30/complexxL9/gpupdate.jpg"&gt;(screenshot)&lt;/a&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;Now you should be able to use your saved credentials.&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;note:&lt;br /&gt;these steps were performed on Windows 7 beta, but probably it will stay the same in final release and my guess is, it is the same in Vista (too lazy to check)&lt;span style="font-weight: bold;"&gt;.&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-9214572157717185550?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/9214572157717185550/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=9214572157717185550&amp;isPopup=true' title='23 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/9214572157717185550'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/9214572157717185550'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2009/01/remote-desktop-not-allowed-to-use-saved.html' title='Remote Desktop not allowed to use saved credentials'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>23</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-222681638966727519</id><published>2009-01-10T14:08:00.003+02:00</published><updated>2009-01-10T14:15:03.079+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='PC game'/><title type='text'>Huge lags in Fallout 3 on Hi-End PC</title><content type='html'>If you experience huge lags in Fallout 3 from the moment you start the game and menu screen loads, try uninstalling Total Media Theater if you have installed one, worked for me.&lt;br /&gt;&lt;br /&gt;PC specifications:&lt;br /&gt;Asus HD 4870X2&lt;br /&gt;Core i7 920&lt;br /&gt;Creative SB X-Fi Titanium&lt;br /&gt;6 GB of DDR3 at 1066 Mhz&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-222681638966727519?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/222681638966727519/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=222681638966727519&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/222681638966727519'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/222681638966727519'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2009/01/huge-lags-in-fallout-3-on-hi-end-pc.html' title='Huge lags in Fallout 3 on Hi-End PC'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-15556963434267575</id><published>2009-01-10T13:41:00.004+02:00</published><updated>2009-01-11T12:32:42.114+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='PC game'/><title type='text'>Mouse Delay in Dead Space</title><content type='html'>If you experience mouse delay in menu and game try turning off Vertical Sync. &lt;a href="http://i252.photobucket.com/albums/hh30/complexxL9/deadspacevsyncoff.jpg"&gt;(screenshot)&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-15556963434267575?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/15556963434267575/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=15556963434267575&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/15556963434267575'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/15556963434267575'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2009/01/mouse-delay-in-dead-space.html' title='Mouse Delay in Dead Space'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-4299141238623447341</id><published>2008-12-20T15:37:00.001+02:00</published><updated>2008-12-20T15:37:31.556+02:00</updated><title type='text'>Default language at Windows Vista logon screen</title><content type='html'>If you are bothered by the fact that you need to change language every time you start Windows to be able to access some symbols used in your password, you can change this by adjusting some settings in control panel.&lt;br /&gt;&lt;br /&gt;Open your &lt;span style="font-weight: bold;"&gt;Control Panel&lt;/span&gt;&lt;br /&gt;Go to &lt;span style="font-weight: bold;"&gt;Regional and Language Options&lt;/span&gt;&lt;br /&gt;Select &lt;span style="font-weight: bold;"&gt;Keyboards and Languages&lt;/span&gt; tab&lt;br /&gt;Click on &lt;span style="font-weight: bold;"&gt;Change keyboards...&lt;/span&gt; button&lt;br /&gt;Change your &lt;span style="font-style: italic;"&gt;Default input language&lt;/span&gt; and keyboard layout to suit your needs.&lt;br /&gt;Click &lt;span style="font-weight: bold;"&gt;OK&lt;/span&gt; &lt;a href="http://i252.photobucket.com/albums/hh30/complexxL9/changedefaultinputlanguage.jpg"&gt;(screenshot)&lt;/a&gt;&lt;br /&gt;Go to &lt;span style="font-weight: bold;"&gt;Administrative&lt;/span&gt; tab&lt;br /&gt;Click on &lt;span style="font-weight: bold;"&gt;Copy to reserved accounts&lt;/span&gt;...&lt;br /&gt;Select the checkboxes and click &lt;span style="font-weight: bold;"&gt;OK&lt;/span&gt; &lt;a href="http://i252.photobucket.com/albums/hh30/complexxL9/copytoreservedaccounts.jpg"&gt;(screenshot)&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Links:&lt;br /&gt;&lt;a href="http://www.vistax64.com/vista-account-administration/133455-language-logon-screen.html"&gt;http://www.vistax64.com/vista-account-administration/133455-language-logon-screen.html&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-4299141238623447341?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/4299141238623447341/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=4299141238623447341&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/4299141238623447341'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/4299141238623447341'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2008/12/default-language-at-windows-vista-logon.html' title='Default language at Windows Vista logon screen'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-4553476926720582739</id><published>2008-12-14T15:16:00.004+02:00</published><updated>2008-12-14T21:55:51.722+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='IIS'/><category scheme='http://www.blogger.com/atom/ns#' term='cmd'/><category scheme='http://www.blogger.com/atom/ns#' term='compression'/><title type='text'>Enabling HTTP Compression in IIS 6.0</title><content type='html'>To enable HTTP compression in IIS 6.0&lt;br /&gt;&lt;br /&gt;1. Open &lt;span style="font-weight: bold;"&gt;IIS Manager.&lt;/span&gt;&lt;br /&gt;2. Right click &lt;span style="font-weight: bold;"&gt;Web Sites&lt;/span&gt; node and choose &lt;span style="font-weight: bold;"&gt;Properties&lt;/span&gt;.&lt;br /&gt;3. Select &lt;span style="font-weight: bold;"&gt;Service&lt;/span&gt; tab.&lt;br /&gt;4. Check &lt;span style="font-weight: bold;"&gt;Compress application files&lt;/span&gt; to enable dynamic compression.&lt;br /&gt;5. Check&lt;span style="font-weight: bold;"&gt; Compress static files&lt;/span&gt; to enable static compression.&lt;br /&gt;6. Click &lt;span style="font-weight: bold;"&gt;Browse&lt;/span&gt; next to &lt;span style="font-weight: bold;"&gt;Temporary directory:&lt;/span&gt; field and navigate to the folder where you will keep compressed files.&lt;br /&gt;7. Choose whether you will be limiting temporary files directory size or not and click &lt;span style="font-weight: bold;"&gt;OK&lt;/span&gt;. &lt;a href="http://i252.photobucket.com/albums/hh30/complexxL9/httpcompression.jpg"&gt;(screenshot)&lt;/a&gt;&lt;br /&gt;8. Go to &lt;span style="font-weight: bold;"&gt;Web Services Extension&lt;/span&gt; node and click &lt;span style="font-weight: bold;"&gt;Add new Web service extension..&lt;/span&gt;&lt;br /&gt;9. Enter &lt;span style="font-weight: bold;"&gt;Extension name&lt;/span&gt; for example "&lt;span style="font-style: italic;"&gt;HTTP Compression&lt;/span&gt;" &lt;span style="font-weight: bold;"&gt;&lt;/span&gt;click &lt;span style="font-weight: bold;"&gt;Add&lt;/span&gt; then in the &lt;span style="font-weight: bold;"&gt;Add file&lt;/span&gt; window click &lt;span style="font-weight: bold;"&gt;Browse&lt;/span&gt; and navigate to "C:\windows\system32\intetsrv" find &lt;span style="font-style: italic; font-weight: bold;"&gt;gzip.dll&lt;/span&gt; select it and click &lt;span style="font-weight: bold;"&gt;Open&lt;/span&gt;. Click &lt;span style="font-weight: bold;"&gt;OK&lt;/span&gt; and &lt;span style="font-weight: bold;"&gt;OK&lt;/span&gt; again.&lt;br /&gt;10. In the &lt;span style="font-weight: bold;"&gt;Web Service Extension&lt;/span&gt; list select "HTTP Compression" you've just added change its status to &lt;span style="font-weight: bold;"&gt;Allowed&lt;/span&gt; by clicking &lt;span style="font-weight: bold;"&gt;Allow&lt;/span&gt; button found on the left. &lt;a href="http://i252.photobucket.com/albums/hh30/complexxL9/gzipdll.jpg"&gt;(screenshot)&lt;/a&gt;&lt;br /&gt;11. In &lt;span style="font-weight: bold;"&gt;IIS Manager&lt;/span&gt; right click your server node and choose &lt;span style="font-weight: bold;"&gt;Properties.&lt;/span&gt;&lt;br /&gt;12. Check &lt;span style="font-weight: bold;"&gt;Enable Direct Metabase Edit&lt;/span&gt; and click &lt;span style="font-weight: bold;"&gt;OK&lt;/span&gt;. &lt;a href="http://i252.photobucket.com/albums/hh30/complexxL9/enabledirectmetabaseedit.jpg"&gt;(screenshot)&lt;/a&gt;&lt;br /&gt;13. Open Explorer and navigate to "&lt;span id="intelliTxt"&gt;&lt;span id="_ctl0_ArticleText"&gt;C:\Windows\System32\inetsrv"&lt;/span&gt;&lt;/span&gt; find &lt;span style="font-weight: bold; font-style: italic;"&gt;Metabase.xml&lt;/span&gt; file and before modifying it make a backup copy.&lt;br /&gt;14. Open &lt;span style="font-weight: bold; font-style: italic;"&gt;Metabase.xml&lt;/span&gt; in text editor and find string:&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Location ="/LM/W3SVC/Filters/Compression/gzip"&lt;/span&gt;&lt;br /&gt;15. Config values to suit your needs:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;HcDoDynamicCompression="TRUE"&lt;/span&gt; (to enable compression of dynamic content)&lt;br /&gt;      &lt;span style="font-style: italic;"&gt;HcDoOnDemandCompression="TRUE"&lt;/span&gt; (to enable compression of static files that are not compressed yet)&lt;br /&gt;      &lt;span style="font-style: italic;"&gt;HcDoStaticCompression="TRUE"&lt;/span&gt; (to enable compression of static content)&lt;br /&gt;      &lt;span style="font-style: italic;"&gt;HcDynamicCompressionLevel="10"&lt;/span&gt; (level of dynamic compression. Higher level equals better compression rate, but requires more CPU resources)&lt;br /&gt;      &lt;span style="font-style: italic;"&gt;HcFileExtensions="htm &lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;            html&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;            txt"&lt;/span&gt;&lt;br /&gt;   (file types to include in static compression, one per line)&lt;br /&gt;&lt;span style="font-style: italic;"&gt;HcOnDemandCompLevel="10" &lt;/span&gt;(level of OnDemandCompression)&lt;br /&gt;&lt;span style="font-style: italic;"&gt;        HcPriority="1"&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;        HcScriptFileExtensions="asp&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;            dll&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;            aspx&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;            cs&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;            exe&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;            pdf"&lt;/span&gt;&lt;br /&gt;    (file types to include in dynamic compression, one per line)&lt;br /&gt;&lt;br /&gt;16. Save and close &lt;span style="font-weight: bold; font-style: italic;"&gt;Metabase.xml&lt;/span&gt; and restart IIS server by right clicking your server node in &lt;span style="font-weight: bold;"&gt;IIS Manager&lt;/span&gt; and choosing &lt;span style="font-weight: bold;"&gt;All Tasks&lt;/span&gt;-&gt;&lt;span style="font-weight: bold;"&gt;Restart IIS...&lt;/span&gt; &lt;a href="http://i252.photobucket.com/albums/hh30/complexxL9/restartIIS.jpg"&gt;(screenshot)&lt;/a&gt;&lt;br /&gt;17. Check if compression is working&lt;br /&gt;go to &lt;a href="http://www.seoconsultants.com/tools/compression.asp"&gt;http://www.seoconsultants.com/tools/compression.asp&lt;/a&gt; enter your URL and press the &lt;span style="font-weight: bold;"&gt;Check Compression&lt;/span&gt; button. If your site is compressed you'll see &lt;span style="font-weight: bold;"&gt;Compression status&lt;/span&gt;: &lt;span style="font-weight: bold;"&gt;Compressed (gzip)&lt;/span&gt;. &lt;a href="http://i252.photobucket.com/albums/hh30/complexxL9/gzipcompressionenabled.jpg"&gt;(screenshot)&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Now you might want to disable compression for some sites, to do this you need to run the following command in the &lt;span style="font-weight: bold;"&gt;command prompt&lt;/span&gt;:&lt;br /&gt;&lt;span style="font-style: italic;"&gt;&lt;br /&gt;adsutil set w3svc/1690634459/DoDynamicDompression false&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Or if you want to disable compression on specific folder or file in the site you would type this:&lt;br /&gt;&lt;span style="font-style: italic;"&gt;&lt;br /&gt;adsutil set w3svc/1690634459/root/forum/DoDynamicCompression false&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Replace 1690634459 with the ID of your website which can be found in&lt;span style="font-weight: bold;"&gt; IIS Manager&lt;/span&gt;, &lt;span style="font-weight: bold;"&gt;Web Sites&lt;/span&gt; node "&lt;span style="font-weight: bold;"&gt;Identifier&lt;/span&gt;" column.&lt;br /&gt;If you want to disable Static Compression for specific site replace "DoDynamicCompression" with "DoStaticCompression".&lt;br /&gt;&lt;br /&gt;If you want disable compression for All sites but one, you can do this in the following way:&lt;br /&gt;First disable compression for all sites by running command in the command prompt:&lt;br /&gt;&lt;span style="font-style: italic;"&gt;adsutil set w3svc/filters/compression/parameters/HcDoStaticCompression false&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Then enable compression for one or multiple sites of your choice:&lt;br /&gt;&lt;span style="font-style: italic;"&gt;adsutil set w3svc/&lt;/span&gt;1690634459&lt;span style="font-style: italic;"&gt;/DoStaticCompression true&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Links:&lt;br /&gt;&lt;a href="http://www.dotnetjunkies.com/Article/16267D49-4C6E-4063-AB12-853761D31E66.dcik"&gt;http://www.dotnetjunkies.com/Article/16267D49-4C6E-4063-AB12-853761D31E66.dcik&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/502ef631-3695-4616-b268-cbe7cf1351ce.mspx?mfr=true"&gt;http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/502ef631-3695-4616-b268-cbe7cf1351ce.mspx?mfr=true&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-4553476926720582739?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/4553476926720582739/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=4553476926720582739&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/4553476926720582739'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/4553476926720582739'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2008/12/enabling-http-compression-in-iis-60.html' title='Enabling HTTP Compression in IIS 6.0'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-6256938943701479615</id><published>2008-12-14T13:52:00.004+02:00</published><updated>2008-12-20T15:38:47.967+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='icons'/><category scheme='http://www.blogger.com/atom/ns#' term='vista'/><category scheme='http://www.blogger.com/atom/ns#' term='desktop'/><title type='text'>Windows Vista not displaying desktop icons</title><content type='html'>When Windows boots there is no icons on desktop until you right click desktop and choose &lt;span style="font-weight: bold;"&gt;View&lt;/span&gt;-&gt;&lt;span style="font-weight: bold;"&gt;Show Desktop Icons&lt;/span&gt;. You have to do this every time your computer reboots.&lt;br /&gt;&lt;br /&gt;It seems pretty illogical, but to fix this try changing you &lt;span style="font-weight: bold;"&gt;Power Options&lt;/span&gt; between different power plans and see if it helps.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-6256938943701479615?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/6256938943701479615/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=6256938943701479615&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/6256938943701479615'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/6256938943701479615'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2008/12/windows-vista-not-displaying-desktop.html' title='Windows Vista not displaying desktop icons'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-237469920378453119</id><published>2008-12-14T04:22:00.004+02:00</published><updated>2008-12-14T04:48:05.052+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='hibernate'/><category scheme='http://www.blogger.com/atom/ns#' term='vista'/><category scheme='http://www.blogger.com/atom/ns#' term='cmd'/><title type='text'>How to disable Hibernate on Windows Vista</title><content type='html'>For some space saving on your hard drive or maybe some other reason, you might want to disable hibernate functionality on your PC.&lt;br /&gt;To do this:&lt;br /&gt;&lt;br /&gt;Open &lt;span style="font-weight: bold;"&gt;cmd&lt;/span&gt; with administrator privileges (navigate to C:\windows\system32\ find &lt;span style="font-style: italic;"&gt;cmd.exe&lt;/span&gt;, right click it and choose &lt;span style="font-weight: bold;"&gt;Run as Administrator&lt;/span&gt;)&lt;br /&gt;Enter command "powercfg -h off" and hit &lt;span style="font-weight: bold;"&gt;Enter &lt;/span&gt;&lt;a href="http://i252.photobucket.com/albums/hh30/complexxL9/disableHibernate.jpg"&gt;(screenshot)&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;Links:&lt;a href="http://www.windowsnetworking.com/kbase/WindowsTips/WindowsVista/AdminTips/Misc/Disablehibernation.html"&gt;&lt;br /&gt;http://www.windowsnetworking.com/kbase/WindowsTips/WindowsVista/AdminTips/Misc/Disablehibernation.html&lt;/a&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-237469920378453119?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/237469920378453119/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=237469920378453119&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/237469920378453119'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/237469920378453119'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2008/12/how-to-disable-hibernate-on-windows.html' title='How to disable Hibernate on Windows Vista'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-1634227733093270356</id><published>2008-12-09T10:14:00.007+02:00</published><updated>2008-12-09T10:28:57.815+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SQL Server 2005'/><category scheme='http://www.blogger.com/atom/ns#' term='downloads'/><category scheme='http://www.blogger.com/atom/ns#' term='.Net Framework 2.0'/><title type='text'>Can not open SQL Server Management Studio</title><content type='html'>When trying to open SQL Server Management Studio for SQL Server 2005, I get error message:&lt;br /&gt;&lt;span style="font-style:italic;"&gt;Package 'Microsoft SQL Management Studio Package' failed to load.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Fixed this by reinstalling .Net Framework 2.0.&lt;br /&gt;&lt;br /&gt;Downloads:&lt;br /&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en"&gt;.Net Framework 2.0&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Links:&lt;br /&gt;&lt;a href="http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=4224101&amp;SiteID=1&amp;mode=1"&gt;http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=4224101&amp;SiteID=1&amp;mode=1&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-1634227733093270356?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/1634227733093270356/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=1634227733093270356&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/1634227733093270356'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/1634227733093270356'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2008/12/can-not-open-sql-server-management.html' title='Can not open SQL Server Management Studio'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-8562306063654451376</id><published>2008-11-26T15:23:00.010+02:00</published><updated>2008-12-07T14:55:36.369+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='exchange 2007'/><category scheme='http://www.blogger.com/atom/ns#' term='powershell'/><category scheme='http://www.blogger.com/atom/ns#' term='link'/><title type='text'>Removing last Exchange 2007 server from your organization</title><content type='html'>Had to uninstall exchange serve from SBS 2008, as it was the last Exchange server in organization I encountered number of problems trying to uninstall it.&lt;br /&gt;&lt;br /&gt;One of those problems are that you cannot uninstall Exchange server while it contains &lt;span style="font-weight: bold;"&gt;Public Folder Replicas&lt;/span&gt; and you can't move them to another server because there is none.&lt;br /&gt;&lt;br /&gt;Browsing the web I was finally able to solve this problem, for full artcile just follow the link and read the comments.&lt;br /&gt;Here's summary:&lt;br /&gt;&lt;br /&gt;1. You'll have to keep at least one mailbox with administrator rights.&lt;br /&gt;2. Open Power-Shell and enter the following commands:&lt;br /&gt;&lt;br /&gt;Get-PublicFolder -Server &lt;your&gt;  "\" -Recurse -ResultSize:Unlimited | Remove-PublicFolder -Server &lt;your&gt;  -Recurse -ErrorAction:SilentlyContinue&lt;br /&gt;&lt;br /&gt;&lt;/your&gt;&lt;/your&gt;Get-PublicFolder -Server &lt;your&gt;  "\Non_Ipm_Subtree" -Recurse -ResultSize:Unlimited | Remove-PublicFolder -Server &lt;your&gt;  -Recurse -ErrorAction:SilentlyContinue&lt;br /&gt;&lt;br /&gt;&lt;/your&gt;&lt;/your&gt;3. Remove all mailboxes on your server.&lt;br /&gt;4. Remove Exchange 2007 server from "Programs and Features" in control panel.&lt;br /&gt;&lt;p&gt;&lt;/p&gt;Links:&lt;br /&gt;&lt;a href="http://blogs.technet.com/asiasupp/archive/2007/06/26/public-folder-replicas-prevent-uninstall-exchange-2007.aspx"&gt;http://blogs.technet.com/asiasupp/archive/2007/06/26/public-folder-replicas-prevent-uninstall-exchange-2007.aspx&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-8562306063654451376?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/8562306063654451376/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=8562306063654451376&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/8562306063654451376'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/8562306063654451376'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2008/11/removing-last-exchange-2007-server-from.html' title='Removing last Exchange 2007 server from your organization'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-2684233829439265347</id><published>2008-11-26T14:34:00.004+02:00</published><updated>2008-11-26T15:35:03.925+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='administrator'/><category scheme='http://www.blogger.com/atom/ns#' term='permissions'/><category scheme='http://www.blogger.com/atom/ns#' term='account'/><title type='text'>Cannot access folder "Access Denied"</title><content type='html'>In cases when you need to access folder, but get "Access Denied" message even when you're logged on as an Administrator, you'll have to take ownership of that folder.&lt;br /&gt;To do this in Windows Server 2003 open folder &lt;span style="font-weight: bold;"&gt;Properties&lt;/span&gt;, select &lt;span style="font-weight: bold;"&gt;Security&lt;/span&gt; tab and click on &lt;span style="font-weight: bold;"&gt;Advanced&lt;/span&gt; button, then hop on &lt;span style="font-weight: bold;"&gt;Owner&lt;/span&gt; tab. Now select user which will be the new owner of this folder and click &lt;span style="font-weight: bold;"&gt;OK&lt;/span&gt; (&lt;a href="http://i252.photobucket.com/albums/hh30/complexxL9/takeownership.jpg"&gt;screenshot&lt;/a&gt;).&lt;br /&gt;&lt;br /&gt;Links:&lt;br /&gt;&lt;a href="http://www.lockergnome.com/windows/2005/10/04/take-ownership-of-a-folder-in-server-2003/"&gt;http://www.lockergnome.com/windows/2005/10/04/take-ownership-of-a-folder-in-server-2003/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-2684233829439265347?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/2684233829439265347/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=2684233829439265347&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/2684233829439265347'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/2684233829439265347'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2008/11/cannot-access-folder-access-denied.html' title='Cannot access folder &quot;Access Denied&quot;'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-7448920143723399728</id><published>2008-10-28T22:10:00.004+02:00</published><updated>2008-10-28T22:30:47.140+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='permissions'/><category scheme='http://www.blogger.com/atom/ns#' term='sharing'/><category scheme='http://www.blogger.com/atom/ns#' term='downloads'/><title type='text'>When viewing shared folder contents users should be able to see only those subfolders they have access to</title><content type='html'>When you have shares for multiple users, each of whom have permissions to different subfolders in that share, you might want to filter the view that the users would only see those contents which they can access.&lt;br /&gt;&lt;br /&gt;To achieve this on &lt;span style="font-weight: bold;"&gt;Windows Server 2003&lt;/span&gt; you'll need to install &lt;a href="http://www.microsoft.com/windowsserver2003/techinfo/overview/abe.mspx"&gt;&lt;span style="font-weight: bold;"&gt;Access-based Enumeration&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;When installed right click on the shared folder, go to the &lt;span style="font-weight: bold;"&gt;Access-based Enumeration&lt;/span&gt; tab and check the &lt;span style="font-weight: bold;"&gt;Enable access-based enumeration on this shared folder&lt;/span&gt; checkbox &lt;a href="http://i252.photobucket.com/albums/hh30/complexxL9/abe.jpg"&gt;(screenshot)&lt;/a&gt;.&lt;br /&gt;Click &lt;span style="font-weight: bold;"&gt;Ok&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;Downloads:&lt;br /&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=04A563D9-78D9-4342-A485-B030AC442084&amp;amp;displaylang=en"&gt;Windows Server 2003 Access-based Enumeration&lt;/a&gt;&lt;br /&gt;&lt;a href="http://download.microsoft.com/download/4/9/8/498EEEEF-97B0-450E-8E56-26105D4B092E/Accessbasedenum.doc"&gt;Documentation&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-7448920143723399728?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/7448920143723399728/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=7448920143723399728&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/7448920143723399728'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/7448920143723399728'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2008/10/when-viewing-shared-folder-contents.html' title='When viewing shared folder contents users should be able to see only those subfolders they have access to'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-9088032731072330728</id><published>2008-10-28T21:18:00.005+02:00</published><updated>2008-12-07T19:27:46.640+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='ntfs'/><category scheme='http://www.blogger.com/atom/ns#' term='permissions'/><category scheme='http://www.blogger.com/atom/ns#' term='sharing'/><title type='text'>Shares and subfolders permissions</title><content type='html'>Task:&lt;br /&gt;Share a folder and make some of its subfolders available to one user group and not available to another user group which also has share permissions on the root folder.&lt;br /&gt;&lt;br /&gt;The difficulty in this was that if I share "&lt;span style="font-style: italic;"&gt;Folder 1&lt;/span&gt;" for "&lt;span style="font-style: italic;"&gt;user group 1&lt;/span&gt;" with full permissions, then this "&lt;span style="font-style: italic;"&gt;user group 1&lt;/span&gt;" is able to access all of "&lt;span style="font-style: italic;"&gt;Folder 1&lt;/span&gt;" subfolders. It is because "&lt;span style="font-style: italic;"&gt;Folder 1&lt;/span&gt;" inherits the "&lt;span style="font-weight: bold;"&gt;Security&lt;/span&gt;" permissions from it's root (in my case it was "&lt;span style="font-weight: bold;"&gt;Users (DOMAIN\Users)&lt;/span&gt;" with &lt;span style="font-weight: bold;"&gt;Read &amp;amp; Execute&lt;/span&gt;, &lt;span style="font-weight: bold;"&gt;List Folder Contents&lt;/span&gt; and &lt;span style="font-weight: bold;"&gt;Read&lt;/span&gt; permissions on "&lt;span style="font-weight: bold;"&gt;D:&lt;/span&gt;").&lt;br /&gt;You need to remove these inheritable permissions.&lt;br /&gt;&lt;br /&gt;To do this:&lt;br /&gt;Right click the shared folder "&lt;span style="font-style: italic;"&gt;Folder 1&lt;/span&gt;" and click on &lt;span style="font-weight: bold;"&gt;Properties&lt;/span&gt;.&lt;br /&gt;Go to &lt;span style="font-weight: bold;"&gt;Security&lt;/span&gt; tab and click on &lt;span style="font-weight: bold;"&gt;Advanced&lt;/span&gt; button.&lt;br /&gt;Clear the &lt;span style="font-weight: bold;"&gt;Allow inheritable permissions from the parent to propagate to this object&lt;/span&gt;... checkbox &lt;a href="http://i252.photobucket.com/albums/hh30/complexxL9/inheritablepermissions.jpg"&gt;(screenshot)&lt;/a&gt;.&lt;br /&gt;At the prompt click &lt;span style="font-weight: bold;"&gt;Remove&lt;/span&gt; to remove inherited permissions &lt;a href="http://i252.photobucket.com/albums/hh30/complexxL9/removeinheritedperm.jpg"&gt;(screenshot)&lt;/a&gt; and then specify your own.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-9088032731072330728?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/9088032731072330728/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=9088032731072330728&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/9088032731072330728'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/9088032731072330728'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2008/10/shares-and-subfolders-permissions.html' title='Shares and subfolders permissions'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-7796865688481858662</id><published>2008-10-25T04:03:00.006+03:00</published><updated>2008-11-26T15:42:41.018+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='credentials'/><category scheme='http://www.blogger.com/atom/ns#' term='RDP'/><category scheme='http://www.blogger.com/atom/ns#' term='gpedit'/><title type='text'>Remote Desktop saved Credentials does not work</title><content type='html'>If you are using &lt;span style="font-weight: bold;"&gt;Remote Desktop&lt;/span&gt; you should be aware that you can save your credentials to be able to connect without entering user name and password each time. But for some reason sometimes it does not work.&lt;br /&gt;You try to connect with you saved credentials and a logon screen pops up with the message at the bottom that "&lt;span style="font-style: italic;"&gt;The logon attempt failed&lt;/span&gt;". &lt;a href="http://i252.photobucket.com/albums/hh30/complexxL9/credwontwork.jpg"&gt;(screenshot)&lt;br /&gt;&lt;/a&gt;This is because you entered wrong credentials first time and they were saved, so you need to delete your credentials, enter them again and choose to remember them.&lt;br /&gt;However I was not able to do that, as many times as I tried to delete my credentials and then enter correct ones and save them, when reloging I always got "&lt;span style="font-style: italic;"&gt;The logon attempt failed&lt;/span&gt;".&lt;br /&gt;So I had to use hostname instead of IP address, when connecting, to be able to save my correct credentials and then successfully relogon without having to enter my password.&lt;br /&gt;&lt;br /&gt;Links:&lt;a href="http://blogs.msdn.com/ts/archive/2007/01/22/vista-remote-desktop-connection-authentication-faq.aspx#_Saved_credentials_do"&gt;&lt;br /&gt;http://blogs.msdn.com/ts/archive/2007/01/22/vista-remote-desktop-connection-authentication-faq.aspx#_Saved_credentials_do&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;You might want to try this if above information does not solve your problem:&lt;br /&gt;&lt;a href="http://alinconstantin.blogspot.com/2007/08/terminal-service-client-not-using-saved.html"&gt;http://alinconstantin.blogspot.com/2007/08/terminal-service-client-not-using-saved.html&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-7796865688481858662?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/7796865688481858662/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=7796865688481858662&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/7796865688481858662'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/7796865688481858662'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2008/10/remote-desktop-saved-credentials-does.html' title='Remote Desktop saved Credentials does not work'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-2118384205025391714</id><published>2008-10-25T03:07:00.016+03:00</published><updated>2009-02-11T14:08:01.637+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='cmd'/><category scheme='http://www.blogger.com/atom/ns#' term='hdd'/><category scheme='http://www.blogger.com/atom/ns#' term='boot'/><title type='text'>Disk check running everytime Windows starts</title><content type='html'>Sometimes you might face a situation when disk check is running at computer boot up and it hangs (probably due to HDD problems) and can not complete successfully, so after you restart your computer the disk check is being run again, so you need to manually cancel it every time to be able to boot into Windows.&lt;br /&gt;In this situation you might want to disable auto disk checking at booting.&lt;br /&gt;&lt;br /&gt;To disable disk checking every time you turn on your PC:&lt;br /&gt;Open command promt (&lt;span style="font-weight: bold;"&gt;win+R&lt;/span&gt;, type &lt;span style="font-weight: bold; font-style: italic;"&gt;cmd&lt;/span&gt; and hit &lt;span style="font-weight: bold;"&gt;Enter)&lt;/span&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;&lt;/span&gt;&lt;br /&gt;enter command &lt;div style="width:90px; background:#f0f2f5; border:solid 1px #a3a3a3;"&gt;&lt;span style="font-weight: bold;"&gt;chkntfs /X C:&lt;/span&gt;&lt;/div&gt; &lt;a href="http://i252.photobucket.com/albums/hh30/complexxL9/cancelchkntfs.jpg"&gt;(screenshot)&lt;/a&gt; where &lt;span style="font-weight: bold;"&gt;C:&lt;/span&gt; is the letter of the disk you're having problem with.&lt;br /&gt;&lt;br /&gt;More detailed explanation and causes for this behavior might be found here:&lt;br /&gt;&lt;a href="http://www.pcadvisor.co.uk/forums/index.cfm?action=showthread&amp;amp;threadid=231103&amp;amp;forumid=1"&gt;http://www.pcadvisor.co.uk/forums/index.cfm?action=showthread&amp;amp;threadid=231103&amp;amp;forumid=1&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-2118384205025391714?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/2118384205025391714/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=2118384205025391714&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/2118384205025391714'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/2118384205025391714'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2008/10/disk-check-running-everytime-windows.html' title='Disk check running everytime Windows starts'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-7283077491451432554</id><published>2008-10-25T01:22:00.003+03:00</published><updated>2008-10-25T03:25:39.223+03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='exchange 2007'/><category scheme='http://www.blogger.com/atom/ns#' term='owa'/><category scheme='http://www.blogger.com/atom/ns#' term='authentication'/><title type='text'>OWA login requires "domain\username". How to login wit "username" only?</title><content type='html'>When logging on to my exchange 2007 server OWA, I need to enter "&lt;span style="font-style: italic;"&gt;domain\username&lt;/span&gt;", I want to be able to log in by using "&lt;span style="font-style: italic;"&gt;username&lt;/span&gt;" alone.&lt;br /&gt;So here is how I did that:&lt;br /&gt;Open &lt;span style="font-weight: bold;"&gt;Exchange Management Console&lt;/span&gt;, expand &lt;span style="font-weight: bold;"&gt;Server Configuration&lt;/span&gt; and find &lt;span style="font-weight: bold;"&gt;Outlook Web Access&lt;/span&gt; tab in &lt;span style="font-weight: bold;"&gt;Client Access&lt;/span&gt;. Double click "&lt;span style="font-weight: bold;"&gt;OWA (Default Web Site)&lt;/span&gt;" and go to &lt;span style="font-weight: bold;"&gt;Authentication&lt;/span&gt; tab. Uncheck "&lt;span style="font-weight: bold;"&gt;Integrated Windows authentication&lt;/span&gt;" box &lt;a href="http://i252.photobucket.com/albums/hh30/complexxL9/owadisableintegratedauth.jpg"&gt;(screenshot)&lt;/a&gt; and click &lt;span style="font-weight: bold;"&gt;OK&lt;/span&gt;.&lt;br /&gt;Open your webmail and try to log in without specifying a "domain\" in your &lt;span style="font-style: italic;"&gt;User Name&lt;/span&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-7283077491451432554?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/7283077491451432554/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=7283077491451432554&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/7283077491451432554'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/7283077491451432554'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2008/10/owa-login-requires-domainusername-how.html' title='OWA login requires &quot;domain\username&quot;. How to login wit &quot;username&quot; only?'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-1939868610766105551</id><published>2008-10-24T09:29:00.004+03:00</published><updated>2008-10-25T03:23:53.448+03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='exchange 2007'/><category scheme='http://www.blogger.com/atom/ns#' term='activesync'/><category scheme='http://www.blogger.com/atom/ns#' term='authentication'/><title type='text'>Activesync error 0x85010001</title><content type='html'>User was getting this error code on his mobile device when trying to synchronize.&lt;br /&gt;Temporary solution achieved by disabling &lt;span style="font-weight: bold;"&gt;Windows Authentication&lt;/span&gt; &lt;a href="http://i252.photobucket.com/albums/hh30/complexxL9/activesyncerror0x85010001.jpg"&gt;(screenshot)&lt;/a&gt; for &lt;span style="font-weight: bold;"&gt;Microsoft-Server-ActiveSync&lt;/span&gt; in &lt;span style="font-weight: bold;"&gt;IIS Manager&lt;/span&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-1939868610766105551?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/1939868610766105551/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=1939868610766105551&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/1939868610766105551'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/1939868610766105551'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2008/10/activesync-error-0x85010001.html' title='Activesync error 0x85010001'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-8782774013328378684</id><published>2008-10-21T08:59:00.009+03:00</published><updated>2008-11-26T15:45:46.852+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='network'/><category scheme='http://www.blogger.com/atom/ns#' term='registry'/><category scheme='http://www.blogger.com/atom/ns#' term='wireless'/><title type='text'>No "Wireless Networks" tab in "Wireless Network Connections Properties"?</title><content type='html'>When you open your &lt;span style="font-weight: bold;"&gt;"Wireless Network Connection&lt;/span&gt;&lt;span style="font-weight: bold;"&gt; Properties"&lt;/span&gt; you can not find &lt;span style="font-weight: bold;"&gt;"Wireless Networks"&lt;/span&gt; tab. When &lt;span style="font-weight: bold;"&gt;Viewing Available Wireless Networks&lt;/span&gt; Windows tells you that you need to start &lt;span style="font-weight: bold;"&gt;"Wireless Zero Configuration"&lt;/span&gt; (WZC) service .&lt;br /&gt;But when you try to do that you get an error:&lt;br /&gt;&lt;span style="font-weight: bold;font-size:130%;" &gt;&lt;span style="font-style: italic;"&gt;Could not start the Wireless Zero Configuration service on Local Computer. Error 1068: The dependency service or group failed to start.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;To solve this problem you need to modify registry.&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Start&lt;/span&gt;-&gt;&lt;span style="font-weight: bold;"&gt;Run&lt;/span&gt;-&gt;type "&lt;span style="font-weight: bold;"&gt;Regedit&lt;/span&gt;" and hit &lt;span style="font-weight: bold;"&gt;Enter&lt;/span&gt;.&lt;br /&gt;Navigate to &lt;span style="font-style: italic; font-weight: bold;"&gt;HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Ndisuio&lt;/span&gt;&lt;br /&gt;then right click on &lt;span style="font-weight: bold;"&gt;"Start"&lt;/span&gt; DWORD in the right window and choose &lt;span style="font-weight: bold;"&gt;Modify&lt;/span&gt;. Change &lt;span style="font-weight: bold;"&gt;"Data Value"&lt;/span&gt; to &lt;span style="font-weight: bold;"&gt;1&lt;/span&gt;, &lt;span style="font-weight: bold;"&gt;2&lt;/span&gt; or &lt;span style="font-weight: bold;"&gt;3&lt;/span&gt;.&lt;br /&gt;Restart your computer and check if you can start &lt;span style="font-weight: bold;"&gt;WZC&lt;/span&gt; service and configure your wireless connection.&lt;br /&gt;&lt;br /&gt;Links:&lt;br /&gt;&lt;a href="http://predicatet.blogspot.com/2008/03/could-not-start-wireless-zero.html"&gt;http://predicatet.blogspot.com/2008/03/could-not-start-wireless-zero.html&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-8782774013328378684?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/8782774013328378684/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=8782774013328378684&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/8782774013328378684'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/8782774013328378684'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2008/10/no-wireless-configuration-options-in.html' title='No &quot;Wireless Networks&quot; tab in &quot;Wireless Network Connections Properties&quot;?'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-3838056986876584384</id><published>2008-10-18T21:57:00.006+03:00</published><updated>2008-10-25T03:31:36.549+03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='administrator'/><category scheme='http://www.blogger.com/atom/ns#' term='shutdown'/><category scheme='http://www.blogger.com/atom/ns#' term='schedule'/><title type='text'>Schedule shutdown or restart for Windows XP via cmd</title><content type='html'>Sometimes you may wish to schedule your PC to turn off automatically after certain amount of time. For example when you're watching a movie in the late evening and don't know if you won't fall asleep before the movie ends :)&lt;br /&gt;&lt;br /&gt;You can schedule your PC to turn off in the following way:&lt;br /&gt;&lt;br /&gt;Start-&gt;Run&lt;br /&gt;type: "&lt;span style="font-weight: bold;"&gt;shutdown -s -t xxxx&lt;/span&gt;" (for shutdown)and hit &lt;span style="font-weight: bold;"&gt;Enter&lt;/span&gt;&lt;br /&gt;type: "&lt;span style="font-weight: bold;"&gt;shutdown -r -t xxxx&lt;/span&gt;" (for reboot)and hit &lt;span style="font-weight: bold;"&gt;Enter&lt;/span&gt;&lt;br /&gt;where &lt;span style="font-weight: bold;"&gt;xxxx&lt;/span&gt; is amount of time in seconds.&lt;br /&gt;&lt;br /&gt;If for some reason you changed your mind and want to cancel the scheduled shut down just run command "&lt;span style="font-weight: bold;"&gt;shutdown -a&lt;/span&gt;" to abort.&lt;br /&gt;&lt;br /&gt;Example:&lt;br /&gt;if you would like to shut down your computer in one hour, you would use this command:&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;shutdown -s -t 3600&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-3838056986876584384?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/3838056986876584384/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=3838056986876584384&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/3838056986876584384'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/3838056986876584384'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2008/10/schedule-shutdown-or-restart-for.html' title='Schedule shutdown or restart for Windows XP via cmd'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-7970082406543121121</id><published>2008-10-18T20:32:00.007+03:00</published><updated>2008-10-25T03:32:05.245+03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='vista'/><category scheme='http://www.blogger.com/atom/ns#' term='account'/><category scheme='http://www.blogger.com/atom/ns#' term='UAC'/><title type='text'>DIsable User Account Control (UAC) in Windows Vista</title><content type='html'>UAC prompts are probably the most annoying thing for those who just upgraded their OS to Windows Vista.&lt;br /&gt;Here is one method of disabling it.&lt;br /&gt;&lt;br /&gt;Start-&gt;Run (or win+R).&lt;br /&gt;Type &lt;span style="font-weight: bold;"&gt;msconfig&lt;/span&gt; and hit &lt;span style="font-weight: bold;"&gt;Enter&lt;/span&gt;.&lt;br /&gt;Open &lt;span style="font-weight: bold;"&gt;Tools&lt;/span&gt; tab, scroll down and select &lt;span style="font-weight: bold;"&gt;Disable User Account Control (requires reboot)&lt;/span&gt;.&lt;br /&gt;Hit &lt;span style="font-weight: bold;"&gt;Launch&lt;/span&gt; and restart computer when finished.&lt;br /&gt;&lt;br /&gt;More methods:&lt;br /&gt;&lt;a href="http://www.petri.co.il/disable_uac_in_windows_vista.htm"&gt;http://www.petri.co.il/disable_uac_in_windows_vista.htm&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-7970082406543121121?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/7970082406543121121/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=7970082406543121121&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/7970082406543121121'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/7970082406543121121'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2008/10/disable-user-account-control-uac-in.html' title='DIsable User Account Control (UAC) in Windows Vista'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-74164365173473727</id><published>2008-10-15T23:48:00.012+03:00</published><updated>2008-11-26T15:46:36.898+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='administrator'/><category scheme='http://www.blogger.com/atom/ns#' term='vista'/><category scheme='http://www.blogger.com/atom/ns#' term='account'/><title type='text'>Login into Windows Vista Home as Administrator by default</title><content type='html'>Getting frustrated by prompts to run certain programs as Administrator even when his user account is an Administrator level, my roommate today asked me if he could login to his Vista Home laptop as Administrator by default.&lt;br /&gt;&lt;br /&gt;I could not find &lt;span style="font-weight: bold;"&gt;Local Users and Groups&lt;/span&gt; in &lt;span style="font-weight: bold;"&gt;Computer Management&lt;/span&gt;. It appears Home edition of Windows Vista does not allow you to manage users in this way.&lt;br /&gt;&lt;br /&gt;So if you want to login as Administrator by default without having to choose user at welcome screen, you need to enable Administrator account which is disabled by default and disable any other accounts currently on the computer.&lt;br /&gt;&lt;br /&gt;This can be done via CMD.&lt;br /&gt;1. Press win+r (or alternatively go &lt;span style="font-weight: bold;"&gt;Start&lt;/span&gt;-&gt;&lt;span style="font-weight: bold;"&gt;Run...&lt;/span&gt;).&lt;br /&gt;2. Type &lt;span style="font-weight: bold;"&gt;cmd&lt;/span&gt; and press enter.&lt;br /&gt;3. In the command window enter command:&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;net user administrator /active:yes&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;You have enabled Administrator account. Log off and login with the Administrator account. Now you need to disable or delete other users.&lt;br /&gt;&lt;br /&gt;To disable user:&lt;br /&gt;Repeat steps 1 and 2 above.&lt;br /&gt;enter command:&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;net user &lt;span style="font-style: italic;"&gt;username&lt;/span&gt; /active:no&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;To delete user:&lt;br /&gt;Go to &lt;span style="font-weight: bold;"&gt;Control Panel&lt;/span&gt;-&gt;&lt;span style="font-weight: bold;"&gt;User Accounts&lt;/span&gt;.&lt;br /&gt;Choose &lt;span style="font-weight: bold;"&gt;Manage Other Accounts&lt;/span&gt;.&lt;br /&gt;Choose the account you want to delete and then click on &lt;span style="font-weight: bold;"&gt;Delete The Account&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;Restart the computer, you should get logged in as an Administrator without any prompts.&lt;br /&gt;&lt;br /&gt;Links:&lt;br /&gt;&lt;a href="http://en.kioskea.net/faq/sujet-300-access-the-hidden-administrator-account-in-windows-vista"&gt;http://en.kioskea.net/faq/sujet-300-access-the-hidden-administrator-account-in-windows-vista&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-74164365173473727?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/74164365173473727/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=74164365173473727&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/74164365173473727'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/74164365173473727'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2008/10/login-into-windows-vista-home-as.html' title='Login into Windows Vista Home as Administrator by default'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-7237167912494190390</id><published>2008-10-15T21:57:00.009+03:00</published><updated>2008-11-26T15:47:41.871+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='installation'/><category scheme='http://www.blogger.com/atom/ns#' term='operating system'/><category scheme='http://www.blogger.com/atom/ns#' term='media'/><title type='text'>Problem installing Windows Server 2003 / Windows XP</title><content type='html'>Encountered a problem during install of windows server 2003. I mentioned in the title Windows XP also because when I googled for solution (which was rather simple) to this problem I've found that people had exact same problem installing windows XP.&lt;br /&gt;After I've chosen partition to install to and setup begun copying files to hard disk I've got an error &lt;span style="font-weight: bold;"&gt;"setup cannot copy the file: msdart.dll"&lt;/span&gt; (I guess it could be any file)&lt;br /&gt;pressed enter to Retry, temporary skipped/copied this file, but then I got the same error for file &lt;span style="font-style: italic;"&gt;driver.cab&lt;/span&gt;.&lt;br /&gt;The cause of this turns out to be as simple as unclean CD.&lt;br /&gt;Opened my cd-rom, cleaned the CD, put it back in and pressed Enter to Retry and continue installation.&lt;br /&gt;From this point everything went smooth.&lt;br /&gt;&lt;br /&gt;Links:&lt;br /&gt;&lt;a href="http://www.geekstogo.com/forum/Problem-installing-Windows-XP-Pro-t36332.html"&gt;http://www.geekstogo.com/forum/Problem-installing-Windows-XP-Pro-t36332.html&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-7237167912494190390?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/7237167912494190390/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=7237167912494190390&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/7237167912494190390'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/7237167912494190390'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2008/10/problem-installing-windows-server-2003_15.html' title='Problem installing Windows Server 2003 / Windows XP'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-8745021729378484693</id><published>2008-10-15T21:57:00.008+03:00</published><updated>2008-11-26T15:47:14.540+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='webserver'/><category scheme='http://www.blogger.com/atom/ns#' term='DNS'/><category scheme='http://www.blogger.com/atom/ns#' term='IIS'/><title type='text'>Access your website without www in front</title><content type='html'>Today I had an assignment to make a site accessible without www in front of it.&lt;br /&gt;As I am IT noob it was new for me so it took me some time.&lt;br /&gt;So what you need to do is create a new Host (A) type DNS record which will point to your web server.&lt;br /&gt;&lt;br /&gt;In Windows Server 2003 DNS role it is done like this:&lt;br /&gt;&lt;br /&gt;1. Go to Administrative Tools and open DNS.&lt;br /&gt;2. Navigate to &lt;span style="font-weight: bold;"&gt;Forward Lookup Zones&lt;/span&gt; and find the domain you want to make accessible without www.&lt;br /&gt;3. Right click this domain folder and choose &lt;span style="font-weight: bold;"&gt;New Host (A)&lt;/span&gt;.&lt;br /&gt;4. Leave the &lt;span style="font-weight: bold;"&gt;Name&lt;/span&gt; field blank (will be the same as parent folder).&lt;br /&gt;5. Enter IP address of your web server in the &lt;span style="font-weight: bold;"&gt;IP Address&lt;/span&gt; field and click &lt;span style="font-weight: bold;"&gt;Add Host&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;If you host multiple sites on your web server you will probably need to do the following (if you host on IIS 6.0):&lt;br /&gt;&lt;br /&gt;1. Open IIS manager on your web server.&lt;br /&gt;2. Navigate to &lt;span style="font-weight: bold;"&gt;Web Sites&lt;/span&gt; and find your site.&lt;br /&gt;3. Right click and open &lt;span style="font-weight: bold;"&gt;Properties&lt;/span&gt;.&lt;br /&gt;4. On the &lt;span style="font-weight: bold;"&gt;Web Site&lt;/span&gt; tab next to &lt;span style="font-weight: bold;"&gt;IP Address&lt;/span&gt; click &lt;span style="font-weight: bold;"&gt;Advanced...&lt;/span&gt; button.&lt;br /&gt;5. There you should already see "www.yourdomain.com" record, click &lt;span style="font-weight: bold;"&gt;Add&lt;/span&gt; and enter yourdomain.com in the &lt;span style="font-weight: bold;"&gt;Host Header value&lt;/span&gt; field. Click &lt;span style="font-weight: bold;"&gt;OK&lt;/span&gt;, close all dialogs and check if it works.&lt;br /&gt;&lt;br /&gt;Links:&lt;br /&gt;&lt;a href="http://www.boutell.com/newfaq/creating/withoutwww.html"&gt;http://www.boutell.com/newfaq/creating/withoutwww.html&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-8745021729378484693?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/8745021729378484693/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=8745021729378484693&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/8745021729378484693'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/8745021729378484693'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2008/10/access-your-website-without-www-in_4481.html' title='Access your website without www in front'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-9211547249193218567</id><published>2008-10-15T21:56:00.008+03:00</published><updated>2010-04-26T11:41:56.751+03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='exchange 2007'/><category scheme='http://www.blogger.com/atom/ns#' term='smpt'/><category scheme='http://www.blogger.com/atom/ns#' term='authentication'/><title type='text'>Users unable to send mail via outlook (550 5.7.1 Client does not have permissions to send as this sender)</title><content type='html'>Had this problem on my exchange 2007 server (hub transport role) for a long  time.&lt;br /&gt;Some users could receive mail, but when trying to send using POP3 or IMAP outlook account they got '550 5.7.1 Client does not have permissions to send as this sender' error. They could send and receive emails fine when logged into OWA.&lt;br /&gt;This problem seems to have something with SMTP authentication, the workaround I was using was letting those users to open relay on my server, but recently my server started sending spam so I was forced to look for solution to this problem once again (I've tried to resolve this problem before, but unsuccessfully).&lt;br /&gt;&lt;br /&gt;I had configured send connector, also receive connector, but nothing seemed to work. Today browsing the web for answer I think I finally got it to work.&lt;br /&gt;&lt;br /&gt;Following information found on the web I've opened Exchange Management Shell and ran this cmdlet:&lt;br /&gt;get-receiveconnector "receive_connector_name" | add-adpermission -user AU -extendedrights ms-Exch-SMTP-Accept-Authoritative-Domain-Sender&lt;br /&gt;&lt;br /&gt;Tried to send email again and it disappeared from the outbox.&lt;br /&gt;&lt;br /&gt;Links:&lt;br /&gt;&lt;a href="http://www.exchangeninjas.com/TUPMServerResponses"&gt;http://www.exchangeninjas.com/TUPMServerResponses&lt;/a&gt;&lt;br /&gt;&lt;a href="http://forums.msexchange.org/m_1800412481/printable.htm"&gt;http://forums.msexchange.org/m_1800412481/printable.htm&lt;/a&gt;&lt;/client&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-9211547249193218567?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/9211547249193218567/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=9211547249193218567&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/9211547249193218567'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/9211547249193218567'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2008/10/users-unable-to-send-mail-via-outlook_15.html' title='Users unable to send mail via outlook (550 5.7.1 Client does not have permissions to send as this sender)'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6705827636155762044.post-2962727514539850021</id><published>2008-10-15T21:55:00.007+03:00</published><updated>2008-10-25T03:28:56.499+03:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='introduction'/><category scheme='http://www.blogger.com/atom/ns#' term='info'/><category scheme='http://www.blogger.com/atom/ns#' term='information'/><title type='text'>The purpose and idea behind the ITowns blog</title><content type='html'>Hi,&lt;br /&gt;my name is Aurimas and I work in small IT company in Lithuania.&lt;br /&gt;I am conditionally new to IT so I encounter bigger or smaller challenges in my work everyday. To overcome them I use different methods and sources of information, but mostly of course I search the web.&lt;br /&gt;Sometimes when the task I need to accomplish is really new and unknown to me I follow some (sometimes not easy to find) step by step guide on the web, but after some time I may need to repeat the same task and of course I do not always remember how I did it last time :)&lt;br /&gt;So I need to spend a lot of time searching the web again (I'm lucky if I have added it to my favorites, but if not...).&lt;br /&gt;&lt;br /&gt;So the purpose of this blog is to gather this information about my everyday challenges to a single place for further use, so I don't need to search the web again.&lt;br /&gt;Also to help find solution or to give the right direction to anyone else facing similar problems.&lt;br /&gt;&lt;br /&gt;I hope someone will find this blog useful :)&lt;br /&gt;&lt;br /&gt;p.s. English is not my native language so feel free to correct me where needed :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6705827636155762044-2962727514539850021?l=itowns.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itowns.blogspot.com/feeds/2962727514539850021/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6705827636155762044&amp;postID=2962727514539850021&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/2962727514539850021'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6705827636155762044/posts/default/2962727514539850021'/><link rel='alternate' type='text/html' href='http://itowns.blogspot.com/2008/10/purpose-and-idea-behind-itowns-blog.html' title='The purpose and idea behind the ITowns blog'/><author><name>complexxL9</name><uri>http://www.blogger.com/profile/10601992610090368350</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
