Progress Types

 

Updated: November 1, 2013

Applies To: System Center 2012 Configuration Manager, System Center 2012 Configuration Manager SP1, System Center 2012 R2 Configuration Manager

Progress states for a download.

System_CAPS_noteNote

For a non-status change (for example, if there was just transfer of bytes), specify NULL for progress type.

//  Progress types: 
//******************************************************************************
static const WCHAR S_DTS_PROGRESS_DOWNLOADING_MANIFEST[]    = L"DownloadingManifest";
static const WCHAR S_DTS_PROGRESS_PROCESSING_MANIFEST[]     = L"ProcessingManifest";
static const WCHAR S_DTS_PROGRESS_CREATING_DIRECTORIES[]    = L"CreatingDirectories";
static const WCHAR S_DTS_PROGRESS_PREPARING_DOWNLOAD[]      = L"PreparingDownload";
static const WCHAR S_DTS_PROGRESS_DOWNLOADING_DATA[]        = L"DownloadingData";


S_DTS_PROGRESS_DOWNLOADING_MANIFEST

Determining list of files to download.

S_DTS_PROGRESS_PROCESSING_MANIFEST

Processing list of files.

S_DTS_PROGRESS_CREATING_DIRECTORIES

Creating subdirectories based on list of files.

S_DTS_PROGRESS_PREPARING_DOWNLOAD

Manifest processing complete, starting download.

S_DTS_PROGRESS_DOWNLOADING_DATA

Downloading files.

Show: