<?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 2003</title>
	<atom:link href="http://www.kreslavsky.com/category/microsoft/outlook-2003/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>This meeting is not in the Calendar; it may have been moved or deleted – Outlook error</title>
		<link>http://www.kreslavsky.com/2009/07/this-meeting-is-not-in-the-calendar-it-may-have-been-moved-or-deleted-outlook-error.html</link>
		<comments>http://www.kreslavsky.com/2009/07/this-meeting-is-not-in-the-calendar-it-may-have-been-moved-or-deleted-outlook-error.html#comments</comments>
		<pubDate>Thu, 16 Jul 2009 10:42:24 +0000</pubDate>
		<dc:creator>Gil Kreslavsky</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Outlook 2003]]></category>
		<category><![CDATA[Outlook 2007]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[Outlook Calendar]]></category>
		<category><![CDATA[Outlook Email]]></category>
		<category><![CDATA[Outlook Switches]]></category>

		<guid isPermaLink="false">http://www.kreslavsky.com/2009/07/this-meeting-is-not-in-the-calendar-it-may-have-been-moved-or-deleted-outlook-error.html</guid>
		<description><![CDATA[Tweet You receive a meeting and see a small note that meeting is not in your calendar To fix the problem do the following. Close your outlook and search your computer for FRMCACHE.DAT file. Make sure to select hidden and system files. Delete it. Restart Outlook. Outlook should rebuild FRMCACHE.DAT file. Other option is to to run outlook.exe /cleanreminders command line switch . To see other command line switches look at Outlook command line switches.]]></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%2F07%2Fthis-meeting-is-not-in-the-calendar-it-may-have-been-moved-or-deleted-outlook-error.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/07/this-meeting-is-not-in-the-calendar-it-may-have-been-moved-or-deleted-outlook-error.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/07/this-meeting-is-not-in-the-calendar-it-may-have-been-moved-or-deleted-outlook-error.html"  data-text="This meeting is not in the Calendar; it may have been moved or deleted – Outlook error" 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/07/this-meeting-is-not-in-the-calendar-it-may-have-been-moved-or-deleted-outlook-error.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/07/this-meeting-is-not-in-the-calendar-it-may-have-been-moved-or-deleted-outlook-error.html"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p>You receive a meeting and see a small note that meeting is not in your calendar</p>
<p><a href="http://www.kreslavsky.com/wp-content/uploads/2009/07/image.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/07/image_thumb.png" width="401" height="29" /></a> </p>
<p>To fix the problem do the following.</p>
<p>Close your outlook and search your computer for <strong>FRMCACHE.DAT file</strong>.    <br />Make sure to select hidden and system files.</p>
<p>Delete it.   <br />Restart Outlook.</p>
<p>Outlook should rebuild FRMCACHE.DAT file.</p>
<p>Other option is to to run outlook.exe /cleanreminders command line switch .</p>
<p>To see other command line switches look at <a title="Outlook command line switches" href="http://www.kreslavsky.com/2009/03/outlook-2003-command-line-switches.html" target="_blank"><strong>Outlook command line switches</strong></a><strong>.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kreslavsky.com/2009/07/this-meeting-is-not-in-the-calendar-it-may-have-been-moved-or-deleted-outlook-error.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Reduce calendar size in Outlook 2003-2007</title>
		<link>http://www.kreslavsky.com/2009/06/reduce-calendar-size-in-outlook-2003-2007.html</link>
		<comments>http://www.kreslavsky.com/2009/06/reduce-calendar-size-in-outlook-2003-2007.html#comments</comments>
		<pubDate>Wed, 10 Jun 2009 08:51:53 +0000</pubDate>
		<dc:creator>Gil Kreslavsky</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Outlook 2003]]></category>
		<category><![CDATA[Outlook 2007]]></category>
		<category><![CDATA[Outlook Calendar]]></category>
		<category><![CDATA[Outlook Email]]></category>

		<guid isPermaLink="false">http://www.kreslavsky.com/2009/06/reduce-calendar-size-in-outlook-2003-2007.html</guid>
		<description><![CDATA[Tweet To cleanup your calendar size you can delete old meetings and meetings with attachments. navigate to your calendar. Press on View and chose “all appointments” &#160; Chose those that you’d like to delete.]]></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%2F06%2Freduce-calendar-size-in-outlook-2003-2007.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/06/reduce-calendar-size-in-outlook-2003-2007.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/06/reduce-calendar-size-in-outlook-2003-2007.html"  data-text="Reduce calendar size in Outlook 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/06/reduce-calendar-size-in-outlook-2003-2007.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/06/reduce-calendar-size-in-outlook-2003-2007.html"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p>To cleanup your calendar size you can delete old meetings and meetings with attachments.</p>
<ol>
<li>navigate to your calendar.</li>
<li>Press on View and chose “all appointments”     <br />&#160;<a href="http://www.kreslavsky.com/wp-content/uploads/2009/06/image1.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/06/image-thumb1.png" width="244" height="146" /></a> </li>
<li>Chose those that you’d like to delete.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.kreslavsky.com/2009/06/reduce-calendar-size-in-outlook-2003-2007.html/feed</wfw:commentRss>
		<slash:comments>1</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>Outlook 2003 command line switches</title>
		<link>http://www.kreslavsky.com/2009/03/outlook-2003-command-line-switches.html</link>
		<comments>http://www.kreslavsky.com/2009/03/outlook-2003-command-line-switches.html#comments</comments>
		<pubDate>Sun, 15 Mar 2009 10:19:15 +0000</pubDate>
		<dc:creator>Gil Kreslavsky</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Outlook 2003]]></category>
		<category><![CDATA[Command Line Switches]]></category>
		<category><![CDATA[Delivery Location]]></category>
		<category><![CDATA[Example C Program]]></category>
		<category><![CDATA[Ipm]]></category>
		<category><![CDATA[Mail Message]]></category>
		<category><![CDATA[Mail Messages]]></category>
		<category><![CDATA[Message Class]]></category>
		<category><![CDATA[Microsoft Exchange Server]]></category>
		<category><![CDATA[Microsoft Outlook 2003]]></category>
		<category><![CDATA[Note C]]></category>
		<category><![CDATA[Otm]]></category>
		<category><![CDATA[Outlook Calendar]]></category>
		<category><![CDATA[Outlook Exe]]></category>
		<category><![CDATA[Outlook Forms]]></category>
		<category><![CDATA[Personal Folders]]></category>
		<category><![CDATA[Pst File]]></category>
		<category><![CDATA[Search Folders]]></category>
		<category><![CDATA[Stickynote]]></category>

		<guid isPermaLink="false">http://www.kreslavsky.com/?p=601</guid>
		<description><![CDATA[Tweet Full list of Microsoft  Outlook 2003 command line switches and parameters /a &#8211; Creates an item with the specified file as an attachment. Example: &#8220;C:Program FilesMicrosoft OfficeOffice11Outlook.exe&#8221; /a &#8220;C:My Documentslabels.doc&#8221; /altvba otmfilename &#8211; Opens the VBA program specified in otmfilename, rather than %appdata%MicrosoftOutlookVbaProject.OTM. /c messageclass &#8211; Creates a new item of the specified message class (Outlook forms or any other valid MAPI form). Examples: * /c ipm.activity creates a Journal entry * /c ipm.appointment creates an appointment * /c ipm.contact creates a contact * /c ipm.note creates an e-mail message * /c ipm.stickynote creates a note * /c ipm.task creates a task /checkclient &#8211; Prompts for the default manager of e-mail, news, and contacts. /cleanclientrules &#8211; Starts Outlook and deletes client-based rules. /cleandmrecords &#8211; Deletes the logging records saved when a manager or a delegate declines a meeting. /cleanfinders &#8211; Removes Search Folders from the Microsoft Exchange server store. /cleanfreebusy &#8211; Clears and regenerates free/busy information. This switch can only be used when you are able to connect to your Microsoft Exchange server. /cleanprofile &#8211; Removes invalid profile keys and recreates default registry keys where applicable. /cleanpst -Launches Outlook with a clean Personal Folders file (.pst) (Personal Folders file (.pst): Data file that stores your messages and other items on your computer. You can assign a .pst file to be the default delivery location for e-mail messages. You can use a .pst to organize and back up items for safekeeping.). /cleanreminders &#8211; Clears and regenerates reminders. /cleanrules &#8211; Starts Outlook and deletes client- and server-based rules. /cleanschedplus &#8211; Deletes all Schedule+ data (free/busy, permissions, and .cal file) from the server and enables the free/busy information from the Outlook Calendar to be used and viewed by all Schedule+ 1.0 users. /cleanserverrules &#8211; Starts Outlook and deletes server-based rules. /cleansniff &#8211; Deletes duplicate reminder messages. /cleansubscriptions &#8211; Deletes the subscription messages and properties for subscription features. /cleanviews &#8211; Restores default views. All custom views you created are lost. /designer &#8211; Starts Outlook without figuring out if Outlook should be the default client in the first run. /embedding &#8211; Opens the specified message file (.msg) as an OLE embedding. Also used without command-line parameters for standard OLE co-create. /f msgfilename &#8211; Opens the specified message file (.msg) or Microsoft Office saved search (.oss). /firstrun &#8211; Starts Outlook as if it were run for the first time. /hol holfilename &#8211; Opens the specified .hol file. /ical icsfilename &#8211; Opens the specified .ics file. /importprf prffilename &#8211; Launches Outlook and opens/imports the defined MAPI profile (*.prf). If Outlook is already open, queues the profile to be imported on the next clean launch. /l olkfilename &#8211; Opens the specified .olk file. /launchtraininghelp assetid &#8211; Opens a Help window with the Help topic specified in assetid. /m emailname &#8211; Provides a way for the user to add an e-mail name to the item. Only works in conjunction with the /c command-line parameter. Example:Outlook.exe /c ipm.note /m emailname /nocustomize &#8211; Starts Outlook without loading outcmd.dat (customized toolbars) [...]]]></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-2003-command-line-switches.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-2003-command-line-switches.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-2003-command-line-switches.html"  data-text="Outlook 2003 command line switches" 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-2003-command-line-switches.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-2003-command-line-switches.html"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><h2>Full list of Microsoft  Outlook 2003 command line switches and parameters</h2>
<p><strong>/a</strong> &#8211; <em>Creates an item with the specified file as an attachment.</em></p>
<p><strong> Example: </strong> &#8220;C:Program FilesMicrosoft OfficeOffice11Outlook.exe&#8221; /a &#8220;C:My Documentslabels.doc&#8221;</p>
<p><strong>/altvba</strong> <strong>otmfilename</strong> &#8211; <em>Opens the VBA program specified in otmfilename, rather than %appdata%MicrosoftOutlookVbaProject.OTM.</em></p>
<p><strong>/c messageclass</strong> &#8211; <em>Creates a new item of the specified message class (Outlook forms or any other valid MAPI form).</em></p>
<p><strong>Examples: </strong></p>
<ul>
<li>* /c ipm.activity creates a Journal entry</li>
<li>* /c ipm.appointment creates an appointment</li>
<li>* /c ipm.contact creates a contact</li>
<li>* /c ipm.note creates an e-mail message</li>
<li>* /c ipm.stickynote creates a note</li>
<li>* /c ipm.task creates a task</li>
</ul>
<p><strong>/checkclient</strong> &#8211; <em>Prompts for the default manager of e-mail, news, and contacts.</em></p>
<p><strong>/cleanclientrules</strong> &#8211; <em>Starts Outlook and deletes client-based rules.</em></p>
<p><strong>/cleandmrecords</strong> &#8211; <em>Deletes the logging records saved when a manager or a delegate declines a meeting.</em></p>
<p><strong>/cleanfinders</strong> &#8211; <em>Removes Search Folders from the Microsoft Exchange server store.</em></p>
<p><strong>/cleanfreebusy</strong> &#8211; <em>Clears and regenerates free/busy information. This switch can only be used when you are able to connect to your Microsoft Exchange server.</em></p>
<p><strong>/cleanprofile</strong> &#8211; <em>Removes invalid profile keys and recreates default registry keys where applicable.</em></p>
<p><strong>/cleanpst</strong> -<em>Launches Outlook with a clean Personal Folders file (.pst) (Personal Folders file (.pst): Data file that stores your messages and other items on your computer. You can assign a .pst file to be the default delivery location for e-mail messages. You can use a .pst to organize and back up items for safekeeping.).</em></p>
<p><strong>/cleanreminders</strong> &#8211; <em>Clears and regenerates reminders.</em></p>
<p><strong>/cleanrules</strong> &#8211; <em>Starts Outlook and deletes client- and server-based rules.</em></p>
<p><strong>/cleanschedplus</strong> &#8211; <em>Deletes all Schedule+ data (free/busy, permissions, and .cal file) from the server and enables the free/busy information from the Outlook Calendar to be used and viewed by all Schedule+ 1.0 users.</em></p>
<p><strong>/cleanserverrules</strong> &#8211; <em>Starts Outlook and deletes server-based rules.</em></p>
<p><strong>/cleansniff</strong> &#8211; <em>Deletes duplicate reminder messages.</em></p>
<p><strong>/cleansubscriptions</strong> &#8211; <em>Deletes the subscription messages and properties for subscription features.</em></p>
<p><strong>/cleanviews</strong> &#8211; <em>Restores default views. All custom views you created are lost.</em></p>
<p><strong>/designer</strong> &#8211; <em>Starts Outlook without figuring out if Outlook should be the default client in the first run.</em></p>
<p><strong>/embedding</strong> &#8211; <em>Opens the specified message file (.msg) as an OLE embedding. Also used without command-line parameters for standard OLE co-create.</em></p>
<p><strong>/f msgfilename</strong> &#8211; <em>Opens the specified message file (.msg) or Microsoft Office saved search (.oss).</em></p>
<p><strong>/firstrun</strong> &#8211; <em>Starts Outlook as if it were run for the first time.</em></p>
<p><strong>/hol holfilename</strong> &#8211; <em>Opens the specified .hol file.</em></p>
<p><strong>/ical icsfilename</strong> &#8211; <em>Opens the specified .ics file.</em></p>
<p><strong>/importprf prffilename</strong> &#8211; <em>Launches Outlook and opens/imports the defined MAPI profile (*.prf). If Outlook is already open, queues the profile to be imported on the next clean launch.</em></p>
<p><strong>/l olkfilename</strong> &#8211; <em>Opens the specified .olk file.</em></p>
<p><strong>/launchtraininghelp assetid</strong> &#8211; <em>Opens a Help window with the Help topic specified in assetid.</em></p>
<p><strong>/m emailname</strong> &#8211; <em>Provides a way for the user to add an e-mail name to the item. Only works in conjunction with the /c command-line parameter.</em></p>
<p><strong> Example:</strong><em>Outlook.exe /c ipm.note /m emailname</em></p>
<p><strong>/nocustomize</strong> &#8211; <em>Starts Outlook without loading outcmd.dat (customized toolbars) and *.fav file.</em></p>
<p><strong>/noextensions</strong> &#8211; <em>Starts Outlook with extensions turned off, but listed in the Add-In Manager.</em></p>
<p><strong>/nopollmail</strong> &#8211; <em>Starts Outlook without checking mail at startup.</em></p>
<p><strong>/nopreview</strong> &#8211; <em>Starts Outlook with the Reading Pane off.</em></p>
<p><strong>/p msgfilename</strong> &#8211; <em>Prints the specified message (.msg). Does not work with HTML.</em></p>
<p><strong>/profile profilename</strong> &#8211; <em>Loads the specified profile. If your profile name contains a space, enclose the profile name in quotation marks (&#8220;).</em></p>
<p><strong>/profiles</strong> &#8211; <em>Opens the Choose Profile dialog box regardless of the Options setting on the Tools menu.</em></p>
<p><strong>/recycle</strong> &#8211; <em>Starts Outlook using an existing Outlook window, if one exists. Used in combination with /explorer or /folder.</em></p>
<p><strong>/resetfoldernames</strong> &#8211; <em>Resets default folder names (such as Inbox or Sent Items) to default names in the current Office user interface language.<br />
</em>For example, if you first connect to your mailbox Outlook using a Russian user interface, the Russian default folder names cannot be renamed. To change the default folder names to another language such as Japanese or English, you can use this switch to reset the default folder names after changing the user interface language or installing a different language version of Outlook.</p>
<p><strong>/resetfolders</strong> &#8211; <em>Restores missing folders for the default delivery location.</em></p>
<p><strong>/resetnavpane</strong> &#8211; <em>Clears and regenerates the Navigation Pane for the current profile.</em></p>
<p><strong>/rpcdiag</strong> &#8211; <em>Opens Outlook and displays the remote procedure call (RPC) connection status dialog.</em></p>
<p><strong>/s filename</strong> &#8211; <em>Loads the specified shortcuts file (.fav).</em></p>
<p><strong>/safe</strong> &#8211; <em>Starts Outlook without extensions, Reading Pane, or toolbar customization.</em></p>
<p><strong>/safe:1</strong> &#8211; <em>Starts Outlook with the Reading Pane off.</em></p>
<p><strong>/safe:2</strong> -<em>Starts Outlook without checking mail at startup.</em></p>
<p><strong>/safe:3</strong> &#8211; <em>Starts Outlook with extensions turned off, but listed in the Add-In Manager.</em></p>
<p><strong>/safe:4</strong> &#8211; <em>Starts Outlook without loading Outcmd.dat (customized toolbars) and *.fav file.</em></p>
<p><strong>/select foldername</strong> &#8211; <em>Starts Outlook and opens the specified folder in a new window. For example, to open Outlook and display the default calendar use: &#8220;c:Program FilesMicrosoft OfficeOffice11Outlook.exe&#8221; /select outlook:calendar</em></p>
<p><strong>/sniff</strong> &#8211; <em>Starts Outlook and forces a detection of new meeting requests in the Inbox, and then adds them to the calendar.</em></p>
<p><strong>/t oftfilename</strong> &#8211; <em>Opens the specified .oft file.</em></p>
<p><strong>/v vcffilename</strong> &#8211; <em>Opens the specified .vcf file.</em></p>
<p><strong>/vcal vcsfilename</strong> &#8211; <em>Opens the specified .vcs file.</em></p>
<p><strong>/x xnkfilename</strong> &#8211; <em>Opens the specified .xnk file.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kreslavsky.com/2009/03/outlook-2003-command-line-switches.html/feed</wfw:commentRss>
		<slash:comments>2</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>Change default save as location for Office 2007 via GPO</title>
		<link>http://www.kreslavsky.com/2009/01/change-default-save-as-location-for-office-2007-via-gpo.html</link>
		<comments>http://www.kreslavsky.com/2009/01/change-default-save-as-location-for-office-2007-via-gpo.html#comments</comments>
		<pubDate>Thu, 15 Jan 2009 10:28:36 +0000</pubDate>
		<dc:creator>Gil Kreslavsky</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Office 2007]]></category>
		<category><![CDATA[Outlook 2003]]></category>
		<category><![CDATA[Outlook 2007]]></category>
		<category><![CDATA[Server 2003]]></category>
		<category><![CDATA[Adm]]></category>
		<category><![CDATA[C Drive]]></category>
		<category><![CDATA[Default System]]></category>
		<category><![CDATA[Documents Folder]]></category>
		<category><![CDATA[Email Attachment]]></category>
		<category><![CDATA[Gpo]]></category>
		<category><![CDATA[Location Change]]></category>
		<category><![CDATA[Microsoft Article]]></category>
		<category><![CDATA[Microsoft Excell]]></category>
		<category><![CDATA[Microsoft Office]]></category>
		<category><![CDATA[Microsoft Power Point]]></category>
		<category><![CDATA[Microsoft Power Project]]></category>
		<category><![CDATA[Microsoft Project]]></category>
		<category><![CDATA[Microsoft Tools]]></category>
		<category><![CDATA[Microsoft Word]]></category>
		<category><![CDATA[Msc]]></category>
		<category><![CDATA[Office Applications]]></category>
		<category><![CDATA[Terminal Server]]></category>
		<category><![CDATA[Word Microsoft]]></category>
		<category><![CDATA[Word Options]]></category>

		<guid isPermaLink="false">http://www.kreslavsky.com/?p=487</guid>
		<description><![CDATA[Tweet When user is trying to save attachment from outlook or save word/excell file usualy hi is directly redirected to his &#8220;My Documents&#8221;  folder set in his profile. When you work on Terminal server and want to restrict C: drive access it becomes a problem . User receives multiple errors when he try&#8217;s to save file or email attachment. To change default save location for office applications via GPO you first must download office 2007 GPO ADM to your Domain Controler . Extract files to a local folder. Go to group policy by running gpo.msc from run. Navigate to User Configuration Administrative Templates. Pres Right Click on Administrative Templates and chose &#8220;Add/Remove templates&#8221; Press on &#8220;Add&#8221; and navigate to localy extracted ADM file. Now you should see Office 2007 settings in GPO. To change default save location for for Excell 2007 Navigate to Microsoft Office Excell 2007Excell OptionsSave On the right menu locate &#8220;Default file location&#8221; change setting to enabled and insert your save path. To change default save location for for Power Point 2007 Navigate to Microsoft Power Point 2007Power PointOptionsSave On the right menu locate &#8220;Default file location&#8221; change setting to enabled and insert your save path. To change default save location for for Project 2007 Navigate to Microsoft Power Project 2007Tools &#124; OptionsSaveFile Locations On the right menu locate &#8220;Projects and User Templates &#8221; change setting to enabled and insert your save path. To change default save location for for Word 2007 Navigate to Microsoft Word 2007Word OptionsAdvancedFile Locations On the right menu locate &#8220;Default file location &#8221; change setting to enabled and insert your save path. Outlook 2007 is little bit tricky you can&#8217;t set options via Outlook GPO , you can do that via registry or by changing default system &#8220;save in&#8221; location. To change Outlook 2003/2007  save path via registry Follow Microsoft Article KB:823131 To change default system &#8220;save in&#8221; location. In group policy go to User Configuration Administrative TemplatesWindows ComponentsWindows Explorer Common Open File Dialog Click on &#8220;Items displayed in Places Bar&#8221; Add your Save Location. for example servernamesharename ( It can be mounted I: folder)]]></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%2F01%2Fchange-default-save-as-location-for-office-2007-via-gpo.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/01/change-default-save-as-location-for-office-2007-via-gpo.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/01/change-default-save-as-location-for-office-2007-via-gpo.html"  data-text="Change default save as location for Office 2007 via GPO" 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/01/change-default-save-as-location-for-office-2007-via-gpo.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/01/change-default-save-as-location-for-office-2007-via-gpo.html"></script></div>			
			</div><div style="clear:both"></div><div style="padding-bottom:4px;"></div><p>When user is trying to save attachment from outlook or save word/excell file usualy hi is directly redirected to his &#8220;My Documents&#8221;  folder set in his profile.<br />
When you work on Terminal server and want to restrict C: drive access it becomes a problem . User receives multiple errors when he try&#8217;s to save file or email attachment.</p>
<ul>
<li>To change default save location for office applications via GPO you first must <a title="Office 2007 ADM" href="http://www.microsoft.com/downloads/details.aspx?FamilyID=92d8519a-e143-4aee-8f7a-e4bbaeba13e7&amp;displaylang=en" target="_blank">download office 2007 GPO ADM</a> to your Domain Controler .</li>
<li>Extract files to a local folder.</li>
<li>Go to group policy by running gpo.msc from run.</li>
<li>Navigate to User Configuration Administrative Templates.</li>
<li>Pres Right Click on Administrative Templates and chose &#8220;Add/Remove templates&#8221;</li>
<li>Press on &#8220;Add&#8221; and navigate to localy extracted ADM file.</li>
<li>Now you should see Office 2007 settings in GPO.</li>
</ul>
<p><strong>To change default save location for for Excell 2007 </strong></p>
<ul>
<li>Navigate to Microsoft Office Excell 2007Excell OptionsSave</li>
<li>On the right menu locate &#8220;Default file location&#8221; change setting to <strong>enabled</strong> and insert your save path.</li>
</ul>
<p><strong>To change default save location for for Power Point 2007</strong></p>
<ul>
<li>Navigate to Microsoft Power Point 2007Power PointOptionsSave</li>
<li>On the right menu locate &#8220;Default file location&#8221; change setting to <strong>enabled</strong> and insert your save path.</li>
</ul>
<p><strong>To change default save location for for Project 2007</strong></p>
<ul>
<li>Navigate to Microsoft Power Project 2007Tools | OptionsSaveFile Locations</li>
<li>On the right menu locate &#8220;Projects and User Templates &#8221; change setting to <strong>enabled</strong> and insert your save path.</li>
</ul>
<p><strong>To change default save location for for Word 2007</strong></p>
<ul>
<li>Navigate to Microsoft Word 2007Word OptionsAdvancedFile Locations</li>
<li>On the right menu locate &#8220;Default file location &#8221; change setting to <strong>enabled</strong> and insert your save path.</li>
</ul>
<p>Outlook 2007 is little bit tricky you can&#8217;t set options via Outlook GPO , you can do that via registry or by changing default system &#8220;save in&#8221; location.</p>
<p><strong>To change Outlook 2003/2007  save path via registry </strong></p>
<ul>
<li>Follow Microsoft Article <a href="http://support.microsoft.com/kb/823131" target="_blank">KB:823131 </a></li>
</ul>
<p><strong>To change default system &#8220;save in&#8221; location.</strong></p>
<ul>
<li>In group policy go to User Configuration Administrative TemplatesWindows ComponentsWindows Explorer<br />
Common Open File Dialog</li>
<li>Click on &#8220;Items displayed in Places Bar&#8221;</li>
<li>Add your Save Location. for example servernamesharename ( It can be mounted I: folder)<br />
<strong><br />
</strong></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.kreslavsky.com/2009/01/change-default-save-as-location-for-office-2007-via-gpo.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>
	</channel>
</rss>

