Rawns Posted December 22, 2009 Posted December 22, 2009 I'm looking for a way to check an exe for the version number if possible. I take it something like this can't be done using batch?
Rawns Posted December 22, 2009 Author Posted December 22, 2009 do you want two ways of doing it? Just one. I posted twice in error!
altecsole Posted December 22, 2009 Posted December 22, 2009 You can do it in vbscript: Option Explicit Dim objFSO Set objFSO = CreateObject("Scripting.FileSystemObject") Wscript.Echo objFSO.GetFileVersion("c:\windows\system32\notepad.exe")
pete Posted December 22, 2009 Posted December 22, 2009 Hey, Scripting Guy! Blog : How Can I Determine the Version Number of a File?
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now