Chef Boy-R-Gee’s Mac & Cheese

Ingredients:
  • 1 1/2 pounds (or so) of cooked elbow macaroni
  • 8-10 ounces (total) of Sharp Cheese and Extra Sharp Cheese
  • 4 Eggs beaten inĀ 1.5 cups milk

Cooking:

  • Mix all ingredients in a large casserole dish and cover almost all the noodles with the egg/milk mixture
  • Add salt and pepper
  • Bake at 350 for 45 minutes (give or take)

Topping (optional):

  • 2 tablespoons unsalted butter
  • 2 cups Panko bread crumbs
  • 1 cups extra sharp cheese

Melt butter and stir together with bread crumbs and cheese until combined well.

Enable/Disable Integrated Windows Authentication (VBScript)

[vb]
Option Explicit

‘———————————————————————–
‘ Enable/Disable Windows Integrated Authentication setting in IE8
‘ Developer: Tom Gee
‘ Date: 12.16.2011
‘———————————————————————–

Dim WSHShell, RegKey
Dim strInput, strCurrValue, strEnabled, strDisabled, strNewValue

strEnabled = “enabled”
strDisabled = “disabled”

set WSHShell = CreateObject(“WScript.Shell”)
RegKey = “HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionInternet SettingsEnableNegotiate”

ReadRegistry

strInput = MsgBox(“Integrated Windows Authentication is currently ” & strCurrValue & “.” & vbcrlf & vbcrlf & “Do you want to change this value?”,vbYesNo,”Change Current Value?”)

If strInput = vbYes Then
If strCurrValue = strEnabled Then
strNewValue = “0”
Else
strNewValue = “1”
End If

WSHShell.RegWrite RegKey, strNewValue, “REG_DWORD”

ReadRegistry

strInput = MsgBox(“Integrated Windows Authentication has now been set to ” & strCurrValue & “.”)
End If

Sub ReadRegistry()
strCurrValue = WSHShell.RegRead(RegKey)

If strCurrValue = “1” Then
strCurrValue = strEnabled
Else
strCurrValue = strDisabled
End If
End Sub
[/vb]