Browsed by
Month: October 2016

MySQL JDBC Connector

MySQL JDBC Connector

Download JConnector from Oracle, unpack and copy to the jar file to …jre\lib\ext folder of your Java installation. It will be automatically included in the default library available to every project you create.   Testing the JDBC /* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package helloworld; /* JDBC-MySQL */ import java.sql.DriverManager; import java.sql.Connection; import java.sql.SQLException;…

Read More Read More

Windows Restricted Groups – Adding Domain Users To The Local Administrators Group Using Group Policy (GPO)

Windows Restricted Groups – Adding Domain Users To The Local Administrators Group Using Group Policy (GPO)

Adding Domain Users To The Local Administrators Group Using Group Policy Adding AD users to the local administrators group on multiple computers is simple using Group Policy.  In this post I’ll describe the process. Create a fresh group policy object (GPO) and link it to a test Organization Unit (OU).  Add a test server to the OU. Open the GPO and navigate to Computer Configuration -> Policies -> Windows Settings   -> Security Settings -> Restricted Groups.   Right click and choose…

Read More Read More

Use Group Policy to Enable Auto-Logon for a Windows Kiosk

Use Group Policy to Enable Auto-Logon for a Windows Kiosk

How to use Group Policy Preference enable auto-logon Posted by Alan Burchill on 6 October 2010, 12:30 am The below article shows you how to use Group Policy Preference to setup the registry keys on a computer so that it automatically logs onto when its turned on. While doing this is potentially huge security issue and not something I would generally recommend IT staff might want to implement on computers that are highly locked down and used for only a…

Read More Read More