Thanks J.C for this write up.
ConfigMgr 2007: How to inventory mapped drives - The Configuration Manager Support Team Blog - Site Home - TechNet Blogs:
'via Blog this'
Monday, March 12, 2012
Saturday, March 10, 2012
Dear Xbox 360 makers
- Please make 'A' the default play button in the video player instead of 'Y' I want to play the video instead of having to wait for the next menu load before playing the video. If I want to see more info about the video I can then press 'Y' for more info.
- Locking the controller during menu changes is frustrating.. I want to be able to enter a number of key presses and skip straight to the menu's
- Instead of skipping 1/6 of the way through the video when I press the shoulder buttons only skip forwards 30 seconds and back 20 seconds respectively.
- use the pressure sensitive shoulder triggers to fast forward and rewind the video/music
- Allow me to skip to any part of the video by using the joystick
- 'A' to pause and then 'A' to resume not menu.
- Loading of menu's takes far too long.
That is all for now.
- Locking the controller during menu changes is frustrating.. I want to be able to enter a number of key presses and skip straight to the menu's
- Instead of skipping 1/6 of the way through the video when I press the shoulder buttons only skip forwards 30 seconds and back 20 seconds respectively.
- use the pressure sensitive shoulder triggers to fast forward and rewind the video/music
- Allow me to skip to any part of the video by using the joystick
- 'A' to pause and then 'A' to resume not menu.
- Loading of menu's takes far too long.
That is all for now.
Monday, March 05, 2012
SCCM SQL Count of chassis type
SELECT
Case v_GS_SYSTEM_ENCLOSURE.ChassisTypes0
when '1' then 'Other'
when '2' then 'Unknown'
when '3' then 'Desktop'
when '4' then 'Low Profile Desktop'
when '5' then 'Pizza Box'
when '6' then 'Mini Tower'
when '7' then 'Tower'
when '8' then 'Portable'
when '9' then 'Laptop'
when '10' then 'Notebook'
when '11' then 'Hand Held'
when '12' then 'Docking Station'
when '13' then 'All in One'
when '14' then 'Sub Notebook'
when '15' then 'Space-Saving'
when '16' then 'Lunch Box'
when '17' then 'Main System Chassis'
when '18' then 'Expansion Chassis'
when '19' then 'SubChassis'
when '20' then 'Bus Expansion Chassis'
when '21' then 'Peripheral Chassis'
when '22' then 'Storage Chassis'
when '23' then 'Rack Mount Chassis'
when '24' then 'Sealed-Case PC'
else 'Undefinded'
end as 'Chassis Type',
Count(v_GS_SYSTEM_ENCLOSURE.ChassisTypes0) AS 'Total'
FROM
v_GS_SYSTEM_ENCLOSURE v_GS_SYSTEM_ENCLOSURE
GROUP BY
v_GS_SYSTEM_ENCLOSURE.ChassisTypes0
Order by
'Chassis Type'
Friday, February 24, 2012
Monday, February 20, 2012
Our security auditor is an idiot, how do I give him the information he wants?
All I can say is "wow". I reckon both these guys are in the wrong. One for asking for it, the other for asking "how do I fake it?"
http://serverfault.com/questions/293217/our-security-auditor-is-an-idiot-how-do-i-give-him-the-information-he-wants
http://serverfault.com/questions/293217/our-security-auditor-is-an-idiot-how-do-i-give-him-the-information-he-wants
Tuesday, January 17, 2012
Dell Latitude E6400 freezes at sysyprep. fails to build
Yesterday I had an issue where our Dell Latitude E6400's would not build through SCCM properly. It would fail at the "Windows XP Setup" sysprep screen. The fix for this turns out to be one of the weirdest things I've seen.
Taking a look at the setupapi.log file left in c:\windows\ shows that the last thing it was trying to do was install a drivers for a plug and play device named "ACPI\PNP0C0A\2" and matched with the inf "battery.inf".
#-011 Installing section [CmBatt_Inst.Interfaces] from "c:\windows\inf\battery.inf".
#I054 Interfaces installed.
#-166 Device install function: DIF_INSTALLDEVICE.
#I123 Doing full install of "ACPI\PNP0C0A\2".
#I121 Device install of "ACPI\PNP0C0A\2" finished successfully.
[2012/01/16 13:07:41 544.1]
#-199 Executing "C:\WINDOWS\system32\setup.exe" with command line: setup.exe -newsetup -mini
#W082 Could not locate a non-empty service section [Clean.Services] in "C:\WINDOWS\system32\$winnt$.inf". Error 0xe0000102: The required line was not found in the INF.
Simply remove the battery before imaging and reinstall it after imaging..
Taking a look at the setupapi.log file left in c:\windows\ shows that the last thing it was trying to do was install a drivers for a plug and play device named "ACPI\PNP0C0A\2" and matched with the inf "battery.inf".
#-011 Installing section [CmBatt_Inst.Interfaces] from "c:\windows\inf\battery.inf".
#I054 Interfaces installed.
#-166 Device install function: DIF_INSTALLDEVICE.
#I123 Doing full install of "ACPI\PNP0C0A\2".
#I121 Device install of "ACPI\PNP0C0A\2" finished successfully.
[2012/01/16 13:07:41 544.1]
#-199 Executing "C:\WINDOWS\system32\setup.exe" with command line: setup.exe -newsetup -mini
#W082 Could not locate a non-empty service section [Clean.Services] in "C:\WINDOWS\system32\$winnt$.inf". Error 0xe0000102: The required line was not found in the INF.
Tuesday, January 03, 2012
Custom message prior to installing software
Custom message prior to installing software
In the past I've also used AutoIT to create custom messages..
Subscribe to:
Posts
(
Atom
)