Install SCCM 2007 SP2 first and then Install 2007 R2, if still not find the unknown computer support option , then remove the PXE service point and re-add it.
When you type the command "wmic csproduct get name" what is the model name you get on the model with Bluetooth supported ? and also check on the model which is not bluetooth supported, if you get any diffrence then you have luck.
I Think some great application packagers can find the trick by doing the reverse engineering of the Bluetooth application.
You can also check manually in the command prompt if you want as below
--> WMIC OS get locale
Answer as below
Locale
0409
0409 is US-En as per the link http://msdn.microsof...l/bb895996.aspx
You can use the below script and modify as per your needs
'#############################
Set dtmConvertedDate = CreateObject("WbemScripting.SWbemDateTime")
strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colOperatingSystems = objWMIService.ExecQuery _
("Select * from Win32_OperatingSystem")
Set WshShell = WScript.CreateObject("WScript.Shell")
For Each objOperatingSystem in colOperatingSystems
Wscript.Echo "OS Language: " & objOperatingSystem.OSLanguage
If objoperatingsystem.OSLanguage = "1033" then
MsgBox "en-US"
WshShell.Run "%windir%\notepad "
Else
MsgBox "Found non English OS then run other exe file"
End if
Next
'######################################################
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.