Author: Matthew Skelly

by Matthew Skelly Matthew Skelly No Comments

8 characters

We’re kind of skirting the edge of appropriate, but I have to do SOMETHING with all of these old broken Ethernet cables….

by Matthew Skelly Matthew Skelly No Comments

Reset Mac user password.

Got an old iMac 9.1 running OSX Lepoard in. Client needed the password reset on it, but had long forgotten it and didn’t have the Apple account it was bound to.

1. Boot into single user mode (press Command-S at power on). It’s bassically just a command line (like DOS for you PC users)

2. Type fsck -fy

3. Type mount -uw /

4. Type launchctl load /System/Library/LaunchDaemons/com.apple.DirectoryServices.plist

5. Type dscl . -passwd /Users/username password, replacing username with the targeted user and password with the desired password.

6. Type exit

by Matthew Skelly Matthew Skelly No Comments

Laptop Repair!


Computer came in so I could change out the fan – it was wobbling and getting loud. Came off by sliding a couple of clips, no screws. The fan has two screws and one wire, all perfectly accessible without any for the disassembly. LAPTOP MANUFACTURERS TAKE NOTE! THIS IS HOW YOU DESIGN THINGS RIGHT!

Now I’ve got to go out and disassemble an entire computer And break through a bunch of plastic restraints on a metal retaining baffle, just to change out the keyboard on a different unit. Ugh.

by Matthew Skelly Matthew Skelly No Comments

NO USB mouse or keyboard

 

Problem:

You start up and can’t log in or do anything. Many times customers will think thier PC has frozen, but in actuallity it’s just not loading the USB mouse and keyboard drivers on boot (finds new devices but fails the driver install). You can tell this if you see ascreen saver come on or new messages still popping up in the corner.

Solution:

If it’s not finding the driver, quick solution is to point the search to the WindowsInf folder (browse my computer for drivers). This should at least get you functionality.

Setup searches a predefined path on the drive, looking in .inf files to find the best match for the Plug and Play ID of the device. This path is defined in the following registry location and is set to %SystemRoot%Inf by default:

HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionDevicePath: REG_EXPAND_SZ:%SystemRoot%Inf

Adding an entry with the actuall path may solve the problem her. Don’t delete the current path thoguh, add a ; and then type the path
; C:windowsinf

Top