Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
c083f0e9
Commit
c083f0e9
authored
Feb 10, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Feb 10, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Read args from the registry when passed the /@ flag.
parent
d42081f8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
64 additions
and
19 deletions
+64
-19
Makefile.in
programs/msiexec/Makefile.in
+1
-1
msiexec.c
programs/msiexec/msiexec.c
+63
-18
No files found.
programs/msiexec/Makefile.in
View file @
c083f0e9
...
...
@@ -4,7 +4,7 @@ SRCDIR = @srcdir@
VPATH
=
@srcdir@
MODULE
=
msiexec.exe
APPMODE
=
-mconsole
IMPORTS
=
msi ole32 user32 kernel32
IMPORTS
=
msi ole32
advapi32
user32 kernel32
C_SRCS
=
\
msiexec.c
...
...
programs/msiexec/msiexec.c
View file @
c083f0e9
...
...
@@ -71,23 +71,28 @@ static const WCHAR ActionAdmin[] = {
static
const
WCHAR
RemoveAll
[]
=
{
'R'
,
'E'
,
'M'
,
'O'
,
'V'
,
'E'
,
'='
,
'A'
,
'L'
,
'L'
,
' '
,
0
};
static
const
WCHAR
InstallRunOnce
[]
=
{
'S'
,
'o'
,
'f'
,
't'
,
'w'
,
'a'
,
'r'
,
'e'
,
'\\'
,
'M'
,
'i'
,
'c'
,
'r'
,
'o'
,
's'
,
'o'
,
'f'
,
't'
,
'\\'
,
'W'
,
'i'
,
'n'
,
'd'
,
'o'
,
'w'
,
's'
,
'\\'
,
'C'
,
'u'
,
'r'
,
'r'
,
'e'
,
'n'
,
't'
,
'V'
,
'e'
,
'r'
,
's'
,
'i'
,
'o'
,
'n'
,
'\\'
,
'I'
,
'n'
,
's'
,
't'
,
'a'
,
'l'
,
'l'
,
'e'
,
'r'
,
'\\'
,
'R'
,
'u'
,
'n'
,
'O'
,
'n'
,
'c'
,
'e'
,
'E'
,
'n'
,
't'
,
'r'
,
'i'
,
'e'
,
's'
,
0
};
static
void
ShowUsage
(
int
ExitCode
)
{
printf
(
UsageStr
);
ExitProcess
(
ExitCode
);
}
static
BOOL
GetProductCode
(
LPWSTR
str
,
LPCWSTR
*
PackageName
,
LPGUID
ProductCode
)
static
BOOL
IsProductCode
(
LPWSTR
str
)
{
BOOL
ret
=
FALSE
;
if
(
lstrlenW
(
str
)
==
38
)
ret
=
(
CLSIDFromString
(
str
,
ProductCode
)
==
NOERROR
);
GUID
ProductCode
;
if
(
!
ret
)
*
PackageName
=
str
;
if
(
lstrlenW
(
str
)
!=
38
)
return
FALSE
;
return
(
(
CLSIDFromString
(
str
,
&
ProductCode
)
==
NOERROR
)
);
return
ret
;
}
static
VOID
StringListAppend
(
struct
string_list
**
list
,
LPCWSTR
str
)
...
...
@@ -399,6 +404,32 @@ void process_args( WCHAR *cmdline, int *pargc, WCHAR ***pargv )
*
pargv
=
argv
;
}
BOOL
process_args_from_reg
(
LPWSTR
ident
,
int
*
pargc
,
WCHAR
***
pargv
)
{
LONG
r
;
HKEY
hkey
=
0
,
hkeyArgs
=
0
;
DWORD
sz
=
0
,
type
=
0
;
LPWSTR
buf
=
NULL
;
BOOL
ret
=
FALSE
;
r
=
RegOpenKeyW
(
HKEY_LOCAL_MACHINE
,
InstallRunOnce
,
&
hkey
);
if
(
r
!=
ERROR_SUCCESS
)
return
FALSE
;
r
=
RegQueryValueExW
(
hkey
,
ident
,
0
,
&
type
,
0
,
&
sz
);
if
(
r
==
ERROR_SUCCESS
&&
type
==
REG_SZ
)
{
buf
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sz
);
r
=
RegQueryValueExW
(
hkey
,
ident
,
0
,
&
type
,
(
LPBYTE
)
buf
,
&
sz
);
if
(
r
==
ERROR_SUCCESS
)
{
process_args
(
buf
,
pargc
,
pargv
);
ret
=
TRUE
;
}
}
RegCloseKey
(
hkeyArgs
);
return
ret
;
}
int
main
(
int
argc
,
char
**
argv
)
{
int
i
;
...
...
@@ -413,9 +444,7 @@ int main(int argc, char **argv)
BOOL
FunctionUnregServer
=
FALSE
;
BOOL
FunctionUnknown
=
FALSE
;
BOOL
GotProductCode
=
FALSE
;
LPCWSTR
PackageName
=
NULL
;
GUID
ProductCode
;
LPWSTR
PackageName
=
NULL
;
LPWSTR
Properties
=
NULL
;
struct
string_list
*
property_list
=
NULL
;
...
...
@@ -439,8 +468,24 @@ int main(int argc, char **argv)
DWORD
ReturnCode
;
LPWSTR
*
argvW
=
NULL
;
/* overwrite the command line */
process_args
(
GetCommandLineW
(),
&
argc
,
&
argvW
);
/*
* If the args begin with /@ IDENT then we need to load the real
* command line out of the RunOnceEntries key in the registry.
* We do that before starting to process the real commandline,
* then overwrite the commandline again.
*/
if
(
!
msi_strequal
(
argvW
[
1
],
"/@"
))
{
if
(
!
process_args_from_reg
(
argvW
[
2
],
&
argc
,
&
argvW
))
return
1
;
}
for
(
i
=
0
;
i
<
argc
;
i
++
)
WINE_ERR
(
"argv[%d]=%s
\n
"
,
i
,
argv
[
i
]);
for
(
i
=
1
;
i
<
argc
;
i
++
)
{
WINE_TRACE
(
"argvW[%d] = %s
\n
"
,
i
,
wine_dbgstr_w
(
argvW
[
i
]));
...
...
@@ -467,7 +512,7 @@ int main(int argc, char **argv)
WINE_TRACE
(
"argvW[%d] = %s
\n
"
,
i
,
wine_dbgstr_w
(
argvW
[
i
]));
argvWi
=
argvW
[
i
];
}
GotProductCode
=
GetProductCode
(
argvWi
,
&
PackageName
,
&
ProductCode
)
;
PackageName
=
argvWi
;
}
else
if
(
!
msi_strequal
(
argvW
[
i
],
"/a"
))
{
...
...
@@ -547,7 +592,7 @@ int main(int argc, char **argv)
if
(
i
>=
argc
)
ShowUsage
(
1
);
WINE_TRACE
(
"argvW[%d] = %s
\n
"
,
i
,
wine_dbgstr_w
(
argvW
[
i
]));
GotProductCode
=
GetProductCode
(
argvW
[
i
],
&
PackageName
,
&
ProductCode
)
;
PackageName
=
argvW
[
i
]
;
}
else
if
(
!
msi_strequal
(
argvW
[
i
],
"/x"
))
{
...
...
@@ -556,7 +601,7 @@ int main(int argc, char **argv)
if
(
i
>=
argc
)
ShowUsage
(
1
);
WINE_TRACE
(
"argvW[%d] = %s
\n
"
,
i
,
wine_dbgstr_w
(
argvW
[
i
]));
GotProductCode
=
GetProductCode
(
argvW
[
i
],
&
PackageName
,
&
ProductCode
)
;
PackageName
=
argvW
[
i
]
;
StringListAppend
(
&
property_list
,
RemoveAll
);
}
else
if
(
!
msi_strprefix
(
argvW
[
i
],
"/j"
))
...
...
@@ -813,7 +858,7 @@ int main(int argc, char **argv)
else
{
FunctionInstall
=
TRUE
;
GotProductCode
=
GetProductCode
(
argvW
[
i
],
&
PackageName
,
&
ProductCode
)
;
PackageName
=
argvW
[
i
]
;
}
}
...
...
@@ -826,14 +871,14 @@ int main(int argc, char **argv)
ReturnCode
=
1
;
if
(
FunctionInstall
)
{
if
(
GotProductCode
)
WINE_FIXME
(
"Product code treatment not implemented yet
\n
"
);
if
(
IsProductCode
(
PackageName
)
)
ReturnCode
=
MsiConfigureProductExW
(
PackageName
,
0
,
INSTALLSTATE_DEFAULT
,
Properties
);
else
ReturnCode
=
MsiInstallProductW
(
PackageName
,
Properties
);
}
else
if
(
FunctionRepair
)
{
if
(
GotProductCode
)
if
(
IsProductCode
(
PackageName
)
)
WINE_FIXME
(
"Product code treatment not implemented yet
\n
"
);
else
ReturnCode
=
MsiReinstallProductW
(
PackageName
,
RepairMode
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment