diff --git a/EventMonitor/App.cpp b/EventMonitor/App.cpp
index 40249eb..c4e78d3 100644
--- a/EventMonitor/App.cpp
+++ b/EventMonitor/App.cpp
@@ -46,7 +46,7 @@ bool wxEventMonitorApp::OnInit()
::MsiUseFeature(_T(PRODUCT_VERSION_GUID), _T("featEventMonitor"));
#endif
- wxConfigBase *cfgPrev = wxConfigBase::Set(new wxConfig(wxT("EventMonitor"), wxT(PRODUCT_NAME_STR)));
+ wxConfigBase *cfgPrev = wxConfigBase::Set(new wxConfig(wxT(PRODUCT_NAME_STR), wxT(VENDOR_NAME_STR)));
if (cfgPrev) wxDELETE(cfgPrev);
if (!wxApp::OnInit())
diff --git a/EventMonitor/wxEventMonitor_UI.cpp b/EventMonitor/wxEventMonitor_UI.cpp
index 5f3d61c..a7b2248 100644
--- a/EventMonitor/wxEventMonitor_UI.cpp
+++ b/EventMonitor/wxEventMonitor_UI.cpp
@@ -18,7 +18,7 @@ wxEventMonitorLogPanelBase::wxEventMonitorLogPanelBase( wxWindow* parent, wxWind
wxBoxSizer* bSizerMain;
bSizerMain = new wxBoxSizer( wxVERTICAL );
- m_log = new wxETWListCtrl( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLC_NO_SORT_HEADER|wxLC_REPORT|wxLC_VIRTUAL|wxNO_BORDER, wxDefaultValidator, wxT("Log") );
+ m_log = new wxETWListCtrl( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLC_NO_SORT_HEADER|wxLC_REPORT|wxLC_VIRTUAL|wxNO_BORDER, wxDefaultValidator, wxT("EventMonitorLog") );
bSizerMain->Add( m_log, 1, wxEXPAND, 5 );
diff --git a/EventMonitor/wxEventMonitor_UI.fbp b/EventMonitor/wxEventMonitor_UI.fbp
index d5d9055..f48cab7 100644
--- a/EventMonitor/wxEventMonitor_UI.fbp
+++ b/EventMonitor/wxEventMonitor_UI.fbp
@@ -141,7 +141,7 @@
wxDefaultValidator
- Log
+ EventMonitorLog
wxNO_BORDER
diff --git a/MSI/Base/Main/Makefile b/MSI/Base/Main/Makefile
index 37c7ee7..c7e0e7b 100644
Binary files a/MSI/Base/Main/Makefile and b/MSI/Base/Main/Makefile differ
diff --git a/MSI/MSIBuild b/MSI/MSIBuild
index 7a459c8..cc188d9 160000
--- a/MSI/MSIBuild
+++ b/MSI/MSIBuild
@@ -1 +1 @@
-Subproject commit 7a459c8c6c785bffb63a73219998a57f8d610de5
+Subproject commit cc188d9860459f1e12c36592b189f3f5686a253a
diff --git a/include/MSIBuildCfg.mak b/include/MSIBuildCfg.mak
index 7306123..ecd3829 100644
Binary files a/include/MSIBuildCfg.mak and b/include/MSIBuildCfg.mak differ
diff --git a/include/Version.h b/include/Version.h
index 955101a..431fff6 100644
--- a/include/Version.h
+++ b/include/Version.h
@@ -60,6 +60,11 @@
//
#define PRODUCT_VERSION_GUID "{13ADDFF3-B249-4AB5-9FAD-E4CDCED62B11}"
+//
+// Product vendor
+//
+#define VENDOR_NAME_STR "GÉANT"
+
//
// Since the product name is not finally confirmed at the time of
// developing it, make it easily customizable.