PowerShell
PowerShell
Get Version of Chilkat
Demonstrate how to find out the version of Chilkat at runtime.Chilkat PowerShell Downloads
Add-Type -Path "C:\chilkat\ChilkatDotNet47-x64\ChilkatDotNet47.dll"
# Most Chilkat classes include a Version property.
# To find the version of Chilkat, such as "9.5.0.94",
# instantiate the object and examine the Version property.
# For example:
$sftp = New-Object Chilkat.SFtp
$chilkatVersion = $sftp.Version
$($chilkatVersion)
# Most other Chilkat classes also have the Version property
# For example:
$json = New-Object Chilkat.JsonObject
$($json.Version)