diff --git a/VXMusic/LogParser/Model/ConfigurationModel.cs b/VXMusic/LogParser/Model/ConfigurationModel.cs
index 1a1aa9b..8a4bde8 100644
--- a/VXMusic/LogParser/Model/ConfigurationModel.cs
+++ b/VXMusic/LogParser/Model/ConfigurationModel.cs
@@ -13,8 +13,7 @@ namespace VXMusic.LogParser.VRChat
{
public class ConfigurationModel
{
- public const string UserFolderPath = @"%AppData%\..\Local\VirtualXtensions\VXMusic";
- public static string ExpandedUserFolderPath = Environment.ExpandEnvironmentVariables(UserFolderPath);
+ public static string ExpandedUserFolderPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "VirtualXtensions", "VXMusic");
private static object ConfigMutex = new object();
[Annotation("Polling frequency for individual log file updates.", true, "GENERAL CONFIGURATION")]
diff --git a/VXMusicDesktop/VXMusicDesktop.csproj b/VXMusicDesktop/VXMusicDesktop.csproj
index 7487c48..ad0b2fb 100644
--- a/VXMusicDesktop/VXMusicDesktop.csproj
+++ b/VXMusicDesktop/VXMusicDesktop.csproj
@@ -9,7 +9,7 @@