I was helping with a method to check a user’s password against the domain via a program called UMRA. The idea was to use basic JavaScript validation for some of the password checks, but then to send the validation to the server for true verification. There currently is no process for checking a password without first creating the account and checking the error code from Active Directory. I did some searching and found various different methods from Microsoft, but nothing that hit the nail on the head. Then doing one final Google search for “vbscript domain policy” lead me to this website.
Continue readingAuthor Archives: Allan Bogh
Making DVDs from JVC Everio MOD files using Ubuntu, WinFF, Avidemux, and DeVeDe
I purchased the JVC Everio hard disk camcorder with the intention of quickly copying the movie files from it and burning them to a DVD. Since I use Ubuntu and since the camera automatically detected as a USB hard drive, I did not install the supplied software, opting for open source applications instead.
Continue readingSQL LIKE vs Equals ( = ) Performance
While helping out a fellow developer I decided to try to determine which method of string searching was faster, LIKE or equals. I wanted to discover the basic result, with no indexes to speed things up, and no thoughts regarding underlying database principals of LIO, disk, or memory access. Just a simple test of speed. We can go on all day testing LIO (logical IO) performance and other variables, but I think they would effectively come to a similar conclusion.
Continue readingIntegrating Real-Time SQL Triggers to manage Active Directory Accounts with UMRA
Triggers allow a set of SQL code to run on several types of SQL actions, such as INSERT, UPDATE, or DELETE. For instance, upon an INSERT, the SQL engine will call the trigger configured for the INSERT action. The trigger specified will have programming logic to perform actions on other systems. With OLE Automation enabled in SQL, the trigger will have the ability to perform actions using COM objects.
Continue readingWhere did CSS and JavaScript go wrong?
Ahhhhhhhh!!! That’s me pulling out my hair every time I start working with divs, CSS, and the DOM’s innerHTML property using JavaScript. I can never figure out if I’m doing something wrong or if someone somewhere made a huge mistake when they made innerHTML.
Continue reading
Converting PDFs to PNGs
One of the problems with basic Windows PDF document viewers is you can’t save as another file format. This is most likely for copyright reasons, but what if you need to copy the contents of a PDF image document to a Word document?
Continue reading
Fixing Home Directories with Powershell
Continue reading
Uploading Logitech Alert Security Video to Dropbox using PHP
Continue reading
Automating and Controlling applications with VBScript
Continue reading