Jump to content

paxamime

Member
  • Posts

    36
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

About paxamime

paxamime's Achievements

0

Reputation

  1. Windows RE is nothing more than the repair tools portion of Windows PE. As far as networking capability, it is already there. Perhaps the way that you are getting your Windows RE is where you are having trouble. The way that I do it is with the following command: imagex /compress None /check /boot /scroll /export F:\sources\boot.wim 2 C:\Pe\WinREFromCD.wim Maybe it is just me but I have never had any problems with standard networking inside of the WinRE environment. To enable the networking there are a couple of things you can do, manually enable it, or my personal favorite.. Via an Asynchronous.xml file: <?xml version="1.0" encoding="utf-8"?> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <settings pass="windowsPE"> <component name="Microsoft-Windows-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <EnableNetwork>true</EnableNetwork> <EnableFirewall>true</EnableFirewall> </component> </settings> </unattend> If this does not work for you guys let me know and I will dive into it deeper and see where you are having problems.
  2. At this point the best route is to install a third-party application (in other words not explorer.exe) to handle launching applications. My personal favorite is Rocket Dock because of how simple it is to use and customize. There are plenty of other ones out there but Rocket Dock is portable and looks pretty at the same time. I am not sure what your level you are at with customizing Windows PE but the easiest way to launch the shell is to use winpeshl.ini in the Windows\System32 directory. You will basically replace the path in this file with that of your shell. If your Windows PE does not have this file you can create it by making a text file and renaming it then adding this into it: [LaunchApp] AppPath = %SYSTEMDRIVE%\Windows\RocketDock\RocketDock.exe [LaunchApps] This assumes that you add in the RocketDock application directory into the Windows directory for Windows PE. EDIT:: Here are some other good launchers. Not all of them can be used in Windows PE but you can check them out and see if there are is another one you like more than RocketDock http://www.osattack.com/alternative-shell/...rs-for-windows/
  3. Thanks for the input! I have been feeling the same way. Thank you for reinforcing my belief.
  4. I am creating a disk of utilities for some friends and I am wanting other peoples opinions on what is the best way to organize the files. There are both x86 and x64 applications as well as components. Is it better to put both files in the same directory? Or should I separate them out into x86 and x64 subfolders? For example: Utility 1 (Folder) Utility 1 - x64.exe Utility 1 - x86.exe Or Utility 1 (Folder) x64\ (Sub Directory) Utility 1 - x64.exe x86\ (Sub Directory) Utility 1 - x86.exe Does this make sense to anyone else? Even if you have no preference of what you think would be better let me know.
  5. More than likely you are pressing the wrong key on the computer to boot the Pendrive. Other boot keys to try are Esc, F1 or F2. Typically it is HP's that use F10 but a more universal option is just simply Esc.
  6. For those that don't know how to add Defrag command line to Windows PE, Here is how you can do it. You can see the full version of it at OS Attack. As far as making the GUI work I am sure that it is possible (I don't think its .net based) but it has multiple dependencies you would also have to add and that gets out of control for the pay-off of a GUI. Registry Keys To Add To WinPE: Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\EXTERNALSOFTWARE\Classes\CLSID\{80EE4901-33A8-11d1-A213-0080C88593A5}] @=”Defrag NTFS engine” [HKEY_LOCAL_MACHINE\EXTERNALSOFTWARE\Classes\CLSID\{80EE4901-33A8-11d1-A213-0080C88593A5}\LocalServer32] @=hex(2):25,00,73,00,79,00,73,00,74,00,65,00,6d,00,72,00,6f,00,6f,00,74,00,25,\ 00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,44,00,66,00,\ 72,00,67,00,4e,00,74,00,66,00,73,00,2e,00,65,00,78,00,65,00,00,00 [HKEY_LOCAL_MACHINE\EXTERNALSOFTWARE\Classes\CLSID\{80EE4902-33A8-11d1-A213-0080C88593A5}] @=”Defrag FAT engine” [HKEY_LOCAL_MACHINE\EXTERNALSOFTWARE\Classes\CLSID\{80EE4902-33A8-11d1-A213-0080C88593A5}\LocalServer32] @=hex(2):25,00,73,00,79,00,73,00,74,00,65,00,6d,00,72,00,6f,00,6f,00,74,00,25,\ 00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,44,00,66,00,\ 72,00,67,00,46,00,61,00,74,00,2e,00,65,00,78,00,65,00,00,00 For these files you can copy them from a Vista machine but make sure that the Vista service pack version matches the WinPE service pack version. Make sure to place them in the same locations as they are located on Vista. Files To Add: Windows\System32\Defrag.exe Windows\System32\dfrgfat.exe Windows\System32\DfrgNtfs.exe Windows\System32\DfrgRes.dll Windows\System32\en-US\Defrag.exe.mui Windows\System32\en-US\DfrgFat.exe.mui Windows\System32\en-US\DfrgNtfs.exe.mui Windows\System32\en-US\DfrgRes.dll.mui
  7. For those that are looking at working with Windows PE 3.0 and have not had the time to research them you can check out the updated commands at OS Attack. I copied these commands from the post there. http://www.osattack.com/windows/commands-f...-windows-pe-30/ Create winpe_x86 directory in C:\PE (this WILL delete it if the directory already exists): rd /s/q C:\PE\winpe_x86 cd “c:\Program files\windows aik\tools\petools” call copype.cmd x86 C:\PE\winpe_x86 Mount the WIM image: cd “C:\Program Files\Windows AIK\Tools\x86\Servicing” DISM.exe /Mount-Wim /WimFile:C:\PE\winpe_x86\ISO\sources\boot.wim /index:1 /MountDir:C:\PE\winpe_x86\mount UnMount the WIM image commiting changes: cd “C:\Program Files\Windows AIK\Tools\x86\Servicing” DISM.exe /unmount-Wim /MountDir:C:\PE\winpe_x86\mount /Commit Add packages into your WIM, this can be edited to only add in what you need to reduce the size of the WIM: cd “C:\Program Files\Windows AIK\Tools\x86\Servicing\” dism /image:C:\PE\winpe_x86\mount /Add-Package /PackagePath:”C:\Program Files\Windows AIK\Tools\PETools\x86\WinPE_OCs\winpe.cab” dism /image:C:\PE\winpe_x86\mount /Add-Package /PackagePath:”C:\Program Files\Windows AIK\Tools\PETools\x86\WinPE_OCs\winpe-wmi.cab” dism /image:C:\PE\winpe_x86\mount /Add-Package /PackagePath:”C:\Program Files\Windows AIK\Tools\PETools\x86\WinPE_OCs\winpe-hta.cab” dism /image:C:\PE\winpe_x86\mount /Add-Package /PackagePath:”C:\Program Files\Windows AIK\Tools\PETools\x86\WinPE_OCs\winpe-legacysetup.cab” dism /image:C:\PE\winpe_x86\mount /Add-Package /PackagePath:”C:\Program Files\Windows AIK\Tools\PETools\x86\WinPE_OCs\winpe-mdac.cab” dism /image:C:\PE\winpe_x86\mount /Add-Package /PackagePath:”C:\Program Files\Windows AIK\Tools\PETools\x86\WinPE_OCs\winpe-scripting.cab” dism /image:C:\PE\winpe_x86\mount /Add-Package /PackagePath:”C:\Program Files\Windows AIK\Tools\PETools\x86\WinPE_OCs\winpe-setup.cab” dism /image:C:\PE\winpe_x86\mount /Add-Package /PackagePath:”C:\Program Files\Windows AIK\Tools\PETools\x86\WinPE_OCs\winpe-wds-tools.cab” Check what packages are installed: cd “C:\Program Files\Windows AIK\Tools\x86\Servicing\” dism /image:c:\PE\winpe_x86\mount\ /Get-Packages UnMount the WIM image discarding changes: cd “C:\Program Files\Windows AIK\Tools\x86\Servicing” DISM.exe /unmount-Wim /MountDir:C:\PE\winpe_x86\mount /discard Create Windows PE ISO: cd “C:\Program Files\Windows AIK\Tools\x86″ oscdimg -n -bc:\PE\winpe_x86\etfsboot.com c:\PE\winpe_x86\ISO c:\PE\winpe_x86\winpe_x86.iso
  8. You can't use both versions on the same machine but you can modify a PE 2.0 with the PE 3.0 WAIK. I actually was doing quite a bit with it before I actually built a full PE 3.0.
  9. That is the WAIK which is easily obtainable. What we are looking for is the OEM Preinstallation Kit (I think thats right) which is more commonly called the OPK.
  10. I still havent been able to find the OPK beta. Has anyone else had better luck?
  11. I am surprised no one has posted this yet but the WAIK Beta for PE 3.0 is available for download. There have been quite a few changes to it most of which look pretty good. My internet sucks too bad right now to find it again on the MS site but they have the link at OS Attack. http://www.osattack.com The best change I saw on the list though is the addition of the ability to boot from a USB device or at least thats what it looks like the command means.
  12. Today the guys from Cairo Shell sent out the notifications to testers that they are going to be starting testing soon. So far there is no word yet as to whether or not it will work in PE but I hope to find out soon. It looks like a lot of eye candy but it would look pretty cool on a system where PE is installed as the default operating system to the hard drive. I really hope it works so I can replace Rocket Dock which has gotten a little boring. http://www.osattack.com/?p=36 What shells does everyone else use if any? I know there are a couple others out there but I have not liked the way they worked.
  13. http://winpe2.blogspot.com/2008/12/aerosna...windows-pe.html
  14. paxamime

    Autorun?

    Do you mean make it Autorun in general or autorun in PE?
×
×
  • Create New...