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. Yes well we went this way because of learning the hard way. Part of it is because of left-over imaging policies when there were multiple HALs and non-ACPI compliant hardware. The real deal breaker for us was when HP blew up a bunch of their Intel chipset machines by using a single image that would write in an AMD file and blow up Windows after certain updates were ran. We decided to play it safe and not want to end up with that kind of support nightmare! All it meant for me was that I ended up taking on new responsibilities and end up from a worker type position to a management type position.
  2. Yes it could be possible that the MSI file extension is registered to open MSIEXEC but maybe that program is missing or corrupted. In that same vein, it could be that a dependency is missing that the program needs.
  3. I'm fairly certain that you won't be able to activate using the key on the COA. Home Basic might work differently, worst case scenario you may have to call the Activation phone number.
  4. Well this is borderline networking related, however best fit in Software forum.
  5. What is the full filename for the item you are trying to open?
  6. Mine is slightly different, maybe it helps? and mine from Nero8 I added the last one in case those different switches work with Nero9.
  7. Back in the later days of 72-pin SIMMs there were systems that required them to be installed in pairs so using sticks in pairs has been around much longer than RAMBUS. RAMBUS was just the first one to optimize how they worked in pairs...at the desktop level. Servers have also required memory be installed in pairs (and sometimes quads) for quite some time. The ServerWorks chipset in his server will actually using "memory interleaving" (aka dual-channel). It sucks that Broadcom let ServerWorks drop off after they bought them because they used to make some awesome chipsets...even if their PATA controllers sucked (you were generally using SCSI based drives on them anyway so that didn't matter). Using multiple DIMMs at the desktop level is another case of server technologies trickling down. This always happens. Look at the number of consumer-level motherboards that come with integrated RAID now days. That is true. Some of the Intel Workstation boards and Elite series (gamer type) boards now have memory options that came straight from RAID technology. So now you can set your memory up in RAID arrays too. I imagine someday desktop boards will get this option as well.
  8. I am wondering if winpeshl.ini does not like the > character. Try having winpeshl.ini run a .cmd file instead, and put your diskpart command in that file instead. Make sure you don't make it exit, or have winpeshl.ini run something after the .cmd so the PE doesn't exit and reboot on you, like have it open notepad after it runs the script, so then you can check it.
  9. While the host requirements for WinPE 3.0 x64 is 512MB RAM, running applications in it may not function unless you have 1GB RAM. WinPE 3.0 x86 works fine with a minimum of 512MB.
  10. There is no harm injecting the drivers into the WIM because Windows is still going to use PNP to install them. Setup will NOT install drivers for devices that are not present, if this was your concern. Yes you can only generalize an image 3 times, but in my experience, Sysprep is likely to complain on the third time, not the fourth. So far I've never had to use skipReArm in the registry yet. The images I store have 1 generalize on them, so they can survive a second. I have 1 custom image that has 2 generalize done on it, so it can't be done again. If there is something totally wrong with that one, I'd have to recreate it. That doesn't take too long, I've done it 3 times already. As far as your "updates" go, you have a couple options. You can specify commands in your sysprep.xml that run files or programs from a network share. You can have it run this during OOBE pass or setupComplete. This way in order to change what you are installing, you change it on the share and not the image. I'm pretty certain that one of the generalize phases gets used up during installation.
  11. I'd be interested to know if you asked the site owners or bensam about doing that before you had.
  12. There are 2 stickied posts in this section, different ways to handle this. I have not used any of them, here are the links: http://www.msfn.org/board/7liite-t142382.html http://www.msfn.org/board/7customizer-replacement-vlite-windows-t139077.html
  13. OK since either you replied to the wrong topic or these two issues are related. I merged your two topics into one. Which account did you delete? The hidden Administrator account?
  14. Has a BIOS update been run on the computer? If you got this from a Sony Authorized Retailer, this would mean that you are still within the warranty period. You should go through their tech support so that you do not do something (like the things we may suggest or point you towards) that will void your warranty.
  15. There are a couple things I can see. One is a security option: Interactive Logon: Require Domain Controller authentication to unlock workstation This by default in 7 Pro is disabled. This might fix that problem of the admin accounts not being able to log a user off.
  16. The old way was to install programs with Add/Remove Programs in the Control Panel. However now in Windows 7, the Programs and Features cpl does not have an option to install a program. Either that or I missed it.
  17. Yes its always good when a big forum is active!
  18. Welcome to the MSFN!
  19. WinPE does not run like a regular operating system. By default it runs from a ramdisk. You can set it to not use a ramdisk if you want, but specific answers won't come to you until you tell us what WinPE you are using.
  20. Is this related to you trying to detect a USB Drive? There is always another way, but this method would work. The only difference is that you are going to need to put in a sleep type command, so that the next part of your script does not try to read the log file before it exists, or is done being saved, etc.
  21. Probably just a way to get more money from you!
  22. Well this is a good place to start! I can tell you that most of us are still learning Windows, there is always something you don't know.
  23. I am Tripredacus Not to be confused with Tripledacus who is way cooler cuz they wear sombreros and play maracas...
  24. Well where did you think smileys came from? People just wanted to make their emoticons bigger and bigger.
  25. In the v7.1 version, there is a section called "Disk information" where it looks at the drives. You may or may not need the GimageX_COM.dll to be loaded. I am not so good at VBScript as others, I just keep that project going, not make any code changes. Its more of a community project now. Here is the code block, obviously you can't just use this peice as the vars are declared elsewhere in the HTA file, but it may give you a start at writing your own implementation. Sub VolInfo(tmpstr1) Dim strComputer, objWMIService, colDisks, objdisk, Size, strDriveType, FreeSpace, Totalfree, Space StrComputer = "." Set objWMIService = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colDisks = objWMIService.ExecQuery ("Select * from Win32_LogicalDisk") On Error Resume Next For Each objDisk in colDisks Select Case objDisk.DriveType Case 1 strDriveType = "Unknown" Case 2 strDriveType = "Usb-Drive" Case 3 strDriveType = "Hard Disk" Case 4 strDriveType = "Network disk" Case 5 strDriveType = "CDROM" Case 6 strDriveType = "RAM disk" Case Else strDriveType = "Drive type Problem" End Select If strDriveType = "Hard Disk" OR strDriveType = "Usb-Drive" OR strDriveType = "Network disk" OR strDriveType = "RAM disk" Then FreeSpace = Cint(objDisk.FreeSpace/1073741824) Space = Cint(objDisk.Size/1073741824) TotalFree = Space - FreeSpace Size = "<TD align ='right'><B>Size: </B></TD>" & "<TD ALIGN = 'right' width='40px'>" & TotalFree & "GB / </TD><TD>" & Space & "GB</TD>" Else Size = " " End If tmpstr1 = tmpStr1 & "<TR><TD><B>" + objDisk.DeviceID & "\ " & objDisk.VolumeName & "</B><TD align='center'>" & "(" & strDriveType & ")" & "</TD><TD align='center'>" & "<B>" & objdisk.filesystem & "</B>" & Size & "</TD></TR>" Next On Error Goto 0 End Sub
×
×
  • Create New...