MsiProcessAdvertiseScriptA function (msi.h)
The MsiProcessAdvertiseScript function processes an advertise script file into the specified locations.
Syntax
UINT MsiProcessAdvertiseScriptA(
[in] LPCSTR szScriptFile,
[in] LPCSTR szIconFolder,
[in] HKEY hRegData,
[in] BOOL fShortcuts,
[in] BOOL fRemoveItems
);
Parameters
[in] szScriptFile
The full path to a script file generated by MsiAdvertiseProduct or MsiAdvertiseProductEx.
[in] szIconFolder
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.
[in] hRegData
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.
[in] fShortcuts
TRUE if shortcuts should be created. If a special folder is returned by SHGetSpecialFolderLocation it will hold the shortcuts.
[in] fRemoveItems
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.
Note
The msi.h header defines MsiProcessAdvertiseScript as an alias which automatically selects the ANSI or Unicode version of this function based on the definition of the UNICODE preprocessor constant. Mixing usage of the encoding-neutral alias with code that not encoding-neutral can lead to mismatches that result in compilation or runtime errors. For more information, see Conventions for Function Prototypes.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows Installer 5.0 on Windows Server 2012, Windows 8, 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 or Windows XP. See the Windows Installer Run-Time Requirements for information about the minimum Windows service pack that is required by a Windows Installer version. |
Target Platform | Windows |
Header | msi.h |
Library | Msi.lib |
DLL | Msi.dll |