如何清除SharePoint Designer缓存?

4 sharepoint workflow sharepoint-designer web

workflowSharePoint Designer 2013中创建了一个,但我无法看到我的更改.

我认为SharePoint Designer是缓存的.

如何清除此缓存?

小智 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
Run Code Online (Sandbox Code Playgroud)

它有两个部分:第一部分有时解决我的SPD问题,第二部分总是清除它,它也将清除我连接到的网站的所有历史.