Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Syntax

$cs.File_GetFileVersion(string filepath)

Parameters

Filepath

File to retrieve version from

Example

Code Block
languagepowershell
$filepath="C:\Program Files\Mozilla Firefox\firefox.exe"
$AppVersionInstalled=$cs.File_GetFileVersion($filepath)
if([version]$AppVersionInstalled -eq [version]'10.3.3.99'){#do something}

...