Jump to content

Tripredacus

Supervisor
  • Posts

    13,375
  • Joined

  • Last visited

  • Days Won

    26
  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by Tripredacus

  1. I think we were spoiled with Windows 95 and Windows 98 with the ability to exit one OS and go into another one. I have not seen any one able to duplicate that type of thing with WinPE and be able to exit to DOS, or anything else.
  2. Core huh... I've seen that before but didn't bother with it. Is "Core" and internal name for the non-suffixed Windows 8 release? I wonder why they didn't put a suffix on the "Home Premium" type version, and why they use the "Core" term which is used differently in their Server line...
  3. After you choose either "Get Started" buttons at the bottom, and log into your Live account, it will automatically prompt to download the ISO. Strangely, it does not prompt me for a language selection, but the ISO itself said EN-US in the name.
  4. Ace's EI post has been split from this topic and moved here:
  5. Original topic: Documentation points out that this is supposed to be used in conjunction with the PID.txt.... so you say that if you just use the EI.cfg and not a PID.txt, it will install normally? I wonder where it gets the product key from then? More info on Technet: http://technet.microsoft.com/en-us/library/hh824952.aspx
  6. You can use a free hosting service like Photobucket or Flickr. After you upload your picture to a site like that, they provide BBCode you can copy/paste on the forum to show the picture.
  7. Try changing your network location to Work.
  8. Some questions for now: 1. Have you previously set any registry settings regarding the network manually or via a .reg file? 2. Do you have any active GPOs? 3. Are you using a modified OS created from using one of the "lite" tools or something similar? 4. What version of Windows 7 are you using?
  9. From what I understand concerning Microsoft Policy, these rules are primarily aimed at businesses such as resellers or the enterprise. For the most part, MS doesn't care what the end-user does with their PC, just that it has been delivered using those rules. The only exception is where redistribution happens, either as warez or using parts of the OS in other applications (in whole or in part) so that it would be possible (theoretically) to run that software on a different OS.
  10. Really, they actually have imagex.exe in there? Don't forget, they could also use an answer file to define partition data if they need to do something custom. But, for the most part even a Setup based recovery doesn't do anything with the partition... in fact I'm not even sure if they even format it. You'd have to test because a stock recovery partition backs up the entire OS volume and puts it into C:\Windows.old. If you end up having a Windows.old with the old C: drive stuff in it, its likely using one of the Setup.exe in there. If not, then it could be using a custom thing. Basically, what I'm getting at is that the partition layout may not ever be changed by the recovery software, and may have been that way from the factory.
  11. This should be the same even with Vista or Windows 7. I imagine this is why if you deploy Windows to Audit Mode, aero is disabled. But maybe this change you are seeing is because Aero is not in Windows 8 anymore.
  12. This thread here has some programs that can do it. I link to it only because the Microsoft tool doesn't work in all situations.
  13. For this PC that I am working on, has 4GB (4x1GB DDR2) in it, I get these values: Win32_ComputerSystem: TotalPhysicalMemory = 2613805056 / 1073741824 = 2.434295654296875 GB Win32_ComputerSystem: TotalPhysicalMemory = 2613805056 / 1048576 = 2492.71875 MB Task Manager values for Physical Memory (MB) Total: 2492 It is only a guess for me that my missing ~708MB RAM (3.200GB - 2.492GB) is due to the video card. I do not know why your WMI query works for you but mine does not.
  14. I tried that one and did not get the actual physical memory, but what Windows saw as the total after ignoring the 32bit limitation, and whatever (must be) allocated to video.
  15. There are 2 things I can think of. First is to monitor the registry for the changes made when you select the grayscale box. Then export those keys and import the .reg into another PC to see if it changes it. As read about here. The other thing is to use wmic to change the color setting. See Win32_PrinterConfiguration's Color object. This is example code, since I don't actually have your printer. I can't test it exactly myself since I do not have a color printer. wmic printerconfiguration where "name='HP Color LaserJet CP 3525'" set Color=1 Now the value of "name" should match the name it has in Printers and Devices, otherwise you'll have to check the WMI yourself to see what name it actually has if that doesn't work.
  16. Welcome to the MSFN!
  17. Hmm why didn't I think of that? Using Win32_MemoryArray ... Round ( EndingAddress / (1024^2)) Gives me "4" on a 4GB PC and "8" on an 8GB PC. This might just be the thing to use.
  18. I'm writing a new program that needs to read how much RAM is on a PC, and then create a disk partition that matches that size. The problem I am encountering is that I cannot find exactly the correct class in WMI that has this information. Using my own PC as an example, I have 2 different memory amounts. 1 - 4.00 GB is reported as "Installed memory" on Computer Properties 2 - 2.43 GB usable in the same place, also matches Task Manager's Performance tab of 2492 Total Physical Memory. I want to get this 4GB value that I see in Computer Properties, but all I can find is the lower number. Examples: Win32_ComputerSystem: TotalPhysicalMemory = 2613805056 Win32_OperatingSystem: TotalVisibleMemorySize = 2552544 Win32_PhysicalMemory: Capacity = 2147483648 Win32_PhysicalMemory: Round(Capacity / (1024^2)) = 2048 The only thing close I can find is Win32_MemoryArray (or MemoryDevice): EndingAddress = 4194303. That is presuming that number is showing me the RAM address. I tested on a 1GB system and it returns a 1xxxxxx value. So where can I get the Installed Memory size data from?
  19. This is incorrect. You can buy an over-air HD tuner that definately has an antenna but they usally aren't very good. When I used to have one, I built my own antenna using a speaker, a VHF TV antenna, an Atari VCS RFU switch and a metal coat hanger. It didn't look very good, but the picture quality was awesome.
  20. Batman XP does appear to be some warez version of Windows XP...
  21. It may be similar to a problem I experienced earlier.
  22. Looks like its EOL, so to speak. http://answers.microsoft.com/en-us/windows/forum/windows_8-performance/windows-8-developer-privew-restart-automatic-evrey/42078f08-9cc9-40ed-9551-627d43cc1450
  23. Yes, from what I can tell the installer is some early version of what Vista uses.
  24. I'm not sure if Server 2012 will become a viable desktop replacement OS (as people tend to do with Server OS) since some features are not enabled if you do not use Desktop Experience. The only one I can think of off the top of my head I saw at ADKFest when they couldn't use the projector without enabling Desktop Experience. I'm sure some list of things you can/can't do with Server 2012 w/o Desktop Experience will come out at some point and I'd be surprised if using a projector is the only thing.
  25. Welcome to the MSFN!
×
×
  • Create New...