Jump to content

zorphnog

Member
  • Posts

    427
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by zorphnog

  1. If iTunes is dependent of QTLite then you must check QTLite before you can check iTunes.
  2. What kind of environment are you testing it in (VM or physical machine)? Any reason you're not using PE 2.0? I tried it out on a physical machine using PE 2.0 and had no problems.
  3. You can automate all of that. I do it with ghost images, but its just as possible with .wim's. You can script everything you need to do. Use Diskpart for partitioning and formatting and imagex for the wim. Throw it all into a batch file or vbs script (or an HTA if you really want to be fancy) and add it to startnet.cmd or winpeshl.ini.
  4. Why can't you just set it to compatibility mode before you burn it to disc? Does it not save the attribute?
  5. ImageX does not support applying images spanned over multiple disks. Its very frustrating as I have to deploy using media because our environments do not always guarantee network connectivity. I'd like to move to WIM file-based imaging for several reasons, but I'm stuck with Ghost for now because of the split image issue. And just in case you were wondering, Microsoft is aware of the issue and it won't be fixed anytime soon. Other links: http://www.msfn.org/board/Imagex-Spanned-images-t94487.html http://www.msfn.org/board/Split-Appended-W...one-t97953.html
  6. As I understand it, the key is having a sleep command within the external script. From my experience, the Office installer exe's return before they have completely finished. Therefore, all of the resources used by the installer have not been freed yet. So adding the sleep command allows the installer to finish freeing up resources it has locked (which conflict with WPI) before it returns to WPI. In essence it delays the original installers return time.
  7. Not sure what you are trying to say here, but if you are having problems with installing Office 2003 (reboot.js errors) see Kel's thread http://www.msfn.org/board/Office-and-reboo...nt-t107774.html.
  8. Ok. I looked at it some more and it appears that the WshShell.RegRead method does not support reading REG_BINARY values. So you may want to bring this up in the Bugs subforum and feature request thread.
  9. Personally, I would go with a script to determine the proper volume number. Regardless of this specific issue, you are not guaranteed that the C: partition will always be on volume one. It may not be the simplest solution, but it is the proper one.
  10. You could always just use reg.exe, its built-in to windows: cmd4[pn]=['reg delete HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run /v "Mozilla Quick Launch" /f'] If you want to be able to check to see if the value is already there, you will need to make this registry value deletion a separate program entry. Make it dependent of the Mozilla program, and use the grayed condition to check if the registry value exists.
  11. Do you have the base directory for tftpd32 set to C:\tftpboot?
  12. Good find Jotnar! Thanks for posting. This is the most complete native tool I have seen yet.
  13. There already is one for imagex. Not exactly like this one, but an HTA that has similar features. http://www.msfn.org/board/index.php?showtopic=97512
  14. Add a color value to the H1 attribute in the htaStyle.css file: h1 { font-family: Albertus Extra Bold; font-size: 30; color: #FFFFFF; } Hex color codes
  15. No. ACIPIAPIC_MP is a section in the hal.inf (actually ACPIAPIC_MP_HAL the _HAL gets appended). If you know anything about drivers, you can see what files and registry entries are added when a particular HAL is installed via the hal.inf file. Although, the sysprep.inf method should work I think.
  16. What version of IE are you using? Have you slipstreamed any updates?
  17. The only bug I am aware of is with Reg Before and Reg After entries. Do not use any double quotes for those entries.
  18. You have to use quotations any time a path has spaces in it. Try... FILECOPY "%wpipath%\Install\Test\test.txt" "C:\Program Files\Test"
  19. Great stuff! I visited the sourceforge page. Whats the status of getting the community involved (coding, testing, creating tasks, etc.)? Surely you don't intend to take on this whole project by yourself.
  20. Make sure you create the folder before you try to copy to it (i.e. MKDIR "C:\Program Files\Folder2").
×
×
  • Create New...