Windows 7 domain user keeps logging on with temporary profile

temp-profile

I recently had a computer replaced on our domain.  For some reason the domain account I was working with kept logging into Windows with a temporary profile.  I tried numerous fixes found on the Internet to no avail.  Then I thought maybe it had something to do with the fresh load of Windows and I nuked the machine and started over.  Still not working right.  I figured it must be something to do with the domain account but couldn’t figure it out.

On a whim I compared domain accounts with another account and found the affected account was a member of the guests security group and the domain guests security group.
I removed the account from both groups and the problem went away.  Not sure how or when the account got added to those groups but the problem was solved by removing membership to them.

Easy way to block ads in Internet Explorer

High-Res-Stop-Sign-final

One of the first things I do after installing Firefox is install ADBlock+ and then subscribe to a list.  Internet Explorer has had some addons that did the same sort of functionality for awhile but I found with IE9 and IE10 it’s even easier to block ads.  Open Internet Options and click the Programs tab.  Click the Manage Addons button.  Click “Tracking Protection” and then below that click “Get a Tracking Protection List online…”

That will take you to the Internet Explorer Gallery and there will be several different types of lists you can add.  I don’t recommend adding to many lists as this is likely to slow down your browser.  I added the Fanboy Adblock list.  I’ve read that the EasyPrivacy list put out by Easy List but I haven’t tried it yet.

I’ve used this on Windows 7 with IE9 and Windows 9 with IE10.  I haven’t looked to see if it’s in IE8 or below.

One thing to consider when adding ad blocking is that it can be taking revenue money from bloggers who rely on ads to provide free information.  That’s a decision I’ll leave up to you.

Lumia 920 screen turns off during phone calls

nokia-lumia-920-colors-blue-yellow-red-black-white-cyan

I am loving the Nokia Lumia 920 phone.  Windows Phone is a great alternative to Apple’s iOS and Google’s Android.  For the past week or so I’ve been having a problem with phone calls.  As soon as I start a phone call the screen turns off and won’t come back on again until the call is over.  The problem is I couldn’t end a call or put it on speaker phone or turn on the number pad to enter numbers during a call.  Most of the time it’s not a big deal when someone calls I just had to wait for them to hang up before I could get back to using the phone.

I tried all kinds of settings changes with no luck.  Rebooting the phone didn’t help any.  I was about to do a hard reset on the phone when I saw someone mention they had dust around the front facing camera in a forum.  Another person said they blew out the ear piece which removed the dust in the camera and this fixed the screen issue.

I turned on my air compressor, blew out the ear piece and the screen issue was immediately fixed.  I’m guessing the proximity sensor had dust on it causing it to black out the screen.  Pretty annoying issue with a simple fix.  I wonder how long before it gets dust back in there again?

Force an image to load from server (PHP or ASP.NET)

prod-icon-loadbalance

I ran across a need to make sure an image on a webpage loaded from the server on each load of the page.  This was accomplished by loading the images with a random number as a parameter.
So it ended up looking like:  <img src=”http://www.website.com/images/1.png?rndNum=2204>

In PHP this was done by adding:  ?<?php echo rand(1000,7000)?> to the image source.

In asp.net (VB):  Using an asp:image with id =”Image1″ on the page.
VB code behind:
If Not Me.IsPostBack Then
Dim randImgNum As Integer
randImgNum = RandomNumber(1000,7000)
Me.Image1.ImageUrl = “http://www.website.com/1.png?rndNum=” & randImgNun
end if

 

 

Categories

Archives