Wednesday, July 6, 2011

Google Plus profile transfer

Sooo.... I was lucky enough to get an invite to Google+ from a buddy of mine and I am now in the process of moving everything over. Pictures turned out to be a toughy because I didnt have them saved on my desktop. Uploaded them one at a time over time.

I did, however, find this neat little Chrome Extension:

http://omgeureka.blogspot.com/2011/04/download-facebook-photo-albums.html

and it worked like a charm. Niiiice!!!

Monday, July 19, 2010

XBox 360 Modded Controller

Well, I cracked open an XBox 360 controller this weekend and installed a modchip for a neighbor. It was relatively easy. Nothing really to report. It was an 8 mode chip purchased off ebay for under 20 bux shipped. 6 wires. power, ground, led hookup (to see the blinks for what mode you are in), the mode button and the two triggers. A little soldering and it was firing on all cylinders. Rapidly.

Only thing was the placement of the chip and the mode button. i had to cut a little of the case in order for the controller board to fit back in (nothing was cut on outside of case, jut a little plastic on the inside) and then bend the masts of the mode button down but it seems to be working just fine. Took about 20 minutes.

Wednesday, July 7, 2010

SUA1500RM2U clicking

I bought a rack mountable APC unit for all my machines to plug into. Its been very nice. Saved me a bunch of times. I have a LOT of stuff plugged into it but it still has barely a load registering.

Since i have had my AC on, it has been doing a lot of clicking, going back and forth between On Battery and On Line. the past week, it was doing it so much that it drained the batteries and then subsequently shut off which then shut everything plugged into it off. Not good. So, after some troubleshooting with a buddy, we came to the conclusion that it wasnt getting enough juice off the circuit. We believe the amps were dropping and the devices i have plugged into it, even tho they were shoing a major load, they were at the threshold of amps that that thing can sustain.

We are going to run a dedicated circuit to it and ill post results.

Monday, July 5, 2010

demoting DC that is primary DNS

Yipes. Not good. long story short, change your DHCP scope options to include a new DNS server of different servers first. Make sure there are NO WINS entries if you dont use WINS. Let that cook for a few days so everyone gets the new settings. Go through your static IP machines and make sure they are changed too. Then demote and change your DNS server entries between servers.

If something messes up, you can make the machine name a domain admin and it will fix your problems. You can then take those machine names out after a few days of propagation. Just for your notes, any server software installation that is Microsoft based (exchange, crm, etc) or anything that uses authentication, will fail if you dont do the above mentioned.

Tuesday, June 29, 2010

cd-less OS install

I recently had the opportunity to play with Dells newest latitude 2100 series netbook, the 2110. It, of course like is predecessors, has no media drives. It does have USB ports, obviously. I found a decent web site:

http://www.intowindows.com/how-to-install-windows-7vista-from-usb-drive-detailed-100-working-guide/

that allowed me to install Windows 7 without the need for a USB-to-IDE or SATA device to attach a CD-Rom to the netbook. Im in the process of installing it now but it looks promising.

Wednesday, June 2, 2010

HSBSServicehost.exe found

Yeeeaaahhh, i found out what that service actually does, the host provider a and b. I tried to login to the launchpad on one of my clients and it wouldnt authenticate. I then tried to run the vail dashboard to check on my backup status and that wouldnt run either.

I went over to the server and started the two services i stopped a few weeks ago and when i came back to the client, the dashboard was up.

So pretty much it controls the access to the launchpad and dashboard BUT it DIDNT stop the nightly backups from occurring. Hrm.

Friday, May 28, 2010

Batch files aplenty

I wrote a tiny batch file a while ago that creates a folder string with the date and time then makes a folder with that string and copies files daily to an external drive for backup purposes. Its grown into a windows event creator and a text file creation with the date and time of start and finish. I thought I would paste them here for anyone to use.

Start of batch file (comment lines are REMmed out to help with creation:

@echo off

REM ****** Run VBS File to create Event log for start of file copy in Information Log ******
cscript "c:\users\reesed\documents\files\evntstrt.vbs"

REM ****** Set FOlder String to current date and time ******
set folder=%date:~10,4%%date:~4,2%%date:~7,2%

REM ****** Make Directory on resource calling folder string ******
mkdir e:\HDDaily\%folder%

REM ****** Create text file in folder string stating copy start ******
echo Start date and time: %date% - %time% >> e:\hddaily\%folder%\cpresult.txt

REM ****** Copy files to resource ******
xcopy \\SERVER LOCATION\*.* e:\HDDaily\%folder% /c /h /e /v /y

REM ****** Append end time and date to text file created in folder string ******
echo End date and time: %date% - %time% >> e:\hddaily\%folder%\cpresult.txt

REM ****** Run VBS file to create event log for end of file copy in Information log ******
cscript "c:\users\reesed\documents\files\evntend.vbs"


Start of VBS FILE (file that creates the event log):

' Constants for type of event log entry
const EVENTLOG_SUCCESS = 0
const EVENTLOG_ERROR = 1
const EVENTLOG_WARNING = 2
const EVENTLOG_INFORMATION = 4
const EVENTLOG_AUDIT_SUCCESS = 8
const EVENTLOG_AUDIT_FAILURE = 16

strMessage = "HomeDirs Batch FIle Copy Started"

set objShell = CreateObject("WScript.Shell")
objShell.LogEvent EVENTLOG_INFORMATION, strMessage


Just change the strMessage to whatever you want and then copy the file to make another one that "ends" the event. Thanks to Pat for the "double greater thans" that append text to a file and to Jake for the sexy VB script.