Forum Discussion
sarveshd
Nov 21, 2019Copper Contributor
what is the Powershell command to get the iText version?
- what is the Powershell command to get the iText version ?
- 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
- farismalaebSteel Contributor
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.