what is the Powershell command to get the iText version?

Copper Contributor
  1. what is the Powershell command to get the iText version ?
  2. Actually, i would like to extract the iText License Dates in my Powershell script, so what will be needed?

Kindly help as i am new to Powershell

1 Reply

@sarveshd 

To get the version of any exe, use the following command, (I will use Explorer.exe as a demo)

 

Get-Item C:\windows\explorer.exe | select versioninfo -ExpandProperty versioninfo | ft -AutoSize

 

for the license date, I will need to install the app and try, but usually such information are encrypted by the application.