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

Unlock Ektron User Account(s)

Posted on July 28, 2014October 26, 2015 By David Kittell

Should you ever lock out your own account and you have SQL access try this

UPDATE users SET login_attempts = 0 WHERE login_attempts > 1 AND user_deleted = 0 AND user_name = '<username>';

Should you ever need to unlock all accounts, not sure why, but you can try this if you have SQL access

UPDATE users SET login_attempts = 0 WHERE login_attempts > 1 AND user_deleted = 0;
Originally Posted on July 28, 2014
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 Ektron User Management MSSQL - Ektron MSSQL - Ektron 8.7

Post navigation

Previous post
Next post

Related Posts

Draw an arrow within a box

Posted on December 20, 2013October 26, 2015

Imports System.Drawing Imports System.Drawing.Drawing2D Public Class Form1 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load End Sub Private Sub Form1_Paint(ByVal sender As System.Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles MyBase.Paint ‘ Create pen. Dim blackPen As New Pen(Color.Black, 3) ‘ Create triangle. Dim point1 As New Point(15,…

Read More

Restrict Access to Internal IP

Posted on September 26, 2013October 26, 2015

Many times we have sites that are public but have pages that should only be viewed by internal users. Ideally the settings would be configured on the server level in IIS but if not possible for some reason this may help. One key thing to note is this code will…

Read More

Create / Delete SQLite Database Indexes

Posted on September 27, 2013December 30, 2015

‘Create Index Sub CreateIndex(SQL As SQL, TableName As String, IndexName As String, Fields As String, Unique As Boolean) Dim query, uni As String uni = "" If Unique=True Then uni = "UNIQUE" query = "CREATE " & uni & " INDEX IF NOT EXISTS " & IndexName & " ON…

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