DismPackage structure

Describes basic information about a package, including the date and time that the package was installed.

Syntax

typedef struct _DismPackage {
  PCWSTR                  PackageName;
  DismPackageFeatureState PackageState;
  DismReleaseType         ReleaseType;
  SYSTEMTIME              InstallTime;
} DismPackage;

Members

PackageName
The package name.

PackageState
A DismPackageFeatureState Enumeration value, for example, DismStateResolved.

ReleaseType
A DismReleaseType Enumeration value, for example, DismReleaseTypeDriver.

InstallTime
The date and time that the package was installed. This field is local time relative to the servicing host computer.

Requirements

Requirement Description
Supported host platforms DISM API can be used on any operating system supported by the Windows Assessment and Deployment Kit (Windows ADK). For more information, see the Windows ADK Technical Reference">Windows ADK Technical Reference
Supported image platforms Windows 7, Windows Server 2008 R2, Windows PE 3.0, Windows 8, Windows Server 2012, Windows Preinstallation Environment (Windows PE) 4.0, Windows 8.1, Windows Server 2012 R2, Windows 10, Windows Server 2016
Minimum supported client Windows 7 [desktop apps only]
Minimum supported server Windows Server 2008 R2 [desktop apps only]
Header DismAPI.h

See also

DismPackageFeatureState

DismReleaseType

DismGetPackages