Hello friend's, my customer send via mail to me a WinCC runtime project but do not know how version has been used to develop the project
If i open the project with WCC 7.0 , no problem, but if i modify this project with a incorrect version when will load a modified project , does not work.
It's possible to know the version of wcc from project ?
thank you to all
[?+]: How to know the WinCC version of runtime project?
-
- Posts: 265
- Joined: Sat May 27, 2006 6:46 am
- Location: Europe
-
- Site Admin
- Posts: 3992
- Joined: Thu Feb 16, 2006 3:25 pm
- Location: Russia
Re: [?]: How to know the WinCC version of runtime project?
See *.dcf
For earlier versions WinCC <6.2 do not have this tag[Version-Number]
SV.07.00.00.00
-
- Posts: 265
- Joined: Sat May 27, 2006 6:46 am
- Location: Europe
Re: [?]: How to know the WinCC version of runtime project?
my project probably is v6.0 or v6.2 (service pack ?)
do you know a method to read a version ?
do you know a method to read a version ?
-
- Posts: 50
- Joined: Sun Nov 27, 2005 7:46 pm
- Location: Russia
Re: [?]: How to know the WinCC version of runtime project?
Maybe your customer can see it in the windows menu Start, Folders: SIMATIC->Information->Installed software.
-
- Posts: 508
- Joined: Mon Jul 16, 2007 12:28 pm
- Location: Europe
Re: [?]: How to know the WinCC version of runtime project?
Use this VBS-Code in order to display (version, service pack, update) from RT this information in splash window.PLC_ITA wrote:my project probably is v6.0 or v6.2 (service pack ?)
do you know a method to read a version ?
Code: Select all
Set WSHShell=CreateObject("WScript.Shell")
strWinCCVersion = WSHShell.RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\SIEMENS\AUTSW\WinCC\VersionString")
Easier way is to hold on the mouse on the .pdl and you get the information from the tooltip..
program files -> siemens> wincc > wincc projects
Under your project folder ----> gracs -------->
open any pdl and search for version...
-
- Posts: 265
- Joined: Sat May 27, 2006 6:46 am
- Location: Europe
Re: [?]: How to know the WinCC version of runtime project?
Thank you
You are a professionist !