Skip to content
David Kittell
David Kittell

Application & System: Development / Integration / Orchestration

  • Services
    • Application Development
    • Online Application Integration
  • Code
  • Online Tools
  • Tech Support
David Kittell

Application & System: Development / Integration / Orchestration

Update Ektron License

Posted on July 19, 2013October 26, 2015 By David Kittell

After applying this update you will need to restart the services and in some case restart the server completely.

SELECT lic_key
FROM Settings

SELECT module_license
FROM module_licenses

UPDATE Settings
SET lic_key = '<License>'

UPDATE module_licenses
SET module_license = '<License>'
Originally Posted on July 19, 2013
Last Updated on October 26, 2015
All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is suggested you test it and fully understand what it is doing not just what it appears it is doing. I accept no responsibility for any damage you may do with this code.

Related

Code Ektron MSSQL MSSQL - Ektron MSSQL - Ektron 8.0.2 SQL

Post navigation

Previous post
Next post

Related Posts

Ubuntu – Create Samba Share

Posted on January 10, 2020

sudo apt install samba cd /etc/samba sudo cp smb.conf smb.conf.bak sudo mkdir -p /var/shares/public sudo chmod 755 -R /var/shares/ echo "[Share]" | sudo tee -a smb.conf echo "comment = Samba file share." | sudo tee -a smb.conf echo "path = /var/shares/public/" | sudo tee -a smb.conf echo "browseable = yes"…

Read More

Shell and Wait

Posted on December 14, 2013October 26, 2015

Public Sub ShellandWait(ByVal ProcessPath As String) Dim objProcess As System.Diagnostics.Process Try objProcess = New System.Diagnostics.Process objProcess.StartInfo.FileName = ProcessPath objProcess.StartInfo.WindowStyle = ProcessWindowStyle.Normal objProcess.Start() ‘Wait until the process passes back an exit code objProcess.WaitForExit() ‘Free resources associated with this process objProcess.Close() Catch MessageBox.Show("Could not start process " & ProcessPath, "Error") End Try…

Read More

JSON – Pull #FIRSTInspires data from @thebluealliance API

Posted on April 16, 2018March 9, 2020

Working on a couple tasks that need team information so I registered a read-only API key and started pulling down data for an offline app. Initially populating data using bash and jq. This may be cleaned up in time but it works for my purpose for now. Currently I’m just…

Read More

Code

Top Posts & Pages

  • PowerShell - Rename Pictures to Image Taken
  • Front Page
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions

Recent Posts

  • Javascript – Digital Clock with Style
  • BASH – Web Ping Log
  • BASH – Picture / Video File Name Manipulation
  • Mac OSX Terminal – Create SSH Key
  • Bash – Rename Picture

Top Posts

  • PowerShell - Rename Pictures to Image Taken
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions
  • Open On Screen Keyboard (OSK)
  • SQLite - Auto-Increment / Auto Generate GUID
©2025 David Kittell | WordPress Theme by SuperbThemes