Offline activation for an Application Server deployment requires four steps:
- Updating the client config file
- Finding and sending machine key and computer name to ESHA Support
- Populating the SET section
- Running a query
Updating the client config file
Follow the instructions for Updating the Client config file to use the PerDomain activation setting found on this page: https://genesisrdfoods.zendesk.com/hc/en-us/articles/4413734332813
Finding and sending machine key and computer name to ESHA Support
- Open ESHA Administrative tools (EAT)
- In the Powershell prompt, type: Get-MachineUniqueId -ProviderType PerDomain
- Locate the machine key
- Email the machine key and computer name to ESHA Support with a request for license text.
Populating the SET section
You will get an email with the license text from ESHA Support.
- Within the license text, find the data between quote marks.
- Copy and paste that data into the SET section.
Run Query
Make sure you are connected to eshadata
After you have populated the SET section with your data, run the following query on the Database:
DECLARE @MachineName nvarchar(150), @MachineID nvarchar(150), @LicenseText nvarchar(1000), @ProductName nvarchar(50), @ProfileName nvarchar(50), @EmbeddedMachineId nvarchar(150)
SET @ProfileName = 'Normal'
SET @MachineName = '' --name of the computer Food Processor is running on
SET @MachineID = '' --the PerDomain key you generated
SET @LicenseText = '' --full license code provided by ESHA for that specific machine key
SET @ProductName = 'FoodProcessor'
DELETE FROM [dbo].[UMachineActivations] WHERE [MachineID] = @MachineID and [ProductName] = @ProductName
INSERT INTO [dbo].[UMachineActivations]
([MachineName]
,[MachineID]
,[LicenseText]
,[ProductName]
,[ProfileName]
,[EmbeddedMachineId])
VALUES
(@MachineName
,@MachineID
,@LicenseText
,@ProductName
,@ProfileName
,@MachineID)
GO
The client should activate successfully offline. Please test and ensure the clients are able to activate successfully.
Comments
0 comments
Please sign in to leave a comment.