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

<channel>
	<title>Kreslavsky IT blog &#187; Outlook 2002 XP</title>
	<atom:link href="http://www.kreslavsky.com/category/microsoft/outlook-2002-xp/feed" rel="self" type="application/rss+xml" />
	<link>http://www.kreslavsky.com</link>
	<description>News, guides, and tips to antivirus programmes, scripts, and security</description>
	<lastBuildDate>Sun, 29 Jan 2012 04:57:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Delete Office Addins from registry</title>
		<link>http://www.kreslavsky.com/2009/10/delete-office-addins-from-registry.html</link>
		<comments>http://www.kreslavsky.com/2009/10/delete-office-addins-from-registry.html#comments</comments>
		<pubDate>Sun, 18 Oct 2009 16:23:14 +0000</pubDate>
		<dc:creator>Gil Kreslavsky</dc:creator>
				<category><![CDATA[Office 2007]]></category>
		<category><![CDATA[Outlook 2002 XP]]></category>
		<category><![CDATA[Outlook 2003]]></category>
		<category><![CDATA[Outlook 2007]]></category>
		<category><![CDATA[Office 2003]]></category>
		<category><![CDATA[Office Tips]]></category>
		<category><![CDATA[Ofiice 2007]]></category>
		<category><![CDATA[Registry]]></category>

		<guid isPermaLink="false">http://www.kreslavsky.com/2009/10/delete-office-addins-from-registry.html</guid>
		<description><![CDATA[Tweet To delete Microsoft Office 2003/2007 add-ins from registry follow the steps bellow Go to start&#62;run type regedit and hit the enter key For Word – Delete the keys bellow – You can delete the key by pressing right click and delete HKEY_Local_Machine Software Microsoft OfficewordAddins HKEY_Local_Machine Software Microsoft OfficeX.0wordAddins HKEY_CURRENT_USER Software Microsoft OfficeX.0 WordAddins HKEY_CURRENT_USER Software Microsoft Office WordAddins For PowerPoint – Delete the keys bellow – You can delete the key by pressing right click and delete HKEY_Local_Machine Software Microsoft OfficePowerPointAddins HKEY_Local_Machine Software Microsoft OfficeX.0PowerPointAddins HKEY_CURRENT_USER Software Microsoft OfficeX.0 PowerPointAddins HKEY_CURRENT_USER Software Microsoft OfficePowerPointAddins For Excel- Delete the keys bellow – You can delete the key by pressing right click and delete HKEY_Local_Machine Software Microsoft OfficeExcelAddins HKEY_Local_Machine Software Microsoft OfficeX.0ExcelAddins HKEY_CURRENT_USER Software Microsoft OfficeX.0ExcelAddins HKEY_CURRENT_USER Software Microsoft OfficeExcelAddins For Outlook 2007 installed on Windows XP – Copy the text bellow in to text file and save it as .bat The bat file will clean outlook 2007 Addins. @echo off REM # Outlook Addins Reset # REM Change window title &#160;&#160;&#160;&#160;&#160;&#160;&#160; title Outlook Addins&#160; &#8211; Reset REM Warning and pause REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; color 3f REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo. REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo. REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo This program will backup and delete Outlook Addins REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo. REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo. REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; pause REM Create backup directory (change color) &#160;&#160;&#160;&#160;&#160;&#160;&#160; color 1f &#160;&#160;&#160;&#160;&#160;&#160;&#160; cls &#160;&#160;&#160;&#160;&#160;&#160;&#160; set hour=%time:~0,2% &#160;&#160;&#160;&#160;&#160;&#160;&#160; if &#34;%hour:~0,1%&#34;==&#34; &#34; set hour=0%time:~1,1% &#160;&#160;&#160;&#160;&#160;&#160;&#160; set TempBackupPath=&#34;%HOMEDRIVE%Backup Folder%date:~10,4%_%date:~4,2%_%date:~7,2%_%hour%_%time:~3,2%_%time:~6,2%&#34; &#160;&#160;&#160;&#160;&#160;&#160;&#160; set TempKey1=&#34;HKEY_CURRENT_USERSoftwareMicrosoftOffice12.0OutlookAddins&#34; &#160;&#160;&#160;&#160;&#160;&#160;&#160; set TempKey2=&#34;HKEY_CURRENT_USERSoftwareMicrosoftOfficeOutlookAddins&#34; &#160;&#160;&#160;&#160;&#160;&#160;&#160; set TempKey3=&#34;HKEY_LOCAL_MACHINESOFTWAREMicrosoftOffice12.0OutlookAddins&#34; &#160;&#160;&#160;&#160;&#160;&#160;&#160; set TempKey4=&#34;HKEY_LOCAL_MACHINESOFTWAREMicrosoftOfficeOutlookAddins&#34; &#160;&#160;&#160;&#160;&#160;&#160;&#160; md %TempBackupPath% &#160;&#160;&#160;&#160;&#160;&#160;&#160; %HOMEDRIVE% &#160;&#160;&#160;&#160;&#160;&#160;&#160; CD %TempBackupPath% REM Check if the directory was created &#160;&#160;&#160;&#160;&#160;&#160;&#160; IF NOT &#34;%cd%&#34;==%TempBackupPath% goto ErrorFolder REM Check if the directory contains OutlookAddins.REG &#160;&#160;&#160;&#160;&#160;&#160;&#160; if exist HKCU_OutlookAddins.REG goto ErrorFileExist &#160;&#160;&#160;&#160;&#160;&#160;&#160; if exist HKCU_OutlookAddins2.REG goto ErrorFileExist &#160;&#160;&#160;&#160;&#160;&#160;&#160; if exist HKLM_OutlookAddins.REG goto ErrorFileExist &#160;&#160;&#160;&#160;&#160;&#160;&#160; if exist HKLM_OutlookAddins2.REG goto ErrorFileExist REM Backup the Addins and check for errors &#160;&#160;&#160;&#160;&#160;&#160;&#160; reg export %TempKey1% HKCU_OutlookAddins.REG &#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #3 &#8211; Error exporting file &#160;&#160;&#160;&#160;&#160;&#160;&#160; reg export %TempKey3% HKLM_OutlookAddins.REG &#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #3 &#8211; Error exporting file &#160;&#160;&#160;&#160;&#160;&#160;&#160; reg export %TempKey2% HKCU_OutlookAddins2.REG &#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #3 &#8211; Error exporting file &#160;&#160;&#160;&#160;&#160;&#160;&#160; reg export %TempKey4% HKLM_OutlookAddins2.REG &#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #3 &#8211; Error exporting file REM Delete the Addins and check for errors &#160;&#160;&#160;&#160;&#160;&#160;&#160; cls &#160;&#160;&#160;&#160;&#160;&#160;&#160; reg delete %TempKey1% &#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #4 &#8211; Error deleting reg key &#160;&#160;&#160;&#160;&#160;&#160;&#160; reg delete %TempKey3% &#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #4 &#8211; Error deleting reg key &#160;&#160;&#160;&#160;&#160;&#160;&#160; reg delete %TempKey2% &#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #4 &#8211; Error deleting reg key &#160;&#160;&#160;&#160;&#160;&#160;&#160; reg delete %TempKey4% &#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #4 &#8211; Error deleting reg key echo Rename outcmd to .old &#160;&#160;&#160;&#160;&#160;&#160;&#160; ren &#34;%USERPROFILE%Application DataMicrosoftOutlookoutcmd.dat&#34; &#34;outcmd_%time:~6,2%.old&#34; echo Rename extend to .old &#160;&#160;&#160;&#160;&#160;&#160;&#160; ren &#34;%USERPROFILE%Local SettingsApplication DataMicrosoftOutlookextend.dat&#34; &#34;extend_%time:~6,2%.old&#34; echo Rename frmcache to .old &#160;&#160;&#160;&#160;&#160;&#160;&#160; ren &#34;%USERPROFILE%Local SettingsApplication DataMicrosoftFORMSFRMCACHE.DAT&#34; &#34;FRMCACHE_%time:~6,2%.old&#34; REM Press any key to continue pause REM Clear screen with success color message and puase &#160;&#160;&#160;&#160;&#160;&#160;&#160; color 2f &#160;&#160;&#160;&#160;&#160;&#160;&#160; cls &#160;&#160;&#160;&#160;&#160;&#160;&#160; echo. &#160;&#160;&#160;&#160;&#160;&#160;&#160; echo. &#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Done! &#160;&#160;&#160;&#160;&#160;&#160;&#160; echo. &#160;&#160;&#160;&#160;&#160;&#160;&#160; echo. &#160;&#160;&#160;&#160;&#160;&#160;&#160; goto End REM [...]]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.kreslavsky.com%2F2009%2F10%2Fdelete-office-addins-from-registry.html&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://www.kreslavsky.com/2009/10/delete-office-addins-from-registry.html"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.kreslavsky.com/2009/10/delete-office-addins-from-registry.html"  data-text="Delete Office Addins from registry" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://www.kreslavsky.com/2009/10/delete-office-addins-from-registry.html" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://www.kreslavsky.com/2009/10/delete-office-addins-from-registry.html"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p><strong>To delete Microsoft Office 2003/2007 add-ins from registry follow the steps bellow</strong></p>
<p>Go to start&gt;run type regedit and hit the enter key</p>
<p><strong>For Word – Delete the keys bellow </strong>– You can delete the key by pressing right click and delete</p>
<p>HKEY_Local_Machine Software Microsoft OfficewordAddins    <br />HKEY_Local_Machine Software Microsoft OfficeX.0wordAddins     <br />HKEY_CURRENT_USER Software Microsoft OfficeX.0 WordAddins     <br />HKEY_CURRENT_USER Software Microsoft Office WordAddins</p>
<p><strong>For PowerPoint – Delete the keys bellow –</strong> You can delete the key by pressing right click and delete    <br />HKEY_Local_Machine Software Microsoft OfficePowerPointAddins     <br />HKEY_Local_Machine Software Microsoft OfficeX.0PowerPointAddins     <br />HKEY_CURRENT_USER Software Microsoft OfficeX.0 PowerPointAddins     <br />HKEY_CURRENT_USER Software Microsoft OfficePowerPointAddins</p>
<p><strong>For Excel- </strong><strong>Delete the keys bellow –</strong> You can delete the key by pressing right click and delete    <br />HKEY_Local_Machine Software Microsoft OfficeExcelAddins     <br />HKEY_Local_Machine Software Microsoft OfficeX.0ExcelAddins     <br />HKEY_CURRENT_USER Software Microsoft OfficeX.0ExcelAddins     <br />HKEY_CURRENT_USER Software Microsoft OfficeExcelAddins</p>
<p><strong>For Outlook 2007 installed on Windows XP –</strong> Copy the text bellow in to text file and save it as .bat    <br />The bat file will clean outlook 2007 Addins.</p>
<table border="1" cellspacing="0" cellpadding="2" width="400">
<tbody>
<tr>
<td valign="top" width="400">
<p>@echo off </p>
<p>REM # Outlook Addins Reset # </p>
<p>REM Change window title           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; title Outlook Addins&#160; &#8211; Reset </p>
<p>REM Warning and pause           <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls            <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; color 3f            <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo.            <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo.            <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo This program will backup and delete Outlook Addins            <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo.            <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo.            <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; pause </p>
<p>REM Create backup directory (change color)           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; color 1f            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; set hour=%time:~0,2%            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if &quot;%hour:~0,1%&quot;==&quot; &quot; set hour=0%time:~1,1%            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; set TempBackupPath=&quot;%HOMEDRIVE%Backup Folder%date:~10,4%_%date:~4,2%_%date:~7,2%_%hour%_%time:~3,2%_%time:~6,2%&quot;            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; set TempKey1=&quot;HKEY_CURRENT_USERSoftwareMicrosoftOffice12.0OutlookAddins&quot;            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; set TempKey2=&quot;HKEY_CURRENT_USERSoftwareMicrosoftOfficeOutlookAddins&quot;            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; set TempKey3=&quot;HKEY_LOCAL_MACHINESOFTWAREMicrosoftOffice12.0OutlookAddins&quot;            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; set TempKey4=&quot;HKEY_LOCAL_MACHINESOFTWAREMicrosoftOfficeOutlookAddins&quot; </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; md %TempBackupPath%           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; %HOMEDRIVE%            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; CD %TempBackupPath% </p>
<p>REM Check if the directory was created           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; IF NOT &quot;%cd%&quot;==%TempBackupPath% goto ErrorFolder            <br />REM Check if the directory contains OutlookAddins.REG            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if exist HKCU_OutlookAddins.REG goto ErrorFileExist            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if exist HKCU_OutlookAddins2.REG goto ErrorFileExist            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if exist HKLM_OutlookAddins.REG goto ErrorFileExist            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if exist HKLM_OutlookAddins2.REG goto ErrorFileExist </p>
<p>REM Backup the Addins and check for errors           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; reg export %TempKey1% HKCU_OutlookAddins.REG            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #3 &#8211; Error exporting file            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; reg export %TempKey3% HKLM_OutlookAddins.REG            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #3 &#8211; Error exporting file            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; reg export %TempKey2% HKCU_OutlookAddins2.REG            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #3 &#8211; Error exporting file            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; reg export %TempKey4% HKLM_OutlookAddins2.REG            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #3 &#8211; Error exporting file </p>
<p>REM Delete the Addins and check for errors           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; reg delete %TempKey1%             <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #4 &#8211; Error deleting reg key            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; reg delete %TempKey3%             <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #4 &#8211; Error deleting reg key            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; reg delete %TempKey2%             <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #4 &#8211; Error deleting reg key            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; reg delete %TempKey4%             <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #4 &#8211; Error deleting reg key </p>
<p>echo Rename outcmd to .old           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; ren &quot;%USERPROFILE%Application DataMicrosoftOutlookoutcmd.dat&quot; &quot;outcmd_%time:~6,2%.old&quot;            <br />echo Rename extend to .old            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; ren &quot;%USERPROFILE%Local SettingsApplication DataMicrosoftOutlookextend.dat&quot; &quot;extend_%time:~6,2%.old&quot;            <br />echo Rename frmcache to .old            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; ren &quot;%USERPROFILE%Local SettingsApplication DataMicrosoftFORMSFRMCACHE.DAT&quot; &quot;FRMCACHE_%time:~6,2%.old&quot;            <br />REM Press any key to continue            <br />pause </p>
<p>REM Clear screen with success color message and puase           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; color 2f            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo.            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo.            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Done!            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo.            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo.            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; goto End </p>
<p>REM Error handling           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; :ErrorFolder            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; color 4f            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; pause            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #1 &#8211; Could not create folder            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; goto End </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; :ErrorFileExist           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; color 4f            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; pause            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #2 &#8211; File exist            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; goto End </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; :ErrorExport           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; color 4f            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; pause            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #3 &#8211; Error exporting file            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; goto End </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; :ErrorDelete           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; color 4f            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; pause            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #4 &#8211; Error deleting reg key            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; goto End </p>
<p>REM Exit           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; :End            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; pause</p>
</td>
</tr>
</tbody>
</table>
<p><strong></strong></p>
<p><strong>For Outlook 2003 installed on Windows XP –</strong> Copy the text bellow in to text file and save it as .bat    <br />The bat file will clean outlook 2003 Addins.</p>
<table border="1" cellspacing="0" cellpadding="2" width="400">
<tbody>
<tr>
<td valign="top" width="400">
<p>@echo off </p>
<p>REM # Outlook Addins Reset # </p>
<p>REM Change window title           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; title Outlook Addins&#160; &#8211; Reset </p>
<p>REM Warning and pause           <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls            <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; color 3f            <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo.            <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo.            <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo This program will backup and delete Outlook Addins            <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo.            <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo.            <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; pause </p>
<p>REM Create backup directory (change color)           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; color 1f            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; set hour=%time:~0,2%            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if &quot;%hour:~0,1%&quot;==&quot; &quot; set hour=0%time:~1,1%            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; set TempBackupPath=&quot;%HOMEDRIVE%Backup Folder%date:~10,4%_%date:~4,2%_%date:~7,2%_%hour%_%time:~3,2%_%time:~6,2%&quot;            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; set TempKey1=&quot;HKEY_CURRENT_USERSoftwareMicrosoftOffice11.0OutlookAddins&quot;            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; set TempKey2=&quot;HKEY_CURRENT_USERSoftwareMicrosoftOfficeOutlookAddins&quot;            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; set TempKey3=&quot;HKEY_LOCAL_MACHINESOFTWAREMicrosoftOffice11.0OutlookAddins&quot;            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; set TempKey4=&quot;HKEY_LOCAL_MACHINESOFTWAREMicrosoftOfficeOutlookAddins&quot; </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; md %TempBackupPath%           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; %HOMEDRIVE%            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; CD %TempBackupPath% </p>
<p>REM Check if the directory was created           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; IF NOT &quot;%cd%&quot;==%TempBackupPath% goto ErrorFolder            <br />REM Check if the directory contains OutlookAddins.REG            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if exist HKCU_OutlookAddins.REG goto ErrorFileExist            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if exist HKCU_OutlookAddins2.REG goto ErrorFileExist            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if exist HKLM_OutlookAddins.REG goto ErrorFileExist            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if exist HKLM_OutlookAddins2.REG goto ErrorFileExist </p>
<p>REM Backup the Addins and check for errors           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; reg export %TempKey1% HKCU_OutlookAddins.REG            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #3 &#8211; Error exporting file            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; reg export %TempKey3% HKLM_OutlookAddins.REG            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #3 &#8211; Error exporting file            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; reg export %TempKey2% HKCU_OutlookAddins2.REG            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #3 &#8211; Error exporting file            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; reg export %TempKey4% HKLM_OutlookAddins2.REG            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #3 &#8211; Error exporting file </p>
<p>REM Delete the Addins and check for errors           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; reg delete %TempKey1%             <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #4 &#8211; Error deleting reg key            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; reg delete %TempKey3%             <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #4 &#8211; Error deleting reg key            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; reg delete %TempKey2%             <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #4 &#8211; Error deleting reg key            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; reg delete %TempKey4%             <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #4 &#8211; Error deleting reg key </p>
<p>echo Rename outcmd to .old           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; ren &quot;%USERPROFILE%Application DataMicrosoftOutlookoutcmd.dat&quot; &quot;outcmd_%time:~6,2%.old&quot;            <br />echo Rename extend to .old            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; ren &quot;%USERPROFILE%Local SettingsApplication DataMicrosoftOutlookextend.dat&quot; &quot;extend_%time:~6,2%.old&quot;            <br />echo Rename frmcache to .old            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; ren &quot;%USERPROFILE%Local SettingsApplication DataMicrosoftFORMSFRMCACHE.DAT&quot; &quot;FRMCACHE_%time:~6,2%.old&quot;            <br />REM Press any key to continue            <br />pause </p>
<p>REM Clear screen with success color message and puase           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; color 2f            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo.            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo.            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Done!            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo.            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo.            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; goto End </p>
<p>REM Error handling           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; :ErrorFolder            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; color 4f            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; pause            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #1 &#8211; Could not create folder            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; goto End </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; :ErrorFileExist           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; color 4f            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; pause            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #2 &#8211; File exist            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; goto End </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; :ErrorExport           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; color 4f            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; pause            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #3 &#8211; Error exporting file            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; goto End </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; :ErrorDelete           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; color 4f            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; pause            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #4 &#8211; Error deleting reg key            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; goto End </p>
<p>REM Exit           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; :End            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; pause</p>
</td>
</tr>
</tbody>
</table>
<p>&#160;</p>
<p><strong>For Outlook 2007 installed on Windows Windows Vista&#160; –</strong> Copy the text bellow in to text file and save it as .bat    <br />The bat file will clean outlook 2007 Addins.</p>
<table border="1" cellspacing="0" cellpadding="2" width="400">
<tbody>
<tr>
<td valign="top" width="400">
<p>@echo off </p>
<p>REM # Outlook Addins Reset # </p>
<p>REM Change window title           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; title Outlook Addins&#160; &#8211; Reset </p>
<p>REM Warning and pause           <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls            <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; color 3f            <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo.            <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo.            <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo This program will backup and delete Outlook Addins            <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo.            <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo.            <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; pause </p>
<p>REM Create backup directory (change color)           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; color 1f            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; set hour=%time:~0,2%            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if &quot;%hour:~0,1%&quot;==&quot; &quot; set hour=0%time:~1,1%            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; set TempBackupPath=&quot;%HOMEDRIVE%Backup Folder%date:~10,4%_%date:~4,2%_%date:~7,2%_%hour%_%time:~3,2%_%time:~6,2%&quot;            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; set TempKey1=&quot;HKEY_CURRENT_USERSoftwareMicrosoftOffice12.0OutlookAddins&quot;            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; set TempKey2=&quot;HKEY_CURRENT_USERSoftwareMicrosoftOfficeOutlookAddins&quot;            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; set TempKey3=&quot;HKEY_LOCAL_MACHINESOFTWAREMicrosoftOffice12.0OutlookAddins&quot;            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; set TempKey4=&quot;HKEY_LOCAL_MACHINESOFTWAREMicrosoftOfficeOutlookAddins&quot; </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; md %TempBackupPath%           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; %HOMEDRIVE%            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; CD %TempBackupPath% </p>
<p>REM Check if the directory was created           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; IF NOT &quot;%cd%&quot;==%TempBackupPath% goto ErrorFolder            <br />REM Check if the directory contains OutlookAddins.REG            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if exist HKCU_OutlookAddins.REG goto ErrorFileExist            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if exist HKCU_OutlookAddins2.REG goto ErrorFileExist            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if exist HKLM_OutlookAddins.REG goto ErrorFileExist            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if exist HKLM_OutlookAddins2.REG goto ErrorFileExist </p>
<p>REM Backup the Addins and check for errors           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; reg export %TempKey1% HKCU_OutlookAddins.REG            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #3 &#8211; Error exporting file            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; reg export %TempKey3% HKLM_OutlookAddins.REG            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #3 &#8211; Error exporting file            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; reg export %TempKey2% HKCU_OutlookAddins2.REG            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #3 &#8211; Error exporting file            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; reg export %TempKey4% HKLM_OutlookAddins2.REG            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #3 &#8211; Error exporting file </p>
<p>REM Delete the Addins and check for errors           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; reg delete %TempKey1%             <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #4 &#8211; Error deleting reg key            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; reg delete %TempKey3%             <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #4 &#8211; Error deleting reg key            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; reg delete %TempKey2%             <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #4 &#8211; Error deleting reg key            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; reg delete %TempKey4%             <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #4 &#8211; Error deleting reg key </p>
<p>echo Rename outcmd to .old           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; ren %USERPROFILE%AppDataRoamingMicrosoftOutlookoutcmd.dat outcmd_%time:~6,2%.old            <br />echo Rename extend to .old            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; ren %USERPROFILE%AppDataLocalMicrosoftOutlookextend.dat extend_%time:~6,2%.old            <br />echo Rename frmcache to .old            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; ren %USERPROFILE%AppDataLocalMicrosoftFORMSFRMCACHE.DAT FRMCACHE_%time:~6,2%.old            <br />REM Press any key to continue            <br />pause </p>
<p>REM Clear screen with success color message and puase           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; color 2f            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo.            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo.            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Done!            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo.            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo.            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; goto End </p>
<p>REM Error handling           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; :ErrorFolder            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; color 4f            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; pause            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #1 &#8211; Could not create folder            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; goto End </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; :ErrorFileExist           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; color 4f            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; pause            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #2 &#8211; File exist            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; goto End </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; :ErrorExport           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; color 4f            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; pause            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #3 &#8211; Error exporting file            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; goto End </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; :ErrorDelete           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; color 4f            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; pause            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #4 &#8211; Error deleting reg key            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; goto End </p>
<p>REM Exit           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; :End            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; pause</p>
</td>
</tr>
</tbody>
</table>
<p><strong></strong></p>
<p><strong>For Outlook 2003 installed on Windows Vista –</strong> Copy the text bellow in to text file and save it as .bat    <br />The bat file will clean outlook 2003 Addins.</p>
<table border="1" cellspacing="0" cellpadding="2" width="400">
<tbody>
<tr>
<td valign="top" width="400">
<p>@echo off </p>
<p>REM # Outlook Addins Reset # </p>
<p>REM Change window title           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; title Outlook Addins&#160; &#8211; Reset </p>
<p>REM Warning and pause           <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls            <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; color 3f            <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo.            <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo.            <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo This program will backup and delete Outlook Addins            <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo.            <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo.            <br />REM&#160;&#160;&#160;&#160;&#160;&#160;&#160; pause </p>
<p>REM Create backup directory (change color)           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; color 1f            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; set hour=%time:~0,2%            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if &quot;%hour:~0,1%&quot;==&quot; &quot; set hour=0%time:~1,1%            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; set TempBackupPath=&quot;%HOMEDRIVE%Backup Folder%date:~10,4%_%date:~4,2%_%date:~7,2%_%hour%_%time:~3,2%_%time:~6,2%&quot;            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; set TempKey1=&quot;HKEY_CURRENT_USERSoftwareMicrosoftOffice11.0OutlookAddins&quot;            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; set TempKey2=&quot;HKEY_CURRENT_USERSoftwareMicrosoftOfficeOutlookAddins&quot;            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; set TempKey3=&quot;HKEY_LOCAL_MACHINESOFTWAREMicrosoftOffice11.0OutlookAddins&quot;            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; set TempKey4=&quot;HKEY_LOCAL_MACHINESOFTWAREMicrosoftOfficeOutlookAddins&quot; </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; md %TempBackupPath%           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; %HOMEDRIVE%            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; CD %TempBackupPath% </p>
<p>REM Check if the directory was created           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; IF NOT &quot;%cd%&quot;==%TempBackupPath% goto ErrorFolder            <br />REM Check if the directory contains OutlookAddins.REG            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if exist HKCU_OutlookAddins.REG goto ErrorFileExist            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if exist HKCU_OutlookAddins2.REG goto ErrorFileExist            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if exist HKLM_OutlookAddins.REG goto ErrorFileExist            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if exist HKLM_OutlookAddins2.REG goto ErrorFileExist </p>
<p>REM Backup the Addins and check for errors           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; reg export %TempKey1% HKCU_OutlookAddins.REG            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #3 &#8211; Error exporting file            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; reg export %TempKey3% HKLM_OutlookAddins.REG            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #3 &#8211; Error exporting file            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; reg export %TempKey2% HKCU_OutlookAddins2.REG            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #3 &#8211; Error exporting file            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; reg export %TempKey4% HKLM_OutlookAddins2.REG            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #3 &#8211; Error exporting file </p>
<p>REM Delete the Addins and check for errors           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; reg delete %TempKey1%             <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #4 &#8211; Error deleting reg key            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; reg delete %TempKey3%             <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #4 &#8211; Error deleting reg key            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; reg delete %TempKey2%             <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #4 &#8211; Error deleting reg key            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; reg delete %TempKey4%             <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if %errorlevel%==1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #4 &#8211; Error deleting reg key </p>
<p>echo Rename outcmd to .old           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; ren %USERPROFILE%AppDataRoamingMicrosoftOutlookoutcmd.dat outcmd_%time:~6,2%.old            <br />echo Rename extend to .old            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; ren %USERPROFILE%AppDataLocalMicrosoftOutlookextend.dat extend_%time:~6,2%.old            <br />echo Rename frmcache to .old            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; ren %USERPROFILE%AppDataLocalMicrosoftFORMSFRMCACHE.DAT FRMCACHE_%time:~6,2%.old            <br />REM Press any key to continue            <br />pause </p>
<p>REM Clear screen with success color message and puase           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; color 2f            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo.            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo.            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Done!            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo.            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo.            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; goto End </p>
<p>REM Error handling           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; :ErrorFolder            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; color 4f            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; pause            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #1 &#8211; Could not create folder            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; goto End </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; :ErrorFileExist           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; color 4f            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; pause            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #2 &#8211; File exist            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; goto End </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; :ErrorExport           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; color 4f            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; pause            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #3 &#8211; Error exporting file            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; goto End </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; :ErrorDelete           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; color 4f            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; pause            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; cls            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; echo Error #4 &#8211; Error deleting reg key            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; goto End </p>
<p>REM Exit           <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; :End            <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; pause</p>
</td>
</tr>
</tbody>
</table>
<p>&#160;</p>
<p>&#160;</p>
<p>Thanks to Microsoft support blog <a title="http://blogs.microsoft.co.il/blogs/support/default.aspx" href="http://blogs.microsoft.co.il/blogs/support/default.aspx">http://blogs.microsoft.co.il/blogs/support/default.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kreslavsky.com/2009/10/delete-office-addins-from-registry.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upload Outlook contacts to Gmail</title>
		<link>http://www.kreslavsky.com/2009/04/upload-outlook-contacts-to-gmail.html</link>
		<comments>http://www.kreslavsky.com/2009/04/upload-outlook-contacts-to-gmail.html#comments</comments>
		<pubDate>Mon, 27 Apr 2009 11:59:20 +0000</pubDate>
		<dc:creator>Gil Kreslavsky</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Outlook 2002 XP]]></category>
		<category><![CDATA[Outlook 2003]]></category>
		<category><![CDATA[Outlook 2007]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[Outlook Email]]></category>

		<guid isPermaLink="false">http://www.kreslavsky.com/2009/04/upload-outlook-contacts-to-gmail.html</guid>
		<description><![CDATA[Tweet Copy you contact list from Microsoft Outlook (2003 or 2007) to Gmail Account: Open Outlook Go to File&#62;Import and Export. Select “Export to a file” and click “Next”. Choose “Comma-separated values” and click on Next Locate your contacts folder and click “Next”. Save the file in .csv extension. Now go to you Gmail account. Click the “Contacts” on the left pane and subsequently select “Import” at the top right corner. 8. Click browse to locate the .csv file that you saved earlier. 9. You can click “Import” to start importing your contact. Of course you can add these imported contacts to a new group and you can name the group as well.]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.kreslavsky.com%2F2009%2F04%2Fupload-outlook-contacts-to-gmail.html&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://www.kreslavsky.com/2009/04/upload-outlook-contacts-to-gmail.html"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.kreslavsky.com/2009/04/upload-outlook-contacts-to-gmail.html"  data-text="Upload Outlook contacts to Gmail" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://www.kreslavsky.com/2009/04/upload-outlook-contacts-to-gmail.html" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://www.kreslavsky.com/2009/04/upload-outlook-contacts-to-gmail.html"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p><strong>Copy you contact list from Microsoft Outlook (2003 or 2007) to Gmail Account:</strong></p>
<ol>
<li>Open Outlook</li>
<li>Go to File&gt;Import and Export.</li>
<li>Select “Export to a file” and click “Next”.     <br /><a href="http://www.kreslavsky.com/wp-content/uploads/2009/04/image2.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.kreslavsky.com/wp-content/uploads/2009/04/image-thumb2.png" width="244" height="188" /></a> </li>
<li>Choose “Comma-separated values” and click on Next</li>
<li>Locate your contacts folder and click “Next”.     <br /><a href="http://www.kreslavsky.com/wp-content/uploads/2009/04/image3.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.kreslavsky.com/wp-content/uploads/2009/04/image-thumb3.png" width="244" height="189" /></a> </li>
<li>Save the file in .csv extension. </li>
<li>Now go to you Gmail account.</li>
<li>Click the “Contacts” on the left pane and subsequently select “Import” at the top right corner.</li>
</ol>
<p>8. Click browse to locate the .csv file that you saved earlier. </p>
<p>9. You can click “Import” to start importing your contact. Of course you can add these imported contacts to a new group and you can name the group as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kreslavsky.com/2009/04/upload-outlook-contacts-to-gmail.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Outlook Delay or schedule Email Send</title>
		<link>http://www.kreslavsky.com/2009/03/outlook-delay-or-schedule-email-send.html</link>
		<comments>http://www.kreslavsky.com/2009/03/outlook-delay-or-schedule-email-send.html#comments</comments>
		<pubDate>Tue, 17 Mar 2009 15:45:50 +0000</pubDate>
		<dc:creator>Gil Kreslavsky</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Office 2007]]></category>
		<category><![CDATA[Outlook 2002 XP]]></category>
		<category><![CDATA[Outlook 2003]]></category>
		<category><![CDATA[Outlook 2007]]></category>
		<category><![CDATA[Amp]]></category>
		<category><![CDATA[Automatic Email]]></category>
		<category><![CDATA[Click Options]]></category>
		<category><![CDATA[Delay Delivery]]></category>
		<category><![CDATA[Delivery Options]]></category>
		<category><![CDATA[Find Email]]></category>
		<category><![CDATA[Image Bellow]]></category>
		<category><![CDATA[Message Options]]></category>
		<category><![CDATA[Options Screen]]></category>
		<category><![CDATA[Outbox]]></category>
		<category><![CDATA[Outlook Email]]></category>
		<category><![CDATA[Send Email]]></category>
		<category><![CDATA[Send Message]]></category>
		<category><![CDATA[Tick]]></category>
		<category><![CDATA[Writing Email]]></category>

		<guid isPermaLink="false">http://www.kreslavsky.com/?p=673</guid>
		<description><![CDATA[Tweet Recently I had to release email after work hours and I wondered if outlook have that option and I was verry happy to find it. To schedule automatic email send follow the steps. After you finished writing your&#160; email, don&#8217;t click Send (yet). In Outlook 2007: Click Options Then click on Delay Delivery and schedule when to send the message &#160; &#160; Just fill when you want to send the message as seen on the image bellow _______________________________________________________________________________________ In other versions of Outlook: Click Options on the toolbar to display the Message Options screen. Under Delivery Options, tick &#34;Do not deliver before&#34; and fill in the relevant date and time. Click Close. Now click Send! Your email will be moved to the Outbox but will not be sent out until the first time (after your set time) that Outlook does a Send &#38; Receive.]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.kreslavsky.com%2F2009%2F03%2Foutlook-delay-or-schedule-email-send.html&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://www.kreslavsky.com/2009/03/outlook-delay-or-schedule-email-send.html"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.kreslavsky.com/2009/03/outlook-delay-or-schedule-email-send.html"  data-text="Outlook Delay or schedule Email Send" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://www.kreslavsky.com/2009/03/outlook-delay-or-schedule-email-send.html" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://www.kreslavsky.com/2009/03/outlook-delay-or-schedule-email-send.html"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p>Recently I had to release email after work hours and I wondered if outlook have that option and I was verry happy to find it.</p>
<p>To schedule automatic email send follow the steps.</p>
<ul>
<li>After you finished writing your&#160; email, don&#8217;t click Send (yet). </li>
<li><strong>In Outlook 2007</strong>:
<ul>
<li>Click Options </li>
<li>Then click on Delay Delivery and schedule when to send the message         <br /><a href="http://www.kreslavsky.com/wp-content/uploads/2009/03/delay.jpg"><img class="alignleft size-medium wp-image-675" title="delay-email send" height="77" alt="delay-email send" src="http://www.kreslavsky.com/wp-content/uploads/2009/03/delay-300x56.jpg" width="369" /></a> </li>
</ul>
</li>
</ul>
<p>&#160;</p>
<p>&#160;</p>
<p>Just fill when you want to send the message as seen on the image bellow   <br /><a href="http://www.kreslavsky.com/wp-content/uploads/2009/03/schedule-send.jpg"><img class="alignleft size-full wp-image-676" title="schedule-send" height="382" alt="schedule-send" src="http://www.kreslavsky.com/wp-content/uploads/2009/03/schedule-send.jpg" width="495" /></a></p>
<p>_______________________________________________________________________________________</p>
<p>In other versions of Outlook: Click Options on the toolbar to display the Message Options screen.</p>
<p>Under Delivery Options, tick &quot;Do not deliver before&quot; and fill in the relevant date and time. Click Close.</p>
<p>Now click Send!</p>
<p>Your email will be moved to the Outbox but will not be sent out until the first time (after your set time) that Outlook does a Send &amp; Receive.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kreslavsky.com/2009/03/outlook-delay-or-schedule-email-send.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>PST Password Recover MS Outlook 97/2000/XP/2003/2007</title>
		<link>http://www.kreslavsky.com/2009/03/pst-password-recover-ms-outlook-972000xp20032007.html</link>
		<comments>http://www.kreslavsky.com/2009/03/pst-password-recover-ms-outlook-972000xp20032007.html#comments</comments>
		<pubDate>Mon, 16 Mar 2009 09:41:22 +0000</pubDate>
		<dc:creator>Gil Kreslavsky</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Outlook 2002 XP]]></category>
		<category><![CDATA[Outlook 2003]]></category>
		<category><![CDATA[Outlook 2007]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[File Password]]></category>
		<category><![CDATA[Microsoft Outlook]]></category>
		<category><![CDATA[Ms Outlook 97]]></category>
		<category><![CDATA[Outlook Password]]></category>
		<category><![CDATA[Password Outlook]]></category>
		<category><![CDATA[Password Recover]]></category>
		<category><![CDATA[Password Recovery Tool]]></category>
		<category><![CDATA[Password Reset]]></category>
		<category><![CDATA[Pst File]]></category>
		<category><![CDATA[Pst Files]]></category>
		<category><![CDATA[Pst Password]]></category>
		<category><![CDATA[Recover Password]]></category>

		<guid isPermaLink="false">http://www.kreslavsky.com/?p=649</guid>
		<description><![CDATA[Tweet Recently I had to recover my PST file password and I did it with PstPassword utility This utility can recover PST for all Outlook versions , from 97 up to 2007. PST Password works as stand alone utility , no  Office installation is required Using PstPassword In order to start using it, just run the executable file, PstPassword.exe After you run the Password reset utility , the main window displays the list of all PST files of the current logged on user (Under Documents and SettingsUser NameLocal SettingsApplication DataMicrosoftOutlook). For each password-protected PST file, If you want to recover a password of PST file that doesn&#8217;t appear in the default list, you can press F7 and select the desired PST file, or simply drag the PST file from Explorer window into the main window of PstPassword. To Download PST Password Recovery tool go to http://www.nirsoft.net/utils/pst_password.html]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.kreslavsky.com%2F2009%2F03%2Fpst-password-recover-ms-outlook-972000xp20032007.html&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://www.kreslavsky.com/2009/03/pst-password-recover-ms-outlook-972000xp20032007.html"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.kreslavsky.com/2009/03/pst-password-recover-ms-outlook-972000xp20032007.html"  data-text="PST Password Recover MS Outlook 97/2000/XP/2003/2007" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://www.kreslavsky.com/2009/03/pst-password-recover-ms-outlook-972000xp20032007.html" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://www.kreslavsky.com/2009/03/pst-password-recover-ms-outlook-972000xp20032007.html"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p>Recently I had to recover my PST file password and I did it with <a title="Pst Password Recovery" href="http://www.nirsoft.net/utils/pst_password.html" target="_blank">PstPassword </a>utility</p>
<p>This utility can recover PST for all Outlook versions , from 97 up to 2007.<br />
PST Password works as stand alone utility , no  Office installation is required</p>
<h3 class="utilsubject">Using PstPassword</h3>
<p>In order to start using it, just run the executable file, <strong>PstPassword.exe </strong><br />
After you run the Password reset utility , the main window displays the list of all PST files of the current logged on user (Under Documents and SettingsUser NameLocal SettingsApplication DataMicrosoftOutlook). For each password-protected PST file,<br />
If you want to recover a password of PST file that doesn&#8217;t appear in the default list,  you can press F7 and select the desired PST file, or simply drag the PST file from Explorer window into the main window of PstPassword.</p>
<p><a href="http://www.kreslavsky.com/wp-content/uploads/2009/03/pstpassword.gif"><img class="alignleft size-full wp-image-650" title="pstpassword" src="http://www.kreslavsky.com/wp-content/uploads/2009/03/pstpassword.gif" alt="pstpassword" width="667" height="350" /></a></p>
<p>To Download PST Password Recovery tool go to http://www.nirsoft.net/utils/pst_password.html</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kreslavsky.com/2009/03/pst-password-recover-ms-outlook-972000xp20032007.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Prepare Your Windows Domain for DST 2009</title>
		<link>http://www.kreslavsky.com/2009/02/prepare-your-windows-domain-for-dst-2009.html</link>
		<comments>http://www.kreslavsky.com/2009/02/prepare-your-windows-domain-for-dst-2009.html#comments</comments>
		<pubDate>Wed, 25 Feb 2009 09:49:27 +0000</pubDate>
		<dc:creator>Gil Kreslavsky</dc:creator>
				<category><![CDATA[Exchange 2000]]></category>
		<category><![CDATA[Exchange 2003]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Office 2007]]></category>
		<category><![CDATA[Outlook 2002 XP]]></category>
		<category><![CDATA[Outlook 2003]]></category>
		<category><![CDATA[Outlook 2007]]></category>
		<category><![CDATA[Server 2003]]></category>
		<category><![CDATA[Server 2008]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[WSUS]]></category>
		<category><![CDATA[Argentina Buenosaires]]></category>
		<category><![CDATA[Argentinean]]></category>
		<category><![CDATA[Based Computers]]></category>
		<category><![CDATA[Calendar Issues]]></category>
		<category><![CDATA[Day Light Saving]]></category>
		<category><![CDATA[Daylight Saving Time]]></category>
		<category><![CDATA[Daylight Saving Time Change]]></category>
		<category><![CDATA[December 28th]]></category>
		<category><![CDATA[Dst Systems]]></category>
		<category><![CDATA[Entire Organization]]></category>
		<category><![CDATA[Hotfix]]></category>
		<category><![CDATA[Microsoft Exchange Server]]></category>
		<category><![CDATA[Microsoft Support]]></category>
		<category><![CDATA[Microsoft Windows Server]]></category>
		<category><![CDATA[October 19th]]></category>
		<category><![CDATA[Outlook 2000]]></category>
		<category><![CDATA[Outlook Clients]]></category>
		<category><![CDATA[Period Ends March]]></category>
		<category><![CDATA[Saving Time Change]]></category>
		<category><![CDATA[Windows Operating Systems]]></category>

		<guid isPermaLink="false">http://www.kreslavsky.com/?p=560</guid>
		<description><![CDATA[Tweet As you probably know Microsoft releases set of DST patches for their systems every year at December . To avoid DST calendar issues  make sure to install/deploy the following updates to entire organization. Microsoft Windows Server and Windows XP/Vista Clients : KB 955839 Microsoft Exchange Server and outlook 2000/2003/2007 Clients:KB 941018 make sure to read MS DST Blog The country that was skipped in MS  Day Light Saving update are Argentina/Brazil and Chile. Daylight saving time begins: October 19th, 2008 Daylight saving period ends: March 15th, 2009 Since the new dates published by the federal are different from what was defined in the initial years, Windows-based computers am able to not correctly interpret the time such a is related to the transition to daylight saving time. General recommendations There is no hotfix to be had at this time to update MS Operating Systems with the 2008-2009 DST dates for Argentina. Please note that if you adjust the machine’s clock manually, you may have adverse effects on your environment. Before applying the changes on Windows Operating Systems to reflect the change in Daylight Saving Time in Argentina, be aware of possible issues that am able to affect Microsoft Office Outlook and Exchange Server. Contact Microsoft Support prior to any modification if you are unsure about the steps to emulate in condition to be prepared for the Daylight Saving Time change in Argentina. Impacts for Outlook clients and Exchange For the year 2008-2009, customers paying for the ‘(GMT -3:00) Buenos Aires’ minute zone have a delta period at the start on of the DST as follows: Delta-Argentina-BuenosAires From Sunday, October 19th, 2008 to Saturday, December 28th, 2008. And for customers using the ‘(GMT -3:00) Georgetown’ time zone have a delta range that comprehends the whole DST period: Delta-Argentina-GeorgeTown From Sunday, October 19th, 2008 to Saturday, December 28th, 2008 As result appointments may be off 1 hour. This may happen for both recurring and single-instance appointments. The appointments created in the wake of the DST dates have been updated on the operating system will have the correct time. Read More about Argentina 2008-2009 DST at MS Blog Read More about Brazil 2008-2009 DST at MS Blog Read More about Chile 2008-2009 DST at MS Blog]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.kreslavsky.com%2F2009%2F02%2Fprepare-your-windows-domain-for-dst-2009.html&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://www.kreslavsky.com/2009/02/prepare-your-windows-domain-for-dst-2009.html"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.kreslavsky.com/2009/02/prepare-your-windows-domain-for-dst-2009.html"  data-text="Prepare Your Windows Domain for DST 2009" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://www.kreslavsky.com/2009/02/prepare-your-windows-domain-for-dst-2009.html" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://www.kreslavsky.com/2009/02/prepare-your-windows-domain-for-dst-2009.html"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p>As you probably know Microsoft releases set of DST patches for their systems every year at December .<br />
To avoid DST calendar issues  make sure to install/deploy the following updates to entire organization.</p>
<ul>
<li><strong>Microsoft Windows Server and Windows XP/Vista Clients : </strong><span style="font-size: 9pt;"><a href="http://support.microsoft.com/kb/955839">KB 955839</a></span></li>
<li><strong>Microsoft Exchange Server and outlook 2000/2003/2007 Clients:</strong><span style="font-size: 9pt;"><a href="http://support.microsoft.com/kb/941018" target="_blank">KB 941018</a> make sure to read <a title="DST Blog" href="http://msexchangeteam.com/archive/2008/08/15/449583.aspx" target="_blank">MS DST Blo</a><a title="MS DST Blog" href="http://msexchangeteam.com/archive/2008/08/15/449583.aspx" target="_blank">g</a></span></li>
</ul>
<p><span style="font-size: 9pt;"><br />
</span>The country that was skipped in MS  Day Light Saving update are Argentina/Brazil and Chile.</p>
<ul>
<li>Daylight saving time begins: October 19th, 2008</li>
<li>Daylight saving period ends: March 15th, 2009</li>
</ul>
<p>Since the new dates published by the federal are different from what was defined in the initial years, Windows-based computers am able to not correctly interpret the time such a is related to the transition to daylight saving time.</p>
<h3><strong>General recommendations</strong></h3>
<ul>
<li> There is no hotfix to be had at this time to update MS Operating Systems with the 2008-2009 DST dates for Argentina.</li>
<li>Please note that if you adjust the machine’s clock manually, you may have adverse effects on your environment.</li>
<li>Before applying the changes on Windows Operating Systems to reflect the change in Daylight Saving Time in Argentina, be aware of possible issues that am able to affect Microsoft Office Outlook and Exchange Server.</li>
<li>Contact Microsoft Support prior to any modification if you are unsure about the steps to emulate in condition to be prepared for the Daylight Saving Time change in Argentina.</li>
</ul>
<h3>Impacts for Outlook clients and Exchange</h3>
<ul>
<li>For the year 2008-2009, customers paying for the ‘(GMT -3:00) Buenos Aires’ minute zone have a delta period at the start on of the DST as follows:<br />
<strong>Delta-Argentina-BuenosAires</strong><br />
From Sunday, October 19th, 2008 to Saturday, December 28th, 2008.</li>
<li>And for customers using the ‘(GMT -3:00) Georgetown’ time zone have a delta range that comprehends the whole DST period:<br />
<strong>Delta-Argentina-GeorgeTown</strong><br />
From Sunday, October 19th, 2008 to Saturday, December 28th, 2008</li>
</ul>
<p>As result appointments may be off 1 hour. This may happen for both recurring and single-instance appointments.<br />
The appointments created in the wake of the DST dates have been updated on the operating system will have the correct time.</p>
<p>Read More about Argentina 2008-2009 DST at <a href="http://blogs.technet.com/latam/archive/2008/10/16/argentinadst-2008-2009.aspx" target="_blank">MS Blog</a></p>
<p>Read More about Brazil 2008-2009 DST at <a href="http://blogs.technet.com/latam/archive/2008/10/01/brazil-dst-2008-2009-changes.aspx" target="_blank">MS Blog</a></p>
<p>Read More about Chile 2008-2009 DST at <a href="http://blogs.technet.com/latam/archive/2009/02/12/upcoming-chile-dst-fallback-2008-2009.aspx" target="_blank">MS Blog</a></p>
<p><span style="font-size: 9pt;"> </span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kreslavsky.com/2009/02/prepare-your-windows-domain-for-dst-2009.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add Israeli holidays to Outlook 2000/2003</title>
		<link>http://www.kreslavsky.com/2008/09/add-israeli-holidays-to-outlook-20002003.html</link>
		<comments>http://www.kreslavsky.com/2008/09/add-israeli-holidays-to-outlook-20002003.html#comments</comments>
		<pubDate>Thu, 11 Sep 2008 05:02:02 +0000</pubDate>
		<dc:creator>Gil Kreslavsky</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Outlook 2002 XP]]></category>
		<category><![CDATA[Outlook 2003]]></category>
		<category><![CDATA[2003 Holidays]]></category>
		<category><![CDATA[Download Files]]></category>
		<category><![CDATA[Download Net]]></category>
		<category><![CDATA[Download Outlook]]></category>
		<category><![CDATA[Holidays 2002]]></category>
		<category><![CDATA[Holidays 2003]]></category>
		<category><![CDATA[Israel]]></category>
		<category><![CDATA[Israeli Holidays]]></category>
		<category><![CDATA[Jewish Holidays]]></category>
		<category><![CDATA[Jewish Religious Holidays]]></category>
		<category><![CDATA[Outlook 2000]]></category>
		<category><![CDATA[Outlook 2002]]></category>
		<category><![CDATA[Outlook Files]]></category>
		<category><![CDATA[Outlook Tips]]></category>
		<category><![CDATA[Technorati Tags]]></category>

		<guid isPermaLink="false">http://www.kreslavsky.com/?p=294</guid>
		<description><![CDATA[Tweet Outlook 2003 is set to display holidays till end of 2007 In order to add holidays up to 2011 please follow the instructions. Download http://www.outlook-tips.net/files/OUTLOOK2012.HOL Press Open Select Israel holidays and Jewish Religious Holidays Technorati Tags: outlook holidays, Outlook 2002, Outlook 2003]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.kreslavsky.com%2F2008%2F09%2Fadd-israeli-holidays-to-outlook-20002003.html&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://www.kreslavsky.com/2008/09/add-israeli-holidays-to-outlook-20002003.html"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.kreslavsky.com/2008/09/add-israeli-holidays-to-outlook-20002003.html"  data-text="Add Israeli holidays to Outlook 2000/2003" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://www.kreslavsky.com/2008/09/add-israeli-holidays-to-outlook-20002003.html" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://www.kreslavsky.com/2008/09/add-israeli-holidays-to-outlook-20002003.html"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p class="MsoNormal" style="MARGIN: 0in 0in 0pt"><span style="font-family: Calibri; font-size: small;">Outlook 2003 is set to display holidays till end of 2007 </span></p>
<p class="MsoNormal" style="MARGIN: 0in 0in 0pt"><span style="font-family: Calibri; font-size: small;">In order to add holidays up to 2011 please follow the instructions.</span></p>
<p class="MsoNormal" style="MARGIN: 0in 0in 0pt"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNormal" style="MARGIN: 0in 0in 0pt"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNormal" style="MARGIN: 0in 0in 0pt"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNormal" style="MARGIN: 0in 0in 0pt"><span style="font-family: Calibri; font-size: small;">Download </span><a href="http://www.outlook-tips.net/files/OUTLOOK2012.HOL"><span style="font-family: Calibri; color: #0000ff; font-size: small;">http://www.outlook-tips.net/files/OUTLOOK2012.HOL</span></a></p>
<p class="MsoNormal" style="MARGIN: 0in 0in 0pt"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNormal" style="MARGIN: 0in 0in 0pt"><span style="font-family: Calibri; font-size: small;">Press Open</span></p>
<p class="MsoNormal" style="MARGIN: 0in 0in 0pt"><span style="mso-no-proof: yes"> <span style="font-family: Calibri; font-size: small;"><img src="http://www.kreslavsky.com/wp-content/uploads/2008/09/openfileopen11.jpg" alt="Open" width="368" height="195" /></span> </span></p>
<p class="MsoNormal" style="MARGIN: 0in 0in 0pt"><span style="font-family: Calibri; font-size: small;">Select Israel holidays and Jewish Religious Holidays</span></p>
<p class="MsoNormal" style="MARGIN: 0in 0in 0pt"><span style="mso-no-proof: yes"> <span style="font-family: Calibri; font-size: small;"><img src="http://www.kreslavsky.com/wp-content/uploads/2008/09/holidayshollidays11.jpg" alt="Hollidays" width="259" height="228" /></span> </span></p>
<p class="MsoNormal" style="MARGIN: 0in 0in 0pt">
<p><!-- technorati tags start --></p>
<p style="text-align:right;font-size:10px;">Technorati Tags: <a rel="tag" href="http://www.technorati.com/tag/ outlook holidays"> outlook holidays</a>, <a rel="tag" href="http://www.technorati.com/tag/Outlook 2002">Outlook 2002</a>, <a rel="tag" href="http://www.technorati.com/tag/Outlook 2003">Outlook 2003</a></p>
<p><!-- technorati tags end --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kreslavsky.com/2008/09/add-israeli-holidays-to-outlook-20002003.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Troubleshooting the “Outlook prompts for password” issue</title>
		<link>http://www.kreslavsky.com/2008/08/troubleshooting-the-%e2%80%9coutlook-prompts-for-password%e2%80%9d-issue.html</link>
		<comments>http://www.kreslavsky.com/2008/08/troubleshooting-the-%e2%80%9coutlook-prompts-for-password%e2%80%9d-issue.html#comments</comments>
		<pubDate>Thu, 21 Aug 2008 11:16:30 +0000</pubDate>
		<dc:creator>Gil Kreslavsky</dc:creator>
				<category><![CDATA[Exchange 2003]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Outlook 2002 XP]]></category>
		<category><![CDATA[Outlook 2003]]></category>
		<category><![CDATA[Outlook 2007]]></category>
		<category><![CDATA[C Users]]></category>
		<category><![CDATA[Cached Password]]></category>
		<category><![CDATA[Check Your Username]]></category>
		<category><![CDATA[Click Properties]]></category>
		<category><![CDATA[Control Userpasswords2]]></category>
		<category><![CDATA[Double Click]]></category>
		<category><![CDATA[Error Messages]]></category>
		<category><![CDATA[Find Mail]]></category>
		<category><![CDATA[Folders]]></category>
		<category><![CDATA[Global Catalog Server]]></category>
		<category><![CDATA[Logon Credentials]]></category>
		<category><![CDATA[Mail Server]]></category>
		<category><![CDATA[Microsoft Outlook 2000]]></category>
		<category><![CDATA[Ntlm Authentication]]></category>
		<category><![CDATA[One Last Time]]></category>
		<category><![CDATA[Open Outlook]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Outlook Prompts For Password]]></category>
		<category><![CDATA[Rpc Over Https]]></category>
		<category><![CDATA[Server Name]]></category>
		<category><![CDATA[Tab Button]]></category>
		<category><![CDATA[Type Regedit]]></category>

		<guid isPermaLink="false">http://www.kreslavsky.com/?p=279</guid>
		<description><![CDATA[Tweet Every time you open Outlook 2007 you are prompted to enter your domain credentials ,even though you know you have saved it? To solve it try that one: Open the following path: In Vista C:UsersYourUserNameAppDataRoamingMicrosoft Once open you will see numerous folders including a &#8220;protect&#8221; folder. Delete the &#8220;protect&#8221; folder When you have deleted the protect folder, restart Outlook. You will be requested to enter your password again, but it will be the last time. If problem exist When working RPC over HTTPs If you are working RPC over https you are using or basic, or NTLM authentication you need to be sure you are working NTLM. Now in order to ensure that outlook not uses any cached password we need to do the following. Go to Control Panel&#62;User Acounts Press on Advanced Tab button Click on Manage Passwords button Review stored passwords , and if you see IP address of your mail server you should delete it. Now we need to patch te registry Click Start&#124;Run Type regedit and press enter Go to HKLMSYSTEMCurrentControlSetControlLsa Find lmcompatibilitylevel DWORD parameter Double-click on it and change its value to 3 If &#8220;Remember my password&#8221; doesn&#8217;t work and you keep getting prompted: Close your Outlook Go to Start&#8230; Run and type control userpasswords2 and press OK c) click on the Advanced tab and press &#8216;Manage Passwords&#8217; Find the entry for your mail server and click ‘Properties&#8217; Erase the Server name and type in ‘S1&#8242; or whatever the simple name of your global catalog server is (without the quotes) leave the password blank and click OK Start Outlook, enter your password and check off ‘Remember my password&#8217; one last time. It should not prompt again. When you start Microsoft Outlook 2000/2002, you may receive following error messages: Your logon information was incorrect. Check your username and domain, then type your password again. The logon credentials supplied were incorrect. Make sure your username and domain are correct, then type your password again. CAUSE This behavior occurs because registry may be missing one or more values in the following registry key: HKEY_LOCAL_MACHINESOFTWAREMicrosoftRpcClientProtocols The following values are the core required values for Windows XP or Windows 2000: Name Type Data (Default) REG_SZ (value not set) ncacn_http REG_SZ Rpcrt4.dll ncacn_ip_tcp REG_SZ Rpcrt4.dll ncacn_np REG_SZ Rpcrt4.dll ncacn_nb_tcp REG_SZ Rpcrt4.dll ncadg_ip_udp REG_SZ Rpcrt4.dll The following values are the core required values for Windows 98: Name Type Data (Default) REG_SZ (value not set) ncacn_np REG_SZ Rpcltc1.dll ncalrpc REG_SZ ncadg_ip_udp REG_SZ Rpcltc3.dll ncacn_http REG_SZ Rpcltccm.dll The following values are the core required values for Windows NT 4.0: Name Type Data (Default) REG_SZ (value not set) ncacn_np REG_SZ Rpcltc1.dll ncalrpc REG_SZ ncadg_ip_udp REG_SZ RpcLtCcm.dll ncadg_ip_udp REG_SZ RpcLtCcm.dll ncacn_nb_tcp REG_SZ RpcLtCcm.dll ncacn_http REG_SZ RpcLtCcm.dll Following the system&#8217;s protocol binding order, you receive a prompt for credentials on each missing value until a value that matches the next protocol in the binding order is reached. RESOLUTION Use one of the following methods to resolve this behavior. Method 1 Import a valid registry key from [...]]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.kreslavsky.com%2F2008%2F08%2Ftroubleshooting-the-%25e2%2580%259coutlook-prompts-for-password%25e2%2580%259d-issue.html&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://www.kreslavsky.com/2008/08/troubleshooting-the-%e2%80%9coutlook-prompts-for-password%e2%80%9d-issue.html"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.kreslavsky.com/2008/08/troubleshooting-the-%e2%80%9coutlook-prompts-for-password%e2%80%9d-issue.html"  data-text="Troubleshooting the “Outlook prompts for password” issue" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://www.kreslavsky.com/2008/08/troubleshooting-the-%e2%80%9coutlook-prompts-for-password%e2%80%9d-issue.html" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://www.kreslavsky.com/2008/08/troubleshooting-the-%e2%80%9coutlook-prompts-for-password%e2%80%9d-issue.html"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><h2><span style="color: #000000;"><strong>Every time you open Outlook 2007 you are prompted to enter your domain credentials ,even though you know you have saved it?</strong></span></h2>
<p>To solve it try that one:<br />
Open the following path:<br />
In Vista C:UsersYourUserNameAppDataRoamingMicrosoft<br />
Once open you will see numerous folders including a &#8220;protect&#8221; folder.<br />
Delete the &#8220;protect&#8221; folder<br />
When you have deleted the protect folder, restart Outlook.<br />
You will be requested to enter your password again, but it will be the last time.</p>
<h2><strong>If problem exist When working RPC over HTTPs </strong></h2>
<p>If you are working RPC over https you are using or basic, or NTLM authentication<br />
you need to be sure you are working NTLM.<br />
Now in order to ensure that outlook not uses any cached password we need to do the following.<br />
Go to Control Panel&gt;User Acounts<br />
Press on Advanced Tab button<br />
Click on Manage Passwords button<br />
Review stored passwords , and if you see IP address of your mail server you should delete it.</p>
<p>Now we need to patch te registry</p>
<ol>
<li>Click Start|Run</li>
<li>Type regedit and press enter</li>
<li>Go to HKLMSYSTEMCurrentControlSetControlLsa</li>
<li>Find lmcompatibilitylevel DWORD parameter</li>
<li>Double-click on it and change its value to 3</li>
</ol>
<h2><strong>If &#8220;Remember my password&#8221; doesn&#8217;t work and you keep getting prompted: </strong></h2>
<ol>
<li>Close your Outlook</li>
<li>Go to Start&#8230; Run and type control userpasswords2 and press OK c) click on the Advanced tab and press &#8216;Manage Passwords&#8217;</li>
<li>Find the entry for your mail server and click ‘Properties&#8217;</li>
<li>Erase the Server name and type in ‘S1&#8242; or whatever the simple name of your global catalog server is (without the quotes)</li>
<li>leave the password blank and click OK</li>
<li>Start Outlook, enter your password and check off ‘Remember my password&#8217; one last time. It should not prompt again.</li>
</ol>
<h2><strong>When you start Microsoft Outlook 2000/2002, you may receive  following error messages: </strong></h2>
<p>Your logon information was incorrect.<br />
Check your username and domain, then type your password again.<br />
The logon credentials supplied were incorrect.<br />
Make sure your username and domain are correct, then type your password again.<br />
CAUSE<br />
This behavior occurs because registry may be missing one or more values in the following registry key:<br />
HKEY_LOCAL_MACHINESOFTWAREMicrosoftRpcClientProtocols<br />
The following values are the core required values for Windows XP or Windows 2000:<br />
Name	Type	Data<br />
(Default)	REG_SZ	(value not set)<br />
ncacn_http 	REG_SZ	Rpcrt4.dll<br />
ncacn_ip_tcp	REG_SZ	Rpcrt4.dll<br />
ncacn_np	REG_SZ	Rpcrt4.dll<br />
ncacn_nb_tcp	REG_SZ	Rpcrt4.dll<br />
ncadg_ip_udp	REG_SZ	Rpcrt4.dll</p>
<p>The following values are the core required values for Windows 98:<br />
Name	Type	Data<br />
(Default)	REG_SZ	(value not set)<br />
ncacn_np 	REG_SZ	Rpcltc1.dll<br />
ncalrpc	REG_SZ<br />
ncadg_ip_udp	REG_SZ	Rpcltc3.dll<br />
ncacn_http	REG_SZ	Rpcltccm.dll</p>
<p>The following values are the core required values for Windows NT 4.0:<br />
Name	Type	Data<br />
(Default)	REG_SZ	(value not set)<br />
ncacn_np 	REG_SZ	Rpcltc1.dll<br />
ncalrpc	REG_SZ<br />
ncadg_ip_udp	REG_SZ	RpcLtCcm.dll<br />
ncadg_ip_udp 	REG_SZ	RpcLtCcm.dll<br />
ncacn_nb_tcp 	REG_SZ	RpcLtCcm.dll<br />
ncacn_http 	REG_SZ	RpcLtCcm.dll<br />
Following the system&#8217;s protocol binding order, you receive a prompt for credentials on each missing value until a value that matches the next protocol in the binding order is reached.<br />
RESOLUTION<br />
Use one of the following methods to resolve this behavior.<br />
Method 1<br />
Import a valid registry key from a computer that is working correctly. To do this:<br />
1.	Start Registry Editor (Regedt32.exe).<br />
2.	Locate and then click the following key in the registry:<br />
KEY_LOCAL_MACHINESOFTWAREMicrosoftRpcClientProtocols<br />
3.	Click the ClientProtocols key.<br />
4.	On the File menu, click Export.<br />
5.	Save the file with a .reg or a .txt extension in the event you need to send the file by using Outlook. You must save and rename the attachment to a .reg extension to import the key.<br />
6.	Quit Registry Editor.<br />
7.	Rename the file that you just exported from a .txt file extension to a .reg extension, and then copy it to a folder on your computer.<br />
8.	Start Registry Editor (Regedt32.exe).<br />
9.	Locate and then click the following key in the registry:<br />
HKEY_LOCAL_MACHINESOFTWAREMicrosoftRpcClientProtocols<br />
10.	Select the ClientProtocols folder, click File, and then click Import.<br />
11.	Select the .reg file that you saved, and then click Open.<br />
12.	Quit Registry Editor.<br />
13.	Quit and then restart Outlook 2002.<br />
Method 2<br />
Use Registry Editor to manually create the missing values. To do this:<br />
1.	Start Registry Editor (Regedt32.exe).<br />
2.	Locate and then click the following key in the registry:<br />
HKEY_LOCAL_MACHINESOFTWAREMicrosoftRpcClientProtocols<br />
3.	Click Edit, click New, and then click String Value.<br />
4.	Edit the new string value with the name and data information that is in the table in the &#8220;Cause&#8221; section of this article.<br />
5.	Repeat steps 3 and 4 for each missing value.<br />
6.	Quit Registry Editor.<br />
The information in this article applies to:<br />
<span style="color: #ff0000;"><strong>•</strong><strong> Microsoft Outlook 2002 (Outlook XP)<br />
•	Microsoft Outlook 2000<br />
•	Microsoft Exchange 2000 Server<br />
•	Microsoft Exchange Server 5.5</strong></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kreslavsky.com/2008/08/troubleshooting-the-%e2%80%9coutlook-prompts-for-password%e2%80%9d-issue.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to create new conference room (Meeting Room) resource</title>
		<link>http://www.kreslavsky.com/2008/08/how-to-create-new-conference-room-meeting-room-resource.html</link>
		<comments>http://www.kreslavsky.com/2008/08/how-to-create-new-conference-room-meeting-room-resource.html#comments</comments>
		<pubDate>Mon, 18 Aug 2008 09:58:17 +0000</pubDate>
		<dc:creator>Gil Kreslavsky</dc:creator>
				<category><![CDATA[Exchange 2003]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Outlook 2002 XP]]></category>
		<category><![CDATA[Outlook 2003]]></category>
		<category><![CDATA[Outlook 2007]]></category>
		<category><![CDATA[Calendar Options]]></category>
		<category><![CDATA[Corporate Environment]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Mailbox]]></category>
		<category><![CDATA[New Meeting Room]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Resource Capacity]]></category>
		<category><![CDATA[Room Resource]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://www.kreslavsky.com/?p=247</guid>
		<description><![CDATA[Tweet It is a common task in corporate environment You need to open a user with new meeting room name Open new user&#8217;s mailbox Go to tools&#62; Options &#62;Calendar options&#62;Resource schedule Mark the sections bellow That is . NOTE: In Exchange 2007 there is ability to create resources (Not Users) You can also set the resource capacity now! Eg: in one of your meeting room, only be able to fit 10 people, you can type in resource information, under the property of the object.]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.kreslavsky.com%2F2008%2F08%2Fhow-to-create-new-conference-room-meeting-room-resource.html&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://www.kreslavsky.com/2008/08/how-to-create-new-conference-room-meeting-room-resource.html"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.kreslavsky.com/2008/08/how-to-create-new-conference-room-meeting-room-resource.html"  data-text="How to create new conference room (Meeting Room) resource" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://www.kreslavsky.com/2008/08/how-to-create-new-conference-room-meeting-room-resource.html" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://www.kreslavsky.com/2008/08/how-to-create-new-conference-room-meeting-room-resource.html"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p>It is a common task in corporate environment</p>
<ol>
<li>You need to open a user with new meeting room name</li>
<li>Open new user&#8217;s mailbox</li>
<li>Go to tools&gt; Options &gt;Calendar options&gt;Resource schedule</li>
<li>Mark the sections bellow</li>
</ol>
<p>That is .</p>
<p><em>NOTE: In Exchange 2007 there is ability to create resources (Not Users) You can also set the resource capacity now! Eg: in one of your meeting room, only be able to fit 10 people, you can type in resource information, under the property of the object.</em></p>
<p><a href="http://www.kreslavsky.com/wp-content/uploads/2008/08/resource-sceduling11.jpg"><img class="alignleft size-medium wp-image-248" title="resource-sceduling" src="http://www.kreslavsky.com/wp-content/uploads/2008/08/resource-sceduling1-300x205.jpg" alt="" width="300" height="205" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kreslavsky.com/2008/08/how-to-create-new-conference-room-meeting-room-resource.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Outlook: Show received meetings as tentative</title>
		<link>http://www.kreslavsky.com/2008/07/outlook-show-received-meetings-as-tentative.html</link>
		<comments>http://www.kreslavsky.com/2008/07/outlook-show-received-meetings-as-tentative.html#comments</comments>
		<pubDate>Tue, 29 Jul 2008 11:49:01 +0000</pubDate>
		<dc:creator>Gil Kreslavsky</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Outlook 2002 XP]]></category>
		<category><![CDATA[Outlook 2003]]></category>
		<category><![CDATA[Outlook 2007]]></category>
		<category><![CDATA[Arrival Check]]></category>
		<category><![CDATA[Automatic Addition]]></category>
		<category><![CDATA[Calendar]]></category>
		<category><![CDATA[Click Options]]></category>
		<category><![CDATA[Current]]></category>
		<category><![CDATA[E Mail]]></category>
		<category><![CDATA[Fashion]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Outlook Calendar]]></category>
		<category><![CDATA[Tentative Meetings]]></category>

		<guid isPermaLink="false">http://www.kreslavsky.com/?p=198</guid>
		<description><![CDATA[Tweet Show received meetings as tentative: Meetings are automatically placed on the calendar as tentative, so that timeslots will not be overbooked. As meeting updates come in, prior updates are marked &#8220;out of date&#8221; and are automatically deleted. This means that meeting updates are not accepted in an out of order fashion keeping your calendar items current.&#8221; You can stop/start the automatic addition of a tentative meeting when meeting request e-mail is received in Outlook by clearing/marking the check box for &#8220;Process requests and responses on arrival&#8221; : 1. On the Tools menu, click Options. 2. Click Email Options. 3. Click Tracking Options. 4. Click to clear/mark the &#8220;Process requests and responses on arrival&#8221; check box.]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.kreslavsky.com%2F2008%2F07%2Foutlook-show-received-meetings-as-tentative.html&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://www.kreslavsky.com/2008/07/outlook-show-received-meetings-as-tentative.html"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.kreslavsky.com/2008/07/outlook-show-received-meetings-as-tentative.html"  data-text="Outlook: Show received meetings as tentative" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://www.kreslavsky.com/2008/07/outlook-show-received-meetings-as-tentative.html" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://www.kreslavsky.com/2008/07/outlook-show-received-meetings-as-tentative.html"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p><strong>Show received meetings as tentative:</strong></p>
<p>Meetings are automatically placed on the calendar as tentative, so that timeslots will not be overbooked. As meeting updates come in, prior updates are marked &#8220;out of date&#8221; and are automatically deleted. This means that meeting updates are not accepted in an out of order fashion keeping your calendar items current.&#8221;<br />
You can stop/start the automatic addition of a tentative meeting when meeting request e-mail is received in Outlook by clearing/marking the check box for &#8220;Process requests and responses on arrival&#8221; :</p>
<p>1. On the Tools menu, click <strong>Options.</strong><br />
2. Click <strong>Email Options.</strong><br />
3. Click <strong>Tracking Options.</strong><br />
4. Click to clear/mark the <strong>&#8220;Process requests and responses on arrival&#8221;</strong> check box.</p>
<p><a href="http://www.kreslavsky.com/wp-content/uploads/2008/07/outlook-tracking11.jpg"><img class="size-medium wp-image-202 alignleft" title="outlook-tracking" src="http://www.kreslavsky.com/wp-content/uploads/2008/07/outlook-tracking1-300x290.jpg" alt="" width="300" height="290" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kreslavsky.com/2008/07/outlook-show-received-meetings-as-tentative.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rescheduling Outlook Calendar Meetings creates duplicate meetings</title>
		<link>http://www.kreslavsky.com/2008/07/rescheduling-outlook-calendar-meetings-creates-duplicate-meetings.html</link>
		<comments>http://www.kreslavsky.com/2008/07/rescheduling-outlook-calendar-meetings-creates-duplicate-meetings.html#comments</comments>
		<pubDate>Thu, 24 Jul 2008 06:55:49 +0000</pubDate>
		<dc:creator>Gil Kreslavsky</dc:creator>
				<category><![CDATA[Exchange 2003]]></category>
		<category><![CDATA[Outlook 2002 XP]]></category>
		<category><![CDATA[Outlook 2003]]></category>
		<category><![CDATA[Outlook 2007]]></category>
		<category><![CDATA[Calendar Meetings]]></category>
		<category><![CDATA[Outlook Calendar]]></category>
		<category><![CDATA[Receipts]]></category>
		<category><![CDATA[Rescheduling Outlook Calendar Meetings creates duplicat]]></category>
		<category><![CDATA[Workaround]]></category>

		<guid isPermaLink="false">http://www.kreslavsky.com/?p=160</guid>
		<description><![CDATA[Tweet Rescheduling Outlook Calendar Meetings creates duplicate meetings Scenario: 1.       Meeting request comes in. 2.       User accepts. 3.        Meeting shows as accepted in calendar. 4.        An update comes in. 5.       User accepts. 6.        Now there are TWO meetings: The new one and the old one. I found a workaround, but I believe that MS will release fix for this issue. Go to TOOLS &#62; OPTIONS &#62; PREFERENCES &#62; EMAIL OPTIONS &#62; TRACKING OPTIONS and turn OFF PROCESS RECEIPTS AND REQUESTS ON ARRIVAL.]]></description>
			<content:encoded><![CDATA[<div class="bottomcontainerBox" style="border:1px solid #808080;background-color:#F0F4F9;">
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.kreslavsky.com%2F2008%2F07%2Frescheduling-outlook-calendar-meetings-creates-duplicate-meetings.html&amp;layout=button_count&amp;show_faces=false&amp;width=85&amp;action=like&amp;font=verdana&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width=85px; height:21px;" allowTransparency="true"></iframe></div>
			<div style="float:left; width:80px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<g:plusone size="medium" href="http://www.kreslavsky.com/2008/07/rescheduling-outlook-calendar-meetings-creates-duplicate-meetings.html"></g:plusone>
			</div>
			<div style="float:left; width:95px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;">
			<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.kreslavsky.com/2008/07/rescheduling-outlook-calendar-meetings-creates-duplicate-meetings.html"  data-text="Rescheduling Outlook Calendar Meetings creates duplicate meetings" data-count="horizontal">Tweet</a>
			</div><div style="float:left; width:105px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script type="in/share" data-url="http://www.kreslavsky.com/2008/07/rescheduling-outlook-calendar-meetings-creates-duplicate-meetings.html" data-counter="right"></script></div>			
			<div style="float:left; width:85px;padding-right:10px; margin:4px 4px 4px 4px;height:30px;"><script src="http://www.stumbleupon.com/hostedbadge.php?s=1&amp;r=http://www.kreslavsky.com/2008/07/rescheduling-outlook-calendar-meetings-creates-duplicate-meetings.html"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p>Rescheduling Outlook Calendar Meetings creates duplicate meetings</p>
<p>Scenario:</p>
<p>1.       Meeting request comes in.</p>
<p>2.       User accepts.</p>
<p>3.        Meeting shows as accepted in calendar.</p>
<p>4.        An update comes in.</p>
<p>5.       User accepts.</p>
<p>6.        Now there are TWO meetings: The new one and the old one.</p>
<p>I found a workaround, but I believe that MS will release fix for this issue.</p>
<p>Go to TOOLS &gt; OPTIONS &gt; PREFERENCES &gt; EMAIL OPTIONS &gt; TRACKING OPTIONS and turn OFF PROCESS RECEIPTS AND REQUESTS ON ARRIVAL.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kreslavsky.com/2008/07/rescheduling-outlook-calendar-meetings-creates-duplicate-meetings.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

