【发布时间】:2014-11-25 20:45:59
【问题描述】:
我在 SharePoint Designer 2013 中创建了一个 workflow,但我看不到我的更改。
我认为 SharePoint Designer 已缓存。
如何清除此缓存?
【问题讨论】:
标签: sharepoint web workflow sharepoint-designer
我在 SharePoint Designer 2013 中创建了一个 workflow,但我看不到我的更改。
我认为 SharePoint Designer 已缓存。
如何清除此缓存?
【问题讨论】:
标签: sharepoint web workflow sharepoint-designer
这是我用来快速清除 SharePoint Designer 可能已在本地缓存的任何内容的批处理文件。
cd "%appdata%\Microsoft\Web Server Extensions\Cache"
del *.web /S /Q "%appdata%\Microsoft\Web Server Extensions\Cache"
dir "%appdata%\Microsoft\Web Server Extensions\Cache"
@echo off
echo Cache is cleared (you can close this) If you want to be very thorough:
pause
cd "%USERPROFILE%\AppData\Local\Microsoft\WebsiteCache\"
rmdir /S /Q "%USERPROFILE%\AppData\Local\Microsoft\WebsiteCache\."
mkdir "%USERPROFILE%\AppData\Local\Microsoft\WebsiteCache"
dir "%USERPROFILE%\AppData\Local\Microsoft\WebsiteCache"
ECHO:All done!
pause
它有两部分:第一部分有时解决了我的 SPD 问题,第二部分将始终清除它,但它也会清除所有历史记录我连接过哪些网站。
【讨论】:
要清除 SharePoint Designer 缓存,请执行以下步骤:
1) 删除该位置的所有文件
%USERPROFILE%\AppData\Local\Microsoft\WebsiteCache
2) 删除该位置的所有文件
%APPDATA%\Microsoft\Web 服务器扩展\缓存
3) 从 SharePoint Designer 工具选项禁用缓存:
取消选中 -- 跨 SharePoint Designer 会话缓存网站数据
参考:http://codemanga.com/index.php/2015/07/15/clear-sharepoint-designer-cache/
【讨论】: