#1
|
|||
|
|||
How to resolve problems with registration not sticking
Some users have reported situations where the Visual Build registration info is lost, and it reverts to operating in evaluation mode (sometimes only when called from a scheduled task). To work around this, use one of the alternative registrations methods:
1) In the Visual Build System folder (typically C:\Program Files\VisBuildPro10\System), create a text file named VisBuildSvr.ini with contents like this: Code:
[License] PortableKey=My Company (n-computer license),123456-654321-...-123456 Note: After registering with this method, registering again via the About | Register dialog or method #2 will report an invalid key. or 2) In the project or global vbld_BuildStarting script event, add VBScript code like this: Code:
Builder.RegisterKey "My Company (n-computer license)", "123456-654321-...-123456" |
|
|