我在 SharePoint Designer 2013 中创建了workflow
,但我无法看到我的更改。
我认为 SharePoint Designer 已缓存。
如何清除此缓存?
答案 0 :(得分:6)
这是一个批处理文件,用于快速清除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
它有2个部分:第一部分有时解决我的SPD问题,第二部分将始终清除它,但它也将清除了解我所连接的网站的历史。
答案 1 :(得分:3)
要清除SharePoint Designer缓存,请执行以下步骤:
1)删除位置
中的所有文件%USERPROFILE%\应用程序数据\本地\微软\ WebsiteCache
2)删除位置
中的所有文件%APPDATA%\ Microsoft \ Web Server Extensions \ Cache
3)禁用SharePoint Designer工具选项中的缓存:
取消选中 - 跨SharePoint Designer会话缓存网站数据
参考:http://codemanga.com/index.php/2015/07/15/clear-sharepoint-designer-cache/