diff --git a/CellFrameDashboardGUI/main.cpp b/CellFrameDashboardGUI/main.cpp
index c757d815295dca6b19cc6035654898da59441993..8e10f3a7cceb1f8c87c4b5e99a6d6380d6167475 100644
--- a/CellFrameDashboardGUI/main.cpp
+++ b/CellFrameDashboardGUI/main.cpp
@@ -15,6 +15,10 @@
 #include "DapLogMessage.h"
 #include "DapWallet.h"
 
+#ifdef Q_OS_WIN
+#include "registry.h"
+#endif
+
 #include <sys/stat.h>
 
 int main(int argc, char *argv[])
@@ -36,7 +40,7 @@ int main(int argc, char *argv[])
 	mkdir("/tmp/cellframe-dashboard_log",0777);
 	dapLogger.setLogFile(QString("/tmp/cellframe-dashboard_log/%1Gui.log").arg(DAP_BRAND));
     #elif defined Q_OS_WIN
-    dapLogger.setLogFile(QString("%Dashboard.log").arg(DAP_BRAND));
+    dapLogger.setLogFile(QString("%1/%2/log/%2GUI.log").arg(regGetUsrPath()).arg(DAP_BRAND));
     dapLogger.setLogLevel(L_DEBUG);
     #endif
 //#endif
diff --git a/CellFrameDashboardService/main.cpp b/CellFrameDashboardService/main.cpp
index 5f4a0204754c6b0cae773c0f015d6697fcf45470..bbc7b6d5ef5b6e6ab070e9bdf8e3adf4b37690e7 100755
--- a/CellFrameDashboardService/main.cpp
+++ b/CellFrameDashboardService/main.cpp
@@ -12,6 +12,10 @@
 
 #include <sys/stat.h>
 
+#ifdef Q_OS_WIN
+#include "registry.h"
+#endif
+
 void processArgs();
 
 int main(int argc, char *argv[])
@@ -41,7 +45,7 @@ int main(int argc, char *argv[])
     #ifdef Q_OS_LINUX
         dapLogger.setLogFile(QString("/opt/cellframe-dashboard/log/%1Service.log").arg(DAP_BRAND));
     #elif defined Q_OS_WIN
-        dapLogger.setLogFile(QString("%1Service.log").arg(DAP_BRAND));
+        dapLogger.setLogFile(QString("%1/%2/log/%2Service.log").arg(regGetUsrPath()).arg(DAP_BRAND));
         dapLogger.setLogLevel(L_INFO);
     #elif defined Q_OS_MAC
 	mkdir("tmp/cellframe-dashboard_log",0777);