kieranbarnes Independent PHP, WordPress & CubeCart Programmer

Super simple Active Directory with Samba

Posted on July 9, 2010

I needed a super simple, straight forward way of installing samba on Ubuntu and joining it to an Active Directory domain.
This doesn't allow you to login to Ubuntu with domain credentials but allows you to share and access files with domain credentials.

Heres how its done

Problems installing System Center Essentials 2010

Posted on July 5, 2010

So, I spent 16 irreplaceable hours of my life trying to install System Center Essentials 2010 on both Server 2003 and Server 2008, both systems gave me the same, unhelpful error.

Here is the SCE setup log

Couldn’t send mail with MS SQL Server 2005

Posted on July 1, 2010

So I've been struggling trying to send SQL Agent job notifications to operators.

  1. Msg 515, Level 16, State 2, Procedure sp_validate_user, Line 19
  2. Cannot INSERT the value NULL INTO COLUMN 'permission path', TABLE '@temp'; COLUMN does NOT allow nulls. INSERT fails.
  3. The statement has been terminated.
  4. Msg 14636, Level 16, State 1, Procedure sp_send_dbmail, Line 107
  5. No global profile IS configured. Specify a profile name IN the @profile_name parameter.

[Snippet] Redirecting Non-SSL Traffic to SSL

Posted on June 15, 2010
  1. RewriteEngine On
  2. RewriteCond %{HTTPS} off
  3. RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}

Filed under: Apache No Comments

Perspective Power Poles

Posted on May 25, 2010

Filed under: Photography No Comments

Redirecting non-www to a www prefix

Posted on May 22, 2010

This old chestnut again.

Create or edit the .htaccess file

  1. RewriteEngine On
  2. RewriteCond %{HTTP_HOST} !^www\.YOURDOMAIN\.COM$ [NC]
  3. RewriteRule ^(.*)$ http://www.YOURDOMAIN.COM/$1 [R=301,L]
Tagged as: , No Comments

[Snippet] Event ID 1056 Source Dhcp Server

Posted on May 20, 2010

Got the error

The DHCP service has detected that it is running on a DC and has  no credentials configured for use with Dynamic DNS registrations  initiated by the DHCP service.   This is not a recommended security configuration.   Credentials for Dynamic DNS registrations may be configured using the command line "netsh dhcp server set dnscredentials"

It suggests we use netsh dhcp server set dnscredentials. What it doesn't tell us is the full command, so here it is,

netsh dhcp server set dnscredentials <USERNAME> <DOMAIN> <PASSWORD>

Tagged as: No Comments

Event ID 10015 Source DCOM

Posted on May 20, 2010

Got a locked down Active Directory? Or just a messy one? Getting

The machine wide limit settings do not grant Remote Launch permission for the COM Server application with CLSID {5A5AA0AA-1DEB-4683-96B0-B43301E83971}

errors?

Then read on!

Canadian Goose landing at Sale Water Park

Posted on May 19, 2010

Filed under: Photography No Comments

Can’t install the Office Genuine Advantage Notifications (KB949810) update?

Posted on May 19, 2010

Do you get

"Installation Failure: Windows failed to install the following update with error 0x80070643: Office Genuine Advantage Notifications (KB949810)."

Simple. Start the Task Scheduler service.

Page 14 of 34« First...1213141516...2030...Last »