push 9eb9af089d68d39110a91889d3a673043db63c4b
[wine/hacks.git] / programs / msiexec / msiexec.c
blob9221fa2a9ced2e9f9ffb76d1c74013448a0d8b87
1 /*
2 * msiexec.exe implementation
4 * Copyright 2004 Vincent Béron
5 * Copyright 2005 Mike McCormack
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #define WIN32_LEAN_AND_MEAN
24 #include <windows.h>
25 #include <msi.h>
26 #include <objbase.h>
27 #include <stdio.h>
29 #include "wine/debug.h"
30 #include "wine/unicode.h"
32 WINE_DEFAULT_DEBUG_CHANNEL(msiexec);
34 typedef HRESULT (WINAPI *DLLREGISTERSERVER)(void);
35 typedef HRESULT (WINAPI *DLLUNREGISTERSERVER)(void);
37 DWORD DoService(void);
39 struct string_list
41 struct string_list *next;
42 WCHAR str[1];
45 static const char UsageStr[] =
46 "Usage:\n"
47 " Install a product:\n"
48 " msiexec {package|productcode} [property]\n"
49 " msiexec /i {package|productcode} [property]\n"
50 " msiexec /a package [property]\n"
51 " Repair an installation:\n"
52 " msiexec /f[p|o|e|d|c|a|u|m|s|v] {package|productcode}\n"
53 " Uninstall a product:\n"
54 " msiexec /x {package|productcode} [property]\n"
55 " Advertise a product:\n"
56 " msiexec /j[u|m] package [/t transform] [/g languageid]\n"
57 " msiexec {u|m} package [/t transform] [/g languageid]\n"
58 " Apply a patch:\n"
59 " msiexec /p patchpackage [property]\n"
60 " msiexec /p patchpackage /a package [property]\n"
61 " Modifiers for above operations:\n"
62 " msiexec /l[*][i|w|e|a|r|u|c|m|o|p|v|][+|!] logfile\n"
63 " msiexec /q{|n|b|r|f|n+|b+|b-}\n"
64 " Register a module:\n"
65 " msiexec /y module\n"
66 " Unregister a module:\n"
67 " msiexec /z module\n"
68 " Display usage and copyright:\n"
69 " msiexec {/h|/?}\n"
70 "NOTE: Product code on commandline unimplemented as of yet\n"
71 "\n"
72 "Copyright 2004 Vincent Béron\n";
74 static const WCHAR ActionAdmin[] = {
75 'A','C','T','I','O','N','=','A','D','M','I','N',0 };
76 static const WCHAR RemoveAll[] = {
77 'R','E','M','O','V','E','=','A','L','L',0 };
79 static const WCHAR InstallRunOnce[] = {
80 'S','o','f','t','w','a','r','e','\\',
81 'M','i','c','r','o','s','o','f','t','\\',
82 'W','i','n','d','o','w','s','\\',
83 'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
84 'I','n','s','t','a','l','l','e','r','\\',
85 'R','u','n','O','n','c','e','E','n','t','r','i','e','s',0};
87 static void ShowUsage(int ExitCode)
89 printf(UsageStr);
90 ExitProcess(ExitCode);
93 static BOOL IsProductCode(LPWSTR str)
95 GUID ProductCode;
97 if(lstrlenW(str) != 38)
98 return FALSE;
99 return ( (CLSIDFromString(str, &ProductCode) == NOERROR) );
103 static VOID StringListAppend(struct string_list **list, LPCWSTR str)
105 struct string_list *entry;
106 DWORD size;
108 size = sizeof *entry + lstrlenW(str) * sizeof (WCHAR);
109 entry = HeapAlloc(GetProcessHeap(), 0, size);
110 if(!entry)
112 WINE_ERR("Out of memory!\n");
113 ExitProcess(1);
115 lstrcpyW(entry->str, str);
116 entry->next = NULL;
119 * Ignoring o(n^2) time complexity to add n strings for simplicity,
120 * add the string to the end of the list to preserve the order.
122 while( *list )
123 list = &(*list)->next;
124 *list = entry;
127 static LPWSTR build_properties(struct string_list *property_list)
129 struct string_list *list;
130 LPWSTR ret, p, value;
131 DWORD len;
132 BOOL needs_quote;
134 if(!property_list)
135 return NULL;
137 /* count the space we need */
138 len = 1;
139 for(list = property_list; list; list = list->next)
140 len += lstrlenW(list->str) + 3;
142 ret = HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR) );
144 /* add a space before each string, and quote the value */
145 p = ret;
146 for(list = property_list; list; list = list->next)
148 value = strchrW(list->str,'=');
149 if(!value)
150 continue;
151 len = value - list->str;
152 *p++ = ' ';
153 memcpy(p, list->str, len * sizeof(WCHAR));
154 p += len;
155 *p++ = '=';
157 /* check if the value contains spaces and maybe quote it */
158 value++;
159 needs_quote = strchrW(value,' ') ? 1 : 0;
160 if(needs_quote)
161 *p++ = '"';
162 len = lstrlenW(value);
163 memcpy(p, value, len * sizeof(WCHAR));
164 p += len;
165 if(needs_quote)
166 *p++ = '"';
168 *p = 0;
170 WINE_TRACE("properties -> %s\n", wine_dbgstr_w(ret) );
172 return ret;
175 static LPWSTR build_transforms(struct string_list *transform_list)
177 struct string_list *list;
178 LPWSTR ret, p;
179 DWORD len;
181 /* count the space we need */
182 len = 1;
183 for(list = transform_list; list; list = list->next)
184 len += lstrlenW(list->str) + 1;
186 ret = HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR) );
188 /* add all the transforms with a semicolon between each one */
189 p = ret;
190 for(list = transform_list; list; list = list->next)
192 len = lstrlenW(list->str);
193 lstrcpynW(p, list->str, len );
194 p += len;
195 if(list->next)
196 *p++ = ';';
198 *p = 0;
200 return ret;
203 static DWORD msi_atou(LPCWSTR str)
205 DWORD ret = 0;
206 while(*str >= '0' && *str <= '9')
208 ret *= 10;
209 ret += (*str - '0');
210 str++;
212 return ret;
215 static LPWSTR msi_strdup(LPCWSTR str)
217 DWORD len = lstrlenW(str)+1;
218 LPWSTR ret = HeapAlloc(GetProcessHeap(), 0, sizeof(WCHAR)*len);
219 lstrcpyW(ret, str);
220 return ret;
223 /* str1 is the same as str2, ignoring case */
224 static BOOL msi_strequal(LPCWSTR str1, LPCSTR str2)
226 DWORD len, ret;
227 LPWSTR strW;
229 len = MultiByteToWideChar( CP_ACP, 0, str2, -1, NULL, 0);
230 if( !len )
231 return FALSE;
232 if( lstrlenW(str1) != (len-1) )
233 return FALSE;
234 strW = HeapAlloc(GetProcessHeap(), 0, sizeof(WCHAR)*len);
235 MultiByteToWideChar( CP_ACP, 0, str2, -1, strW, len);
236 ret = CompareStringW(GetThreadLocale(), NORM_IGNORECASE, str1, len, strW, len);
237 HeapFree(GetProcessHeap(), 0, strW);
238 return (ret == CSTR_EQUAL);
241 /* prefix is hyphen or dash, and str1 is the same as str2, ignoring case */
242 static BOOL msi_option_equal(LPCWSTR str1, LPCSTR str2)
244 if (str1[0] != '/' && str1[0] != '-')
245 return FALSE;
247 /* skip over the hyphen or slash */
248 return msi_strequal(str1 + 1, str2);
251 /* str2 is at the beginning of str1, ignoring case */
252 static BOOL msi_strprefix(LPCWSTR str1, LPCSTR str2)
254 DWORD len, ret;
255 LPWSTR strW;
257 len = MultiByteToWideChar( CP_ACP, 0, str2, -1, NULL, 0);
258 if( !len )
259 return FALSE;
260 if( lstrlenW(str1) < (len-1) )
261 return FALSE;
262 strW = HeapAlloc(GetProcessHeap(), 0, sizeof(WCHAR)*len);
263 MultiByteToWideChar( CP_ACP, 0, str2, -1, strW, len);
264 ret = CompareStringW(GetThreadLocale(), NORM_IGNORECASE, str1, len-1, strW, len-1);
265 HeapFree(GetProcessHeap(), 0, strW);
266 return (ret == CSTR_EQUAL);
269 /* prefix is hyphen or dash, and str2 is at the beginning of str1, ignoring case */
270 static BOOL msi_option_prefix(LPCWSTR str1, LPCSTR str2)
272 if (str1[0] != '/' && str1[0] != '-')
273 return FALSE;
275 /* skip over the hyphen or slash */
276 return msi_strprefix(str1 + 1, str2);
279 static VOID *LoadProc(LPCWSTR DllName, LPCSTR ProcName, HMODULE* DllHandle)
281 VOID* (*proc)(void);
283 *DllHandle = LoadLibraryExW(DllName, NULL, LOAD_WITH_ALTERED_SEARCH_PATH);
284 if(!*DllHandle)
286 fprintf(stderr, "Unable to load dll %s\n", wine_dbgstr_w(DllName));
287 ExitProcess(1);
289 proc = (VOID *) GetProcAddress(*DllHandle, ProcName);
290 if(!proc)
292 fprintf(stderr, "Dll %s does not implement function %s\n",
293 wine_dbgstr_w(DllName), ProcName);
294 FreeLibrary(*DllHandle);
295 ExitProcess(1);
298 return proc;
301 static DWORD DoDllRegisterServer(LPCWSTR DllName)
303 HRESULT hr;
304 DLLREGISTERSERVER pfDllRegisterServer = NULL;
305 HMODULE DllHandle = NULL;
307 pfDllRegisterServer = LoadProc(DllName, "DllRegisterServer", &DllHandle);
309 hr = pfDllRegisterServer();
310 if(FAILED(hr))
312 fprintf(stderr, "Failed to register dll %s\n", wine_dbgstr_w(DllName));
313 return 1;
315 printf("Successfully registered dll %s\n", wine_dbgstr_w(DllName));
316 if(DllHandle)
317 FreeLibrary(DllHandle);
318 return 0;
321 static DWORD DoDllUnregisterServer(LPCWSTR DllName)
323 HRESULT hr;
324 DLLUNREGISTERSERVER pfDllUnregisterServer = NULL;
325 HMODULE DllHandle = NULL;
327 pfDllUnregisterServer = LoadProc(DllName, "DllUnregisterServer", &DllHandle);
329 hr = pfDllUnregisterServer();
330 if(FAILED(hr))
332 fprintf(stderr, "Failed to unregister dll %s\n", wine_dbgstr_w(DllName));
333 return 1;
335 printf("Successfully unregistered dll %s\n", wine_dbgstr_w(DllName));
336 if(DllHandle)
337 FreeLibrary(DllHandle);
338 return 0;
341 static DWORD DoRegServer(void)
343 SC_HANDLE scm, service;
344 CHAR path[MAX_PATH+12];
345 DWORD ret = 0;
347 scm = OpenSCManagerA(NULL, SERVICES_ACTIVE_DATABASEA, SC_MANAGER_CREATE_SERVICE);
348 if (!scm)
350 fprintf(stderr, "Failed to open the service control manager.\n");
351 return 1;
354 GetSystemDirectoryA(path, MAX_PATH);
355 lstrcatA(path, "\\msiexec.exe /V");
357 service = CreateServiceA(scm, "MSIServer", "MSIServer", GENERIC_ALL,
358 SERVICE_WIN32_SHARE_PROCESS, SERVICE_DEMAND_START,
359 SERVICE_ERROR_NORMAL, path, NULL, NULL,
360 NULL, NULL, NULL);
362 if (service) CloseServiceHandle(service);
363 else if (GetLastError() != ERROR_SERVICE_EXISTS)
365 fprintf(stderr, "Failed to create MSI service\n");
366 ret = 1;
368 CloseServiceHandle(scm);
369 return ret;
372 static INT DoEmbedding( LPWSTR key )
374 printf("Remote custom actions are not supported yet\n");
375 return 1;
379 * state machine to break up the command line properly
382 enum chomp_state
384 cs_whitespace,
385 cs_token,
386 cs_quote
389 static int chomp( WCHAR *str )
391 enum chomp_state state = cs_token;
392 WCHAR *p, *out;
393 int count = 1, ignore;
395 for( p = str, out = str; *p; p++ )
397 ignore = 1;
398 switch( state )
400 case cs_whitespace:
401 switch( *p )
403 case ' ':
404 break;
405 case '"':
406 state = cs_quote;
407 count++;
408 break;
409 default:
410 count++;
411 ignore = 0;
412 state = cs_token;
414 break;
416 case cs_token:
417 switch( *p )
419 case '"':
420 state = cs_quote;
421 break;
422 case ' ':
423 state = cs_whitespace;
424 *out++ = 0;
425 break;
426 default:
427 ignore = 0;
429 break;
431 case cs_quote:
432 switch( *p )
434 case '"':
435 state = cs_token;
436 break;
437 default:
438 ignore = 0;
440 break;
442 if( !ignore )
443 *out++ = *p;
446 *out = 0;
448 return count;
451 static void process_args( WCHAR *cmdline, int *pargc, WCHAR ***pargv )
453 WCHAR **argv, *p = msi_strdup(cmdline);
454 int i, n;
456 n = chomp( p );
457 argv = HeapAlloc(GetProcessHeap(), 0, sizeof (WCHAR*)*(n+1));
458 for( i=0; i<n; i++ )
460 argv[i] = p;
461 p += lstrlenW(p) + 1;
463 argv[i] = NULL;
465 *pargc = n;
466 *pargv = argv;
469 static BOOL process_args_from_reg( LPWSTR ident, int *pargc, WCHAR ***pargv )
471 LONG r;
472 HKEY hkey = 0, hkeyArgs = 0;
473 DWORD sz = 0, type = 0;
474 LPWSTR buf = NULL;
475 BOOL ret = FALSE;
477 r = RegOpenKeyW(HKEY_LOCAL_MACHINE, InstallRunOnce, &hkey);
478 if(r != ERROR_SUCCESS)
479 return FALSE;
480 r = RegQueryValueExW(hkey, ident, 0, &type, 0, &sz);
481 if(r == ERROR_SUCCESS && type == REG_SZ)
483 buf = HeapAlloc(GetProcessHeap(), 0, sz);
484 r = RegQueryValueExW(hkey, ident, 0, &type, (LPBYTE)buf, &sz);
485 if( r == ERROR_SUCCESS )
487 process_args(buf, pargc, pargv);
488 ret = TRUE;
490 HeapFree(GetProcessHeap(), 0, buf);
492 RegCloseKey(hkeyArgs);
493 return ret;
496 int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
498 int i;
499 BOOL FunctionInstall = FALSE;
500 BOOL FunctionInstallAdmin = FALSE;
501 BOOL FunctionRepair = FALSE;
502 BOOL FunctionAdvertise = FALSE;
503 BOOL FunctionPatch = FALSE;
504 BOOL FunctionDllRegisterServer = FALSE;
505 BOOL FunctionDllUnregisterServer = FALSE;
506 BOOL FunctionRegServer = FALSE;
507 BOOL FunctionUnregServer = FALSE;
508 BOOL FunctionServer = FALSE;
509 BOOL FunctionUnknown = FALSE;
511 LPWSTR PackageName = NULL;
512 LPWSTR Properties = NULL;
513 struct string_list *property_list = NULL;
515 DWORD RepairMode = 0;
517 DWORD_PTR AdvertiseMode = 0;
518 struct string_list *transform_list = NULL;
519 LANGID Language = 0;
521 DWORD LogMode = 0;
522 LPWSTR LogFileName = NULL;
523 DWORD LogAttributes = 0;
525 LPWSTR PatchFileName = NULL;
526 INSTALLTYPE InstallType = INSTALLTYPE_DEFAULT;
528 INSTALLUILEVEL InstallUILevel = INSTALLUILEVEL_FULL;
530 LPWSTR DllName = NULL;
531 DWORD ReturnCode;
532 int argc;
533 LPWSTR *argvW = NULL;
535 /* parse the command line */
536 process_args( GetCommandLineW(), &argc, &argvW );
539 * If the args begin with /@ IDENT then we need to load the real
540 * command line out of the RunOnceEntries key in the registry.
541 * We do that before starting to process the real commandline,
542 * then overwrite the commandline again.
544 if(argc>1 && msi_option_equal(argvW[1], "@"))
546 if(!process_args_from_reg( argvW[2], &argc, &argvW ))
547 return 1;
550 if (argc == 3 && msi_option_equal(argvW[1], "Embedding"))
551 return DoEmbedding( argvW[2] );
553 for(i = 1; i < argc; i++)
555 WINE_TRACE("argvW[%d] = %s\n", i, wine_dbgstr_w(argvW[i]));
557 if (msi_option_equal(argvW[i], "regserver"))
559 FunctionRegServer = TRUE;
561 else if (msi_option_equal(argvW[i], "unregserver") || msi_option_equal(argvW[i], "unregister"))
563 FunctionUnregServer = TRUE;
565 else if(msi_option_prefix(argvW[i], "i"))
567 LPWSTR argvWi = argvW[i];
568 FunctionInstall = TRUE;
569 if(lstrlenW(argvWi) > 2)
570 argvWi += 2;
571 else
573 i++;
574 if(i >= argc)
575 ShowUsage(1);
576 WINE_TRACE("argvW[%d] = %s\n", i, wine_dbgstr_w(argvW[i]));
577 argvWi = argvW[i];
579 PackageName = argvWi;
581 else if(msi_option_equal(argvW[i], "a"))
583 FunctionInstall = TRUE;
584 FunctionInstallAdmin = TRUE;
585 InstallType = INSTALLTYPE_NETWORK_IMAGE;
586 i++;
587 if(i >= argc)
588 ShowUsage(1);
589 WINE_TRACE("argvW[%d] = %s\n", i, wine_dbgstr_w(argvW[i]));
590 PackageName = argvW[i];
591 StringListAppend(&property_list, ActionAdmin);
593 else if(msi_option_prefix(argvW[i], "f"))
595 int j;
596 int len = lstrlenW(argvW[i]);
597 FunctionRepair = TRUE;
598 for(j = 2; j < len; j++)
600 switch(argvW[i][j])
602 case 'P':
603 case 'p':
604 RepairMode |= REINSTALLMODE_FILEMISSING;
605 break;
606 case 'O':
607 case 'o':
608 RepairMode |= REINSTALLMODE_FILEOLDERVERSION;
609 break;
610 case 'E':
611 case 'e':
612 RepairMode |= REINSTALLMODE_FILEEQUALVERSION;
613 break;
614 case 'D':
615 case 'd':
616 RepairMode |= REINSTALLMODE_FILEEXACT;
617 break;
618 case 'C':
619 case 'c':
620 RepairMode |= REINSTALLMODE_FILEVERIFY;
621 break;
622 case 'A':
623 case 'a':
624 RepairMode |= REINSTALLMODE_FILEREPLACE;
625 break;
626 case 'U':
627 case 'u':
628 RepairMode |= REINSTALLMODE_USERDATA;
629 break;
630 case 'M':
631 case 'm':
632 RepairMode |= REINSTALLMODE_MACHINEDATA;
633 break;
634 case 'S':
635 case 's':
636 RepairMode |= REINSTALLMODE_SHORTCUT;
637 break;
638 case 'V':
639 case 'v':
640 RepairMode |= REINSTALLMODE_PACKAGE;
641 break;
642 default:
643 fprintf(stderr, "Unknown option \"%c\" in Repair mode\n", argvW[i][j]);
644 break;
647 if(len == 2)
649 RepairMode = REINSTALLMODE_FILEMISSING |
650 REINSTALLMODE_FILEEQUALVERSION |
651 REINSTALLMODE_FILEVERIFY |
652 REINSTALLMODE_MACHINEDATA |
653 REINSTALLMODE_SHORTCUT;
655 i++;
656 if(i >= argc)
657 ShowUsage(1);
658 WINE_TRACE("argvW[%d] = %s\n", i, wine_dbgstr_w(argvW[i]));
659 PackageName = argvW[i];
661 else if(msi_option_prefix(argvW[i], "x"))
663 FunctionInstall = TRUE;
664 PackageName = argvW[i]+2;
665 if (!PackageName[0])
667 i++;
668 if (i >= argc)
669 ShowUsage(1);
670 PackageName = argvW[i];
672 WINE_TRACE("PackageName = %s\n", wine_dbgstr_w(PackageName));
673 StringListAppend(&property_list, RemoveAll);
675 else if(msi_option_prefix(argvW[i], "j"))
677 int j;
678 int len = lstrlenW(argvW[i]);
679 FunctionAdvertise = TRUE;
680 for(j = 2; j < len; j++)
682 switch(argvW[i][j])
684 case 'U':
685 case 'u':
686 AdvertiseMode = ADVERTISEFLAGS_USERASSIGN;
687 break;
688 case 'M':
689 case 'm':
690 AdvertiseMode = ADVERTISEFLAGS_MACHINEASSIGN;
691 break;
692 default:
693 fprintf(stderr, "Unknown option \"%c\" in Advertise mode\n", argvW[i][j]);
694 break;
697 i++;
698 if(i >= argc)
699 ShowUsage(1);
700 WINE_TRACE("argvW[%d] = %s\n", i, wine_dbgstr_w(argvW[i]));
701 PackageName = argvW[i];
703 else if(msi_strequal(argvW[i], "u"))
705 FunctionAdvertise = TRUE;
706 AdvertiseMode = ADVERTISEFLAGS_USERASSIGN;
707 i++;
708 if(i >= argc)
709 ShowUsage(1);
710 WINE_TRACE("argvW[%d] = %s\n", i, wine_dbgstr_w(argvW[i]));
711 PackageName = argvW[i];
713 else if(msi_strequal(argvW[i], "m"))
715 FunctionAdvertise = TRUE;
716 AdvertiseMode = ADVERTISEFLAGS_MACHINEASSIGN;
717 i++;
718 if(i >= argc)
719 ShowUsage(1);
720 WINE_TRACE("argvW[%d] = %s\n", i, wine_dbgstr_w(argvW[i]));
721 PackageName = argvW[i];
723 else if(msi_option_equal(argvW[i], "t"))
725 i++;
726 if(i >= argc)
727 ShowUsage(1);
728 WINE_TRACE("argvW[%d] = %s\n", i, wine_dbgstr_w(argvW[i]));
729 StringListAppend(&transform_list, argvW[i]);
731 else if(msi_option_equal(argvW[i], "g"))
733 i++;
734 if(i >= argc)
735 ShowUsage(1);
736 WINE_TRACE("argvW[%d] = %s\n", i, wine_dbgstr_w(argvW[i]));
737 Language = msi_atou(argvW[i]);
739 else if(msi_option_prefix(argvW[i], "l"))
741 int j;
742 int len = lstrlenW(argvW[i]);
743 for(j = 2; j < len; j++)
745 switch(argvW[i][j])
747 case 'I':
748 case 'i':
749 LogMode |= INSTALLLOGMODE_INFO;
750 break;
751 case 'W':
752 case 'w':
753 LogMode |= INSTALLLOGMODE_WARNING;
754 break;
755 case 'E':
756 case 'e':
757 LogMode |= INSTALLLOGMODE_ERROR;
758 break;
759 case 'A':
760 case 'a':
761 LogMode |= INSTALLLOGMODE_ACTIONSTART;
762 break;
763 case 'R':
764 case 'r':
765 LogMode |= INSTALLLOGMODE_ACTIONDATA;
766 break;
767 case 'U':
768 case 'u':
769 LogMode |= INSTALLLOGMODE_USER;
770 break;
771 case 'C':
772 case 'c':
773 LogMode |= INSTALLLOGMODE_COMMONDATA;
774 break;
775 case 'M':
776 case 'm':
777 LogMode |= INSTALLLOGMODE_FATALEXIT;
778 break;
779 case 'O':
780 case 'o':
781 LogMode |= INSTALLLOGMODE_OUTOFDISKSPACE;
782 break;
783 case 'P':
784 case 'p':
785 LogMode |= INSTALLLOGMODE_PROPERTYDUMP;
786 break;
787 case 'V':
788 case 'v':
789 LogMode |= INSTALLLOGMODE_VERBOSE;
790 break;
791 case '*':
792 LogMode = INSTALLLOGMODE_FATALEXIT |
793 INSTALLLOGMODE_ERROR |
794 INSTALLLOGMODE_WARNING |
795 INSTALLLOGMODE_USER |
796 INSTALLLOGMODE_INFO |
797 INSTALLLOGMODE_RESOLVESOURCE |
798 INSTALLLOGMODE_OUTOFDISKSPACE |
799 INSTALLLOGMODE_ACTIONSTART |
800 INSTALLLOGMODE_ACTIONDATA |
801 INSTALLLOGMODE_COMMONDATA |
802 INSTALLLOGMODE_PROPERTYDUMP |
803 INSTALLLOGMODE_PROGRESS |
804 INSTALLLOGMODE_INITIALIZE |
805 INSTALLLOGMODE_TERMINATE |
806 INSTALLLOGMODE_SHOWDIALOG;
807 break;
808 case '+':
809 LogAttributes |= INSTALLLOGATTRIBUTES_APPEND;
810 break;
811 case '!':
812 LogAttributes |= INSTALLLOGATTRIBUTES_FLUSHEACHLINE;
813 break;
814 default:
815 break;
818 i++;
819 if(i >= argc)
820 ShowUsage(1);
821 WINE_TRACE("argvW[%d] = %s\n", i, wine_dbgstr_w(argvW[i]));
822 LogFileName = argvW[i];
823 if(MsiEnableLogW(LogMode, LogFileName, LogAttributes) != ERROR_SUCCESS)
825 fprintf(stderr, "Logging in %s (0x%08x, %u) failed\n",
826 wine_dbgstr_w(LogFileName), LogMode, LogAttributes);
827 ExitProcess(1);
830 else if(msi_option_equal(argvW[i], "p"))
832 FunctionPatch = TRUE;
833 i++;
834 if(i >= argc)
835 ShowUsage(1);
836 WINE_TRACE("argvW[%d] = %s\n", i, wine_dbgstr_w(argvW[i]));
837 PatchFileName = argvW[i];
839 else if(msi_option_prefix(argvW[i], "q"))
841 if(lstrlenW(argvW[i]) == 2 || msi_strequal(argvW[i]+2, "n") ||
842 msi_strequal(argvW[i] + 2, "uiet"))
844 InstallUILevel = INSTALLUILEVEL_NONE;
846 else if(msi_strequal(argvW[i]+2, "b"))
848 InstallUILevel = INSTALLUILEVEL_BASIC;
850 else if(msi_strequal(argvW[i]+2, "r"))
852 InstallUILevel = INSTALLUILEVEL_REDUCED;
854 else if(msi_strequal(argvW[i]+2, "f"))
856 InstallUILevel = INSTALLUILEVEL_FULL|INSTALLUILEVEL_ENDDIALOG;
858 else if(msi_strequal(argvW[i]+2, "n+"))
860 InstallUILevel = INSTALLUILEVEL_NONE|INSTALLUILEVEL_ENDDIALOG;
862 else if(msi_strequal(argvW[i]+2, "b+"))
864 InstallUILevel = INSTALLUILEVEL_BASIC|INSTALLUILEVEL_ENDDIALOG;
866 else if(msi_strequal(argvW[i]+2, "b-"))
868 InstallUILevel = INSTALLUILEVEL_BASIC|INSTALLUILEVEL_PROGRESSONLY;
870 else if(msi_strequal(argvW[i]+2, "b+!"))
872 InstallUILevel = INSTALLUILEVEL_BASIC|INSTALLUILEVEL_ENDDIALOG;
873 WINE_FIXME("Unknown modifier: !\n");
875 else
877 fprintf(stderr, "Unknown option \"%s\" for UI level\n",
878 wine_dbgstr_w(argvW[i]+2));
881 else if(msi_option_equal(argvW[i], "y"))
883 FunctionDllRegisterServer = TRUE;
884 i++;
885 if(i >= argc)
886 ShowUsage(1);
887 WINE_TRACE("argvW[%d] = %s\n", i, wine_dbgstr_w(argvW[i]));
888 DllName = argvW[i];
890 else if(msi_option_equal(argvW[i], "z"))
892 FunctionDllUnregisterServer = TRUE;
893 i++;
894 if(i >= argc)
895 ShowUsage(1);
896 WINE_TRACE("argvW[%d] = %s\n", i, wine_dbgstr_w(argvW[i]));
897 DllName = argvW[i];
899 else if(msi_option_equal(argvW[i], "h") || msi_option_equal(argvW[i], "?"))
901 ShowUsage(0);
903 else if(msi_option_equal(argvW[i], "m"))
905 FunctionUnknown = TRUE;
906 WINE_FIXME("Unknown parameter /m\n");
908 else if(msi_option_equal(argvW[i], "D"))
910 FunctionUnknown = TRUE;
911 WINE_FIXME("Unknown parameter /D\n");
913 else if (msi_option_equal(argvW[i], "V"))
915 FunctionServer = TRUE;
917 else
918 StringListAppend(&property_list, argvW[i]);
921 /* start the GUI */
922 MsiSetInternalUI(InstallUILevel, NULL);
924 Properties = build_properties( property_list );
926 if(FunctionInstallAdmin && FunctionPatch)
927 FunctionInstall = FALSE;
929 ReturnCode = 1;
930 if(FunctionInstall)
932 if(IsProductCode(PackageName))
933 ReturnCode = MsiConfigureProductExW(PackageName, 0, INSTALLSTATE_DEFAULT, Properties);
934 else
935 ReturnCode = MsiInstallProductW(PackageName, Properties);
937 else if(FunctionRepair)
939 if(IsProductCode(PackageName))
940 WINE_FIXME("Product code treatment not implemented yet\n");
941 else
942 ReturnCode = MsiReinstallProductW(PackageName, RepairMode);
944 else if(FunctionAdvertise)
946 LPWSTR Transforms = build_transforms( property_list );
947 ReturnCode = MsiAdvertiseProductW(PackageName, (LPWSTR) AdvertiseMode, Transforms, Language);
949 else if(FunctionPatch)
951 ReturnCode = MsiApplyPatchW(PatchFileName, PackageName, InstallType, Properties);
953 else if(FunctionDllRegisterServer)
955 ReturnCode = DoDllRegisterServer(DllName);
957 else if(FunctionDllUnregisterServer)
959 ReturnCode = DoDllUnregisterServer(DllName);
961 else if (FunctionRegServer)
963 ReturnCode = DoRegServer();
965 else if (FunctionUnregServer)
967 WINE_FIXME( "/unregserver not implemented yet, ignoring\n" );
969 else if (FunctionServer)
971 ReturnCode = DoService();
973 else if (FunctionUnknown)
975 WINE_FIXME( "Unknown function, ignoring\n" );
977 else
978 ShowUsage(1);
980 return ReturnCode;