InstallationState Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents the various states of an installer.
public enum class InstallationState
public enum InstallationState
type InstallationState =
Public Enum InstallationState
- Inheritance
-
InstallationState
Fields
Name | Value | Description |
---|---|---|
Waiting | 0 | Indicates that the installer is currently waiting on user input before continuing. |
Downloading | 1 | Indicates that the current installation is downloading files needed. |
Downloaded | 2 | Indicates that the current installation has completed downloading required files. |
DownloadFailed | 3 | Indicates that the installation was unable to download files needed. |
DependencyFailed | 4 | Indicates that a dependency of the current installation has failed. |
Installing | 5 | Indicates that the installer is currently still installing. |
InstallCompleted | 6 | Indicates that the current installation has completed. |
Canceled | 7 | Indicates that the current installation has been cancelled. |