Jan 15, 2004 #1 looka Technical User Oct 23, 2001 14 IT that's it.. was looking for a cmd way to verify from my pdc the version of a dll on each client.. if anyone knows.. thanx in advance
that's it.. was looking for a cmd way to verify from my pdc the version of a dll on each client.. if anyone knows.. thanx in advance
Jan 15, 2004 #2 crobin1 MIS Aug 22, 2002 381 US You might want to look at the KiXtart scripting language for this, http://www.kixtart.org/There is a command to get the file version, for example: Code: $RPCVer = GetFileVersion('%windir%\system32\Rpcrt4.dll', 'Productversion') This was from part of a logon script posted by one of their bulletin board members to help distribute one of the Microsoft patches. Upvote 0 Downvote
You might want to look at the KiXtart scripting language for this, http://www.kixtart.org/There is a command to get the file version, for example: Code: $RPCVer = GetFileVersion('%windir%\system32\Rpcrt4.dll', 'Productversion') This was from part of a logon script posted by one of their bulletin board members to help distribute one of the Microsoft patches.
Jan 15, 2004 Thread starter #3 looka Technical User Oct 23, 2001 14 IT thanx, I'll take a look on that.. Upvote 0 Downvote
Jan 16, 2004 #4 xmsre ISP Jul 13, 2003 3,140 US In access: http://support.microsoft.com/default.aspx?scid=kb;en-us;210120 win32 api: GetFileVersionInfo command line: getvers <filename> http://download.microsoft.com/download/ie4095/getvers/1/WIN98/en-us/GetVers.exe Upvote 0 Downvote
In access: http://support.microsoft.com/default.aspx?scid=kb;en-us;210120 win32 api: GetFileVersionInfo command line: getvers <filename> http://download.microsoft.com/download/ie4095/getvers/1/WIN98/en-us/GetVers.exe