diff --git a/Applications/DataExplorer/DataExplorer.cmake b/Applications/DataExplorer/DataExplorer.cmake
index a63240b4160edea2780f50039b7a26314e0dda49..f11404fd27737cf5990b96b3b13cde8c4e9b82b9 100644
--- a/Applications/DataExplorer/DataExplorer.cmake
+++ b/Applications/DataExplorer/DataExplorer.cmake
@@ -156,7 +156,7 @@ cpack_add_component(ogs_gui
 	GROUP Applications
 )
 set(CPACK_PACKAGE_EXECUTABLES ${CPACK_PACKAGE_EXECUTABLES} "DataExplorer" "OGS Data Explorer")
-
+set(CPACK_NSIS_MENU_LINKS ${CPACK_NSIS_MENU_LINKS} "bin/DataExplorer.exe" "Data Explorer" PARENT_SCOPE)
 IF(APPLE)
 	RETURN()
 ENDIF()
diff --git a/Documentation/OpenGeoSys-Logo.bmp b/Documentation/OpenGeoSys-Logo.bmp
index c5d2afab475972117a3f14f4b15544161ca4ec47..699e64afccc073cc007ab2c48604003e595687f5 100644
Binary files a/Documentation/OpenGeoSys-Logo.bmp and b/Documentation/OpenGeoSys-Logo.bmp differ
diff --git a/scripts/cmake/packaging/Pack.cmake b/scripts/cmake/packaging/Pack.cmake
index 4fd76cfbe40f5f0ac510759e9a110c3632f79863..c32d9503541bb8b186abfb6377eff4e439786445 100644
--- a/scripts/cmake/packaging/Pack.cmake
+++ b/scripts/cmake/packaging/Pack.cmake
@@ -80,7 +80,7 @@ cpack_add_component(ogs_extras
 )
 
 cpack_add_component(ogs_docs
-	DISPLAY_NAME "OpenGeosys documentation"
+	DISPLAY_NAME "Documentation"
 	DESCRIPTION "PDF documentation."
 	GROUP Utilities
 )
diff --git a/scripts/cmake/packaging/PackagingWin.cmake b/scripts/cmake/packaging/PackagingWin.cmake
index b5dc605693a4c9762437676f128be0cfa089739d..4c4865c15a51987441d97bc7c73d4d89df1824b8 100644
--- a/scripts/cmake/packaging/PackagingWin.cmake
+++ b/scripts/cmake/packaging/PackagingWin.cmake
@@ -5,13 +5,12 @@ SET(CPACK_PACKAGE_ICON ${BACKGROUND_IMAGE})
 SET(CPACK_NSIS_INSTALLED_ICON_NAME ${CPACK_NSIS_MUI_ICON})
 SET(CPACK_NSIS_DISPLAY_NAME "${CPACK_PACKAGE_DESCRIPTION_SUMMARY}")
 SET(CPACK_NSIS_CONTACT "info@opengeosys.org")
-SET(CPACK_NSIS_MODIFY_PATH ON)
+SET(CPACK_NSIS_MODIFY_PATH OFF)
 SET(CPACK_NSIS_ENABLE_UNINSTALL_BEFORE_INSTALL ON)
 SET(CPACK_NSIS_HELP_LINK "http://docs.opengeosys.org/assets/files/Documentation/User_Manual.pdf")
 SET(CPACK_NSIS_MENU_LINKS
-	"bin/DataExplorer.exe" "Data Explorer"
 	"bin" "Executables folder"
 	"http://www.opengeosys.org" "Website"
 	"https://github.com/ufz/ogs" "Source code on GitHub"
-	"http://docs.opengeosys.org" "Documentation"
+	"docs" "Documentation folder"
 )