The MsiProcessAdvertiseScript function processes an advertise script file into the specified locations.
Syntax
C++UINT MsiProcessAdvertiseScript(
__in LPCTSTR szScriptFile,
__in LPCTSTR szIconFolder,
__in HKEY hRegData,
__in BOOL fShortcuts,
__in BOOL fRemoveItems
);
Parameters
- szScriptFile [in]
-
The full path to a script file generated by MsiAdvertiseProduct or MsiAdvertiseProductEx.
- szIconFolder [in]
-
An optional path to a folder in which advertised icon files and transform files are located. If this parameter is null, no icon or transform files are written.
- hRegData [in]
-
A registry key under which registry data is to be written. If this parameter is null, the installer writes the registry data under the appropriate key, based on whether the advertisement is per-user or per-machine. If this parameter is non-null, the script will write the registry data under the specified registry key rather than the normal location. In this case, the application will not get advertised to the user.
- fShortcuts [in]
-
TRUE if shortcuts should be created. If a special folder is returned by SHGetSpecialFolderLocation it will hold the shortcuts.
- fRemoveItems [in]
-
TRUE if specified items are to be removed instead of created.
Return Value
Value | Meaning |
---|---|
|
The function completed successfully. |
|
The calling process was not running under the LocalSystem account. |
|
See Error Codes. |
An error relating to initialization occurred. |
|
|
This function is not available for this platform. |
Remarks
The process calling this function must be running under the LocalSystem account. To advertise an application for per-user installation to a targeted user, the thread that calls this function must impersonate the targeted user. If the thread calling this function is not impersonating a targeted user, the application is advertised to all users for installation with elevated privileges.
Requirements
Version | Windows Installer 5.0 on Windows Server 2008 R2 or Windows 7. Windows Installer 4.0 or Windows Installer 4.5 on Windows Server 2008 or Windows Vista. Windows Installer on Windows Server 2003, Windows XP, and Windows 2000. See the Windows Installer Run-Time Requirements for information about the minimum Windows service pack that is required by a Windows Installer version. |
---|---|
Header | Msi.h |
Library | Msi.lib |
DLL | Msi.dll |
Unicode and ANSI names | MsiProcessAdvertiseScriptW (Unicode) and MsiProcessAdvertiseScriptA (ANSI) |
Send comments about this topic to Microsoft
Build date: 8/13/2009
© 2009 Microsoft Corporation. All rights reserved.