From c8548fb88d569f63f43fb009072ff8f03e562cb0 Mon Sep 17 00:00:00 2001 From: Mike McCormack Date: Fri, 25 Aug 2006 22:35:29 +0900 Subject: [PATCH] msi: Set the ALLUSERS property to 1 always. --- dlls/msi/package.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlls/msi/package.c b/dlls/msi/package.c index 227be6cd63..5a22957043 100644 --- a/dlls/msi/package.c +++ b/dlls/msi/package.c @@ -212,6 +212,7 @@ static VOID set_installer_properties(MSIPACKAGE *package) static const WCHAR szColorBits[] = {'C','o','l','o','r','B','i','t','s',0}; static const WCHAR szScreenFormat[] = {'%','d',0}; static const WCHAR szIntel[] = { 'I','n','t','e','l',0 }; + static const WCHAR szAllUsers[] = { 'A','L','L','U','S','E','R','S',0 }; SYSTEM_INFO sys_info; /* @@ -315,6 +316,7 @@ static VOID set_installer_properties(MSIPACKAGE *package) /* in a wine environment the user is always admin and privileged */ MSI_SetPropertyW(package,szAdminUser,szOne); MSI_SetPropertyW(package,szPriv,szOne); + MSI_SetPropertyW(package, szAllUsers, szOne); /* set the os things */ OSVersion.dwOSVersionInfoSize = sizeof(OSVERSIONINFOA); -- 2.32.0.93.g670b81a890