The IAppContentExt::GetExcludedFileList method, in Configuration Manager, gets the excluded file list for application content. This is used to support selective file download.

[IDL]
HRESULT GetExcludedFileList(
	 IWbemClassObject* pHandlerSynclet,
	 LPWSTR* pwszExcludedFileList,
	 BOOL* pbForceFileExclusion
);

Parameters

*pHandlerSynclet

Data type: IWbemClassObjectQualifiers: [in].  
pwszExcludedFileList

Data type: LPWSTRQualifiers: [out]The exclude file list is a single string separated by the ‘:’ character. For example, “File1.txt:File2.exe”.
pbForceFileExclusion

Data type: BOOLQualifiers: [out]True to force exclusion of files. If False, content framework will decide whether or not excluding them based on network condition and content configuration.

Return Values

An HRESULT code. Possible values include, but are not limited to, the following:

S_OK

Discovery was triggered successfully. All other return values indicate failure.

Requirements

Runtime Requirements

Development Requirements

See Also