Skip to main content
Version: 4.0

ADTSession Object

The ADTSession object is a core component of the PSAppDeployToolkit that manages the state and information throughout a deployment session. It captures essential details about the deployment environment and provides convenient properties and methods for use in your scripts.

Initialization

When you start a deployment script, initialize the ADTSession with the Open-ADTSession function:

$adtSession = Open-ADTSession -AppName "YourAppName" -AppVersion "1.0.0" -AppVendor "YourVendor" -DeploymentType "Install" -SessionState $ExecutionContext.SessionState -PassThru

This initializes the session, gathers information about the deployment, the user, and the computer, and the resulting object has several helpful properties available for you to use.

In addition, opening a session creates additional variables in your PowerShell environment that are not specific to a particular deployment - more information on these can be found in the Variables page.

Properties

The ADTSession object exposes several properties, which can be accessed using $adtSession.<PropertyName>, e.g $adtSession.AppName.

Deployment Information

PropertyDescription
AppArchThe architecture (e.g., x86, x64) of the application.
AppLangThe language or locale of the application.
AppNameThe name of the application being deployed.
AppRevisionThe revision number of the application.
AppVendorThe vendor of the application.
AppVersionThe version of the application.
DeploymentTypeIndicates if the deployment is an "Install" or "Uninstall".
DeploymentTypeNameThe friendly name of the deployment type.
DeployModeThe mode in which the deployment is running (e.g., "Interactive", "Silent").

Script Information

PropertyDescription
AppScriptAuthorThe author of the deployment script.
AppScriptDateThe creation date of the deployment script.
AppScriptVersionThe version of the deployment script.
DeployAppScriptFriendlyNameThe filename of the deployment script.
DeployAppScriptParametersThe parameters passed to the deployment script.
DeployAppScriptVersionThe version of PSAppDeployToolkit the deployment script originated from.

Path Information

PropertyDescription
DirFilesPath to the "Files" directory used by the toolkit.
DirSupportFilesPath to the "SupportFiles" directory used by the toolkit.
ScriptDirectoryThe directory where the deployment script is located.

Logging Information

PropertyDescription
LogNameThe name of the log file.
LogTempFolderThe temporary folder where logs are stored.
DisableLoggingIndicates if logging is disabled (True or False).

Date and Time Information

PropertyDescription
CurrentDateThe current date.
CurrentDateTimeThe current date and time.
CurrentTimeThe current time.

Installation Information

PropertyDescription
AllowRebootPassThruIndicates if reboot requests from the installer should be passed through to the system.
DefaultMsiFileThe default MSI file used for installation if none is specified.
DefaultMspFilesThe default MSP files used for installation if none are specified.
DefaultMstFileThe default MST file used for installation if none is specified.
InstallNameThe name assigned to the installation.
InstallPhaseThe current phase of the installation process (e.g., "Pre-Installation", "Installation", "Post-Installation").
InstallTitleThe title displayed during installation.
UseDefaultMsiIndicates whether to use the default MSI file (True or False).

System Information

PropertyDescription