There is a license manager located at Start>Wonderware>Common>License Utility.
This is where you copy license file from the CD to hard disk. You can also just copy of this license disk to a USB drive and you can move it between your PC and the HMI computers.
My recommendation is not to run the development license on a runtime application.
Yes..do the full install (Development and Runtime on the HMI), so you can edit on the HMI and backup. However, use a Runitme license on the HMI and keep the Development license for your pc.
It is easy to swap licenses with the 'License Utility'. Always use 'Overwrite' (not append) when asked on installing a license.
I have had issues with 'Appended' licenses.
You may not need the full Archestra install if you are only using Intouch.
What version of Wonderware are you using?
There are actually 2 licenses that may be required. Both are on the license CD.
If 10.5 or later you may need to load both the the archestra.lic and the wwsuite.lic.
It depends what IO Server you are using that may require wwsuite.lic. However it does not hurt anything if you load both licenses.
.
This TechNote gives you important instructions to be performed on each platform at which you want to deploy the DIObjects to avoid having licensing issue in runtime when running new versions from DIObject , which use the new Archestra License not suitelink.lic for example DIMBTCP 3.0 sp1 and DIABCIP 5.0, inside Wonderware Application Server 3.1 SP3 Patch 1 .
Application Versions
- Application Server 3.1 SP3 P01
- DI MBTCP 3.0 SP1
- DI ABCIP 5.0
Microsoft photo story 3 for mac. OPERATING SYSTEM
Windows Server 2008 R2
SITUATION
On the Microsoft Windows Vista operating system, when you use the ArchestrA License Manager to configure licensing for a client computer, the license configuration applies only to the user running the ArchestrA License Manager.
- The preferred application for installing license(s) is ArchestrA License Manager. The application can be accessed via Start - All Programs - Wonderware - Common. If Archestra License Manager is not installed you can go to Start - All Programs - Control Panel - Programs and Features and right-click on InTouch and choose Uninstall/Change.
- April 29th, 2018 - ArchestrA™ Integrated Development Environment IDE User’s Guide Revision C Last Revision 8 23 05 Invensys Systems Inc' 'Wonderware Development Studio Demo License WeMadeKit April 30th, 2018 - Wonderware Development Studio Demo License This gift license will be expire on 1 15 2019 This gift license.
- For the Wonderware software Product Managers, it seems all very natural because we work for years on these first visions and then on the implementation of these new features. We realize that for many of you this is the first time you have seen many of these new features, particularly the.
When running newer DASSERVER it stops periodically , getting Information message in your logger says that <DASERVER name > Please install a valid license for this DAServer product as shown in fig.1 below. trying with external demo license and getting same issue.
Archestra License Manager Guide Job
Figure 1: License invalid info message
SYMPTOMS Pokemon xd rom for dolphin downloads.
DAServer now uses the ArchestrA License Manager and the common ArchestrA license file.
Wonderware Development License
If you are still using software versions that use the wwsuite.lic license file, and you do not have an ArchestrA.lic license file with the correct feature line you need to add it, you need to run InitLicense.wsf file included with the CD image to initialize the new ArchestrA Licensing sub-system.
ACTION
If you are running Wonderware Application Server 3.1 SP3 Patch 1 or older, you must perform the following functions on each platform where you want to deploy the MBTCP DIObjects to it, Please follow below steps.
- Undeploy DIObjects. and close IDE.
- Install two Microsoft components manually.NET 4.0 Framework and Visual C++ 10.0 SP1 run-time redistributable components.
- Run the InitLicense.wsf file included with the CD image, fig.2, to initialize the new ArchestrA Licensing sub-system.
Figure 2: InitLicense.wsf file in DIObject CDWe will see license subsystem Initialization success message as shown in Figure 3 (below).
Figure 3: License subsystem initialization success message - Launch ArchestrA IDE and deploy DIObjects again.
Script in InitLicense.wsf
<job>
<script language=”VBScript”>
Set oShell = CreateObject(“WScript.Shell”)
If CInt(oShell.RegRead(“HKLMSOFTWAREMicrosoftWindows NTCurrentVersionCurrentBuildNumber”)) > 3790 Then
If WScript.Arguments.Named.Exists(“elevated”) = False Then
‘Launch the script again as administrator
CreateObject(“Shell.Application”).ShellExecute “wscript.exe”, “””” & WScript.ScriptFullName & “”” /elevated”, “”, “runas”, 1
WScript.Quit
Else
‘Change the working directory from the system32 folder back to the script抯 folder.
Set oShell = CreateObject(“WScript.Shell”)
oShell.CurrentDirectory = CreateObject(“Scripting.FileSystemObject”).GetParentFolderName(WScript.ScriptFullName)
End If
End If
Dim WSHShell, RegKey, OsType, FolderPath, ProgramFilesPath
Set WshShell = CreateObject(“WScript.Shell”)
OsType = WshShell.RegRead(“HKLMSYSTEMCurrentControlSetControlSession ManagerEnvironmentPROCESSOR_ARCHITECTURE”)
FolderPath = “Common FilesArchestrALicense”
If OsType = “x86” Then
RegKey = “HKLMSOFTWAREWonderwareLicense”
ProgramFilesPath = wshShell.ExpandEnvironmentStrings(“%PROGRAMFILES%”)
FolderPath = ProgramFilesPath + FolderPath
‘wscript.echo “Windows 32bit system detected”
Else
If OsType = “AMD64” Then
RegKey = “HKLMSOFTWAREWow6432NodeWonderwareLicense”
ProgramFilesPath = wshShell.ExpandEnvironmentStrings(“%PROGRAMFILES(x86)%”)
FolderPath = ProgramFilesPath + FolderPath
‘wscript.echo “Windows 64bit system detected”
End If
End If
WSHShell.RegWrite RegKey & “FlexLicFileDir”, FolderPath, “REG_SZ”
wscript.echo “ArchestrA Licensing sub-system initialization succeeded.”
</script>
</job>