我们即将为大约100 XP笔记本电脑启动一个刷新项目,并关注.NK2文件,该文件保存缓存的电子邮件地址(?)。如果可能的话,我们想让USMT移动/迁移它,但是我找不到任何东西可以确认这种情况是自动发生的,或者是以前已经发生过的。我看到了很多手动过程,但在这一点上,我不确定我们是否可以使用它。有人做过这件事或者看到过吗?也许你可以告诉我一种资源,它能让我知道它是怎么做的?如有任何资料,将不胜感激。USMT似乎得到了很多细节,但缺少这部分似乎很奇怪。谢谢您的回复。
发布于 2018-04-25 17:11:36
2007/2010年至2013/2016年期间也可以这样做。为了使nk2文件正确导入,它们需要具有相同的outlook名称。例如,将默认Outlook配置文件设置为Outlook。这是您可以在Custom.XML文件中放置的语法。
<!-- Outlook Rename NK2 -->
<component type="Application" context="User">
<displayName _locID="custom.Outlook">NK2 filename</displayName>
<role role="Data">
<detection name="Office 2007">
<conditions>
<condition>MigXmlHelper.DoesObjectExist("File","%CSIDL_PROGRAM_FILESX86%\Microsoft Office\Office12\outlook.exe")</condition>
</conditions>
</detection>
<rules context="User">
<include>
<objectSet>
<pattern type="File">%CSIDL_APPDATA%\Microsoft\Outlook\ [Default Outlook Profile.NK2]</pattern>
</objectSet>
</include>
<locationModify script="MigXmlHelper.RelativeMove('%CSIDL_APPDATA%\Microsoft\Outlook\ [Default Outlook Profile.NK2]','%CSIDL_APPDATA%\Microsoft\Outlook\ [Outlook.NK2]')">
<objectSet>
<pattern type="File">%CSIDL_APPDATA%\Microsoft\Outlook\ [Default Outlook Profile.NK2]</pattern>
</objectSet>
</locationModify>
</rules>
</role>
</component>将默认Outlook Profile.Nk2修改为组织中的默认配置文件名称。然后将其更改为您希望配置文件名是什么(在这里我使用Outlook.Nk2)。
https://serverfault.com/questions/244721
复制相似问题