diff --git a/openpype/tools/workfiles/window.py b/openpype/tools/workfiles/window.py
index 34f7f24b02..afaf7b9967 100644
--- a/openpype/tools/workfiles/window.py
+++ b/openpype/tools/workfiles/window.py
@@ -148,9 +148,12 @@ class SidePanelWidget(QtWidgets.QWidget):
creation_time.strftime(datetime_format),
"Modified:",
modification_time.strftime(datetime_format),
- "User:",
- self.get_user_name(filepath),
)
+ if platform.system() != "Windows":
+ lines += (
+ "User:",
+ self.get_user_name(filepath),
+ )
self._details_input.appendHtml("
".join(lines))
def get_workfile_data(self):