Content Type
Profiles
Forums
Events
Everything posted by Tripredacus
-
So there is some condition that is met by the INF that is causing the Chipset Setup to "remove" it from the installation queue. It eventually just removes all of the INFs and doesn't install anything. Here is a truncated parsing, I left out all the Hardware ID matches. Current INF = D:\Programas\Drivers\Intel® Chipset Device Software\All\5000XZVP.inf Date = 02/25/2013 Version = 9.1.9.1003 ClassGUID = {4D36E97D-E325-11CE-BFC1-08002BE10318} PackageInfo.Name = Chipset PackageInfo.Sequence = 0 PackageInfo.INFSource = PackageInfo.ConditionIfNotInstalledDriverName = Provider(Microsoft)||InstalledDriverName(Chipset)||Provider() Inf supports 64 bit. Manufacturer = INTEL,NT.5.1,NTAMD64 Resolved Manufacturer = INTEL.NT.5.1 Here is the only other mention of this driver file, where it gets filtered out. Also note the awesome typo. [Manditory Filters] Condition = Provider(Microsoft)||InstalledDriverName(Chipset)||Provider() Condition Removed INF = D:\Programas\Drivers\Intel® Chipset Device Software\All\5000XZVP.inf If I were to guess, it is saying that if the current driver for the device has Microsoft as the provider, then it doesn't try to install it. If you look at this link here: http://communities.intel.com/thread/28114 The "answer" implies that Setup.exe does additional checks that aren't based solely on whether or not the drivers will work manually, as you have seen. In the INF itself, this comes from the PackageInfo: [PackageInfo] Name=Chipset Condition=Provider(Microsoft)||InstalledDriverName(Chipset)||Provider() The following link says that a PackageInfo Condition is used by a third-party co-installer, in this case, Intel's Chipset Setup.exe. http://www.osronline.com/showthread.cfm?link=204870 So you could try removing the Condition line from the INF and see what that does.
-
No, I think it is perfectly valid. Even if you had done it by accident or unknowingly, it is a clear way to see that the BCD is being modified. Otherwise it should have resumed normally! Also I don't think I have anything that lets me boot from something else on hibernate. Most of the systems I use seem "aware" at the BIOS level that the HDD is in hibernate, and none of the function keys "work" except maybe going into the BIOS. Even so, I wouldn't only be able to confirm that it does indeed do that or not, and not really be able to offer any other thoughts on the subject like a fix or whatever else. Truthfully, the BCD still kinda scares me.
-
Forgive me if this was brought up already... It seems that those who use Windows 8 Pro VLK are not allowed to install or use Windows Media Player. The issue seems to be those companies that use certain License contracts for Windows, the education, government, etc. Some selected quotes... I giggled. You can read the whole thing here: http://social.technet.microsoft.com/Forums/en-US/w8itproinstall/thread/da8b1554-af4a-467b-a93b-0d18f079f19c
-
I've never considered booting to PE a machine that was hibernating... But I wonder if you tested this using a CD as well? (Not that I expect it to be any different, but you never know).
-
I'd like to clarify what you say and compare to what WinOutreach4 posted. It is that Windows 8 Setup.exe does not support this. But a person could use Windows 8 DISM to do it instead.
-
Oh and you (Dogway) said that when you run Setup.exe, nothing gets installed. Did you check the log file in C:\Intel to see if it says anything in there?
-
I have not used IE10 yet, but what is the message you get?
-
Diminutive Device to Detect Drones Hovering Overhead
Tripredacus replied to Monroe's topic in General Discussion
Maybe times are changing, but I still think of bees and ants when I hear or read the word "drone" as well as the song by Fear Factory. -
The actual problem is that on some of this new hardware, you can't read from WMI. Its not across the board. I am testing on a NUC now and it does not exhibit this problem. I'll keep an eye out for one that gets the error and then run the command you requested. I just got one on the DB75EN. Wmic was able to read that field in the BIOS just fine but.... it has "technically" invalid information. I can't post what shows up, but it isn't the model number. This in itself shouldn't matter with generating the GUI. I think instead I should get a Quad opened with Intel as this might be related.
-
Crosspost from here: http://www.autoitscript.com/forum/topic/150866-strange-wmi-problem-on-intel-hardware/ I don't think it is an AutoIT problem. I've been getting reports from manufacturing that some of our applications have been generating an error, such as: AUTOIT ERROR LINE 1165(X:\windows\system32\program.exe) ERROR: Subscript used w/ non-array variable I have determined what is causing this error, and at which point, but not why and have not been able to determine a way to program around it. I am actually seeing this error in any application that reads from the WMI, here is an example script: $sWMIService = "winmgmts:\\" & @ComputerName & "\root\CIMV2" $objWMIService = ObjGet($sWMIService) IF IsObj($objWMIService) Then $colItems = $objWMIService.ExecQuery("SELECT * FROM Win32_ComputerSystem") If IsObj($colItems) Then For $oItem In $colItems $sModel = StringReplace( $oItem.Model , "/" , "" ) Next EndIf EndIf The application reads from WMI to get the Model number for 2 reasons. 1 it displays it on the screen and 2 it looks up that value on the server so that it can generate the GUI. Obviously, if the field is empty an error is generated. However, it does not care if it cannot find the value on the server, as if the value does not match, it shows a default message. So the way it is currently written, I know exactly what the error means when it appears. It means the field is empty. There was only 1 hardware I had where the field actually WAS empty, and it was a prototype unit. If a production unit had no value there, we would defect it out for obvious reasons. Now on to where the error occurs. The application is compiled for 64bit. Case where error occurs (not 100% of hardware, but 100% on the hardware it happens on unless workaround.) - Intel BIOS has both UEFI and Legacy Boot enabled. - BIOS-level PXE* boot to WinPE 4.0 x64 - Run application - WMI value is an object, but the object is empty, or null. * I don't think PXE is a requirement, but I don't boot via CD or USB. Workaround - Disable UEFI boot in the BIOS. If you can think of any thing I could try to find out what the problem could be, let me know. I may end up posting this question elsewhere as well. For those who are interested, hardware effected: Intel DB75EN Intel NUC (D33217GKE/DC3217YE)
-
Install Application to MDT Image
Tripredacus replied to aussupport's topic in Unattended Windows 7/Server 2008R2
You can't install applications with DISM, but you can with MDT. You add it to the Task Sequence or create a custom one. http://social.technet.microsoft.com/Forums/en-US/mdt/thread/0d37367d-6ac7-459e-b54f-78bbcdfbb114/ There are some different methods to deploying favorites here: http://social.technet.microsoft.com/Forums/en-US/mdt/thread/758d5bbd-bfb5-4500-be0f-ea49d8cc968f -
This topic is a magnet for spammers.
-
It means that the OS' inbox driver is to be used. There is no problem? If you wanted to test, you could change part of the INF from NO_DRV to PCI_DRV, but you could protentially cause a BSOD or other errors by trying to install it. If you did it this way, you would probably need to update the driver using Device Manager instead of Setup.
-
I actually did test that device on various notebooks, desktops and tablets, and not one could see the USB NIC as a valid bootable device in the BIOS or boot menu.
-
It does not. If you want to add it, you'll have to get the files/settings from Windows 8. There is some mention of it here:
-
Capital letters being added automatically in wrong places
Tripredacus replied to bookie32's topic in Windows 7
Like some kind of autocorrect? I have not seen that but some forums use word filtering. For example, some will not let you type in all caps, or others (like old Tfans) wouldn't let you type "tfans" and would automatically capitalize it. -
How do I install software from DVD?
Tripredacus replied to cantab's topic in Unattended Windows 7/Server 2008R2
Harshad posted an example, not a full solution. There may be portions of his script that is not applicable to what you want to do. -
Reformat a HDD and maintain product activation of a PC with a VLK?
Tripredacus replied to E-66's topic in Windows XP
The education sector is confusing to say the least. There are upgrade pathways where a school may enter an agreement with an OEM to purchase 1 OS but install a different one. Purchasing the license is required, and the OEM COA would be on the PC but the OS installed wouldn't really match. I think its a cost savings for the school to do it this way. One method is to use an Open License. An example would be to say the school would buy 300 PCs from an OEM with XP Home. Then using the upgrade path they actually install say XP Pro VLK. The only difference is that the PCs would not (or should not, that is) have any special OEM BIOS stuff in it, it should be stock. That is so that recovery media from the OEM wouldn't activate on the PC (they could use the COA and phone it in I guess) but also the school doesn't receive recovery media anyways. This is also valid for Windows 7 and Office 2007, maybe others but those are the only ones I've dealt with. -
[Windows 7] freshly installed Windows 7 ultimate Edition on a laptop a
Tripredacus replied to mam721's topic in Windows 7
Sorry I had to fix your post. When we say "attach" we mean use the attachment function of the forum. Huge logs are very difficult to handle in a forum post. -
Better late than never!
-
I think its fine that Adobe killed Fireworks. I had used the CS4 version and they haven't really done anything to it compared to Macromedia's MX 2004 version, with the exception that you can use Bridge with it. It was kinda disappointing. And that is to say that even MX 2004 has few differences compared to Fireworks 2. I think the only one that I can recall is some bug fix where you could easily crash Fireworks 2, but I forget how that works. Anyways, Fireworks had its place in Macromedia's suite but it became just extra baggage as an Adobe product. Anyone buying an Adobe suite is probably going to be using Photoshop. But regarding sagging Windows sales... or PC sales altogether. I have some ideas about that. Its not like people aren't buying Windows because they are buying Apples or even Linux machines. I think that it might be the natural saturation of PC in homes, which is going to be the driving force for the sales numbers. I don't know anyone who doesn't have a computer in their house already. So the consumer market is slowing because most sales are replacement PCs, rather than new ones. The enterprise channel will always be there so those numbers should stay fairly consistant.
-
How do I install software from DVD?
Tripredacus replied to cantab's topic in Unattended Windows 7/Server 2008R2
Here you can see an example where the DVD drive is located, then next will run something from the disc. -
[Windows 7] freshly installed Windows 7 ultimate Edition on a laptop a
Tripredacus replied to mam721's topic in Windows 7
Is the date and time correct on the PC? Is Windows activated? (look at the properties of Computer, scroll to the bottom. Should have a blue rectangle there.) -
Welcome to the MSFN!