如何清除SharePoint Designer缓存?

如何清除SharePoint Designer缓存?,sharepoint,web,workflow,sharepoint-designer,Sharepoint,Web,Workflow,Sharepoint Designer,我在SharePoint Designer 2013中创建了一个工作流,但我看不到我的更改 我认为SharePoint Designer已缓存 如何清除此缓存?这是一个批处理文件,我可以使用它快速清除SharePoint Designer可能在本地缓存的任何内容 cd "%appdata%\Microsoft\Web Server Extensions\Cache" del *.web /S /Q "%appdata%\Microsoft\Web Server Extensions\Cache"

我在SharePoint Designer 2013中创建了一个
工作流
,但我看不到我的更改

我认为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服务器扩展\Cache

3) 从SharePoint Designer工具选项禁用缓存:

取消选中--跨SharePoint Designer会话缓存站点数据

参考: