WVD outlook 提示未经许可/非商业产品

WVD outlook prompts for unlicensed/ non-commercial product

我们将 outlook、word 和 excel 作为远程应用程序提供给我们的用户,但是每当用户启动远程应用程序时,系统都会提示他们重新创建配置文件,这表明它找不到前几天的 OST文件。

提示状态为 "sign in to set up office",但是如果您完成登录过程,您将在第二天早上遇到同样的问题。

我们 运行 Windows 10 多会话与 Office Pro-Plus。

我已确认图像正确无误,注册码用于共享计算机设置。如下文所述:

https://docs.microsoft.com/en-us/deployoffice/troubleshoot-shared-computer-activation

有什么我遗漏的吗?

提前致谢:)

看起来您只需要为企业激活状态重置 Microsoft 365 应用,请参阅此link:https://docs.microsoft.com/en-us/office/troubleshoot/activation/reset-office-365-proplus-activation-state#step-2-remove-cached-identities-in-hkcu-registry清除托管设备的 Office 凭据和激活状态

我已经在下面为您总结了所需的代码,但是您必须下载上面第一个 link 的 vbs 文件:

taskkill /IM WinWord.exe /F
taskkill /IM Excel.exe /F
taskkill /IM Outlook.exe /F
taskkill /IM PowerPoint.exe /F
taskkill /IM Lync.exe /F
taskkill /IM MSACCESS.EXE /F
taskkill /IM Teams.exe /F
taskkill /IM MSPub.exe /F
taskkill /IM OneNote.exe /F
taskkill /IM OneNoteM.exe /F
taskkill /IM iexplore.exe /F
taskkill /IM OfficeClickToRun.exe /F
taskkill /IM OneDrive.exe /F
cscript 1-HKLM-O365-no-prompt.vbs
cscript OLicenseCleanup.vbs
del /F /Q %localappdata%\Microsoft\Office.0\Licensing\
REG DELETE HKCU\Software\Microsoft\Office.0\Common\Identity /f
REG DELETE HKCU\Software\Microsoft\Office.0\Registration /f
REG ADD HKCU\Software\Microsoft\Office.0\Common\Identity /v EnableADAL /t REG_DWORD /d 00000000 /f
REG ADD HKCU\Software\Microsoft\Office.0\Common\Identity /v DisableADALatopWAMOverride /t REG_DWORD /d 00000001 /f

我在工作中经常遇到这个问题,尤其是当用户切换设备时。似乎有时 Windows 会保留 Office 许可证信息,当新用户尝试激活时它不会更新。它相对容易修复,并且此站点有关于如何删除旧许可证信息的快速指南

http://itwalkthroughs.com/knowledge-base/office-apps-show-unlicensed-product/