Skip to content

Commit

Permalink
Fix rectifystart
Browse files Browse the repository at this point in the history
  • Loading branch information
MishaProductions committed Jan 6, 2024
1 parent 5ea6a9c commit acc64e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Rectify11Installer/Core/Backend/Installer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ private void InstallChangelogApp()
{
// Register RectifyStart.exe to run on startup
var key = Registry.CurrentUser.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Run", true);
key?.SetValue("RectifyStart", Path.Combine(Variables.r11Files, "RectifyStart.exe"), RegistryValueKind.String);
key?.SetValue("RectifyStart", Path.Combine(Variables.r11Folder, "RectifyStart.exe"), RegistryValueKind.String);
key.Close();
}
#endregion
Expand Down

0 comments on commit acc64e0

Please sign in to comment.