From: Sebastian Lackner sebastian@fds-team.de
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=15670 Signed-off-by: Alex Henrie alexhenrie24@gmail.com --- loader/wine.inf.in | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/loader/wine.inf.in b/loader/wine.inf.in index 5767b29887..5c4da2f756 100644 --- a/loader/wine.inf.in +++ b/loader/wine.inf.in @@ -527,6 +527,8 @@ HKLM,%CurrentVersionNT%\Perflib,,16 HKLM,%CurrentVersionNT%\Ports,,16 HKLM,%CurrentVersionNT%\Print,,16 HKLM,%CurrentVersionNT%\ProfileList,,16 +; Update/Replace if local_user_sid in server/token.c changes +HKLM,%CurrentVersionNT%\ProfileList\S-1-5-21-0-0-0-1000,,16
[CurrentVersionWow64] HKLM,%CurrentVersion%,"ProgramFilesDir (x86)",,"%16426%"
Alex Henrie alexhenrie24@gmail.com writes:
@@ -527,6 +527,8 @@ HKLM,%CurrentVersionNT%\Perflib,,16 HKLM,%CurrentVersionNT%\Ports,,16 HKLM,%CurrentVersionNT%\Print,,16 HKLM,%CurrentVersionNT%\ProfileList,,16 +; Update/Replace if local_user_sid in server/token.c changes +HKLM,%CurrentVersionNT%\ProfileList\S-1-5-21-0-0-0-1000,,16
It would be better to create this dynamically in some appropriate place instead of hardcoding the SID in wine.inf.
On Fri, Sep 21, 2018 at 10:47 AM Alexandre Julliard julliard@winehq.org wrote:
Alex Henrie alexhenrie24@gmail.com writes:
@@ -527,6 +527,8 @@ HKLM,%CurrentVersionNT%\Perflib,,16 HKLM,%CurrentVersionNT%\Ports,,16 HKLM,%CurrentVersionNT%\Print,,16 HKLM,%CurrentVersionNT%\ProfileList,,16 +; Update/Replace if local_user_sid in server/token.c changes +HKLM,%CurrentVersionNT%\ProfileList\S-1-5-21-0-0-0-1000,,16
It would be better to create this dynamically in some appropriate place instead of hardcoding the SID in wine.inf.
OK. Is wineboot the right place to create this key?
-Alex
Alex Henrie alexhenrie24@gmail.com writes:
On Fri, Sep 21, 2018 at 10:47 AM Alexandre Julliard julliard@winehq.org wrote:
Alex Henrie alexhenrie24@gmail.com writes:
@@ -527,6 +527,8 @@ HKLM,%CurrentVersionNT%\Perflib,,16 HKLM,%CurrentVersionNT%\Ports,,16 HKLM,%CurrentVersionNT%\Print,,16 HKLM,%CurrentVersionNT%\ProfileList,,16 +; Update/Replace if local_user_sid in server/token.c changes +HKLM,%CurrentVersionNT%\ProfileList\S-1-5-21-0-0-0-1000,,16
It would be better to create this dynamically in some appropriate place instead of hardcoding the SID in wine.inf.
OK. Is wineboot the right place to create this key?
It's probably good enough for now, yes.