diff --git a/dll/shellext/zipfldr/CZipCreator.cpp b/dll/shellext/zipfldr/CZipCreator.cpp index c0ba8da0b68..62b6a3929e7 100644 --- a/dll/shellext/zipfldr/CZipCreator.cpp +++ b/dll/shellext/zipfldr/CZipCreator.cpp @@ -353,6 +353,12 @@ unsigned CZipCreatorImpl::JustDoIt() MessageBoxW(NULL, strText, strTitle, MB_ICONERROR); } + else + { + WCHAR szFullPath[MAX_PATH]; + GetFullPathNameW(strZipName, _countof(szFullPath), szFullPath, NULL); + SHChangeNotify(SHCNE_CREATE, SHCNF_PATHW, szFullPath, NULL); + } return err; }