How to clear the SharePoint designer cache?

I created workflowin SharePoint Designer 2013 , but I do not see the changes.

I think the SharePoint Designer is cached.

How can I clear this cache?

+4
source share
2 answers

Here's a batch file that I use to quickly flush everything that SharePoint Designer can cache locally.

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

There are two parts: the first part sometimes solves my problems with SPD, the second part will always fix it, but it will also clear the whole history of which sites I connected to.

+6
source

- SharePoint, :

1)

% USERPROFILE%\AppData\Local\Microsoft\WebsiteCache

2)

% APPDATA%\Microsoft\ -\

3) SharePoint Designer:

- SharePoint Designer

: http://codemanga.com/index.php/2015/07/15/clear-sharepoint-designer-cache/

+3

All Articles