在帐户设置下Outlook2016。
在gui中有一个选项mail to keep offline
,可以缓存电子邮件。
问题:由于未知的原因,它停留在一个月或所有时间。
一个人应该能够通过政策或登记改变这一时期:
HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\xx.0\Outlook\Cached Mode
xx.0 =
Outlook 2016 is 16.0
Outlook 2013 is 15.0
Outlook 2010 is 14.0
Outlook 2007 is 12.0
Outlook 2003 is 11.0
Create a DWORD value of SyncWindowSetting, and then set the desired value:
0 = All (whole mailbox)
1 = 1 month of email items
3 = 3 months of email items
6 = 6 months of email items
12 = 1 year of email items
24 = 2 years of email items
36 = 3 years of email items (Outlook 2016 only)
60 = 5 years of email items (Outlook 2016 only)
我甚至添加了Dword值Enable
并将其设置为1。
我需要将syncWindowSetting设置为12,将一年的电子邮件缓存在OST中,但是outlook接缝会完全忽略这些值,并且只坚持一个月或全部。
任何让它只工作一年的想法都是受欢迎的。
我的outlook设置的注册表导出如下:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\16.0\Outlook\Cached Mode]
"SyncWindowSetting"=dword:0000000c
"SyncWindowSettingDays"=dword:00000000
"Enable"=dword:00000001
然而,无论我在2016年内部做什么,它都停留在1个月。
至于注册表权限,用户和系统可以读取上面的条目。
发布于 2021-01-20 05:45:20
除了SyncWindowSetting
之外,还需要在注册表中添加另一个DWORD键:
SyncWindowSetting
值:12
SyncWindowSettingDays
值:0
下表记录了两个键(Update允许管理员为Outlook 2016中的新Exchange帐户设置额外的默认邮件和日历同步窗口)的对应值:
我的测试结果供你参考:
https://serverfault.com/questions/1050401
复制相似问题