Jump to content

x23piracy

Members
  • Posts

    250
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by x23piracy

  1. Hi, means? Greetz X23
  2. Hi, no but you know about that bug and it's fixed in 21? I will try. Greetz X23
  3. Hi, iam still using Windows 7 Installation over PXE and i tried the same with Windows 8. Iam Booting a plain WinPE over PXE that mounts a network share with the Installation files. With Windows 7 that all works amazing well for me but with Windows 8 i get the following after some progress of installing Windows 8: The source of the installation files is a fresh iso that works if burned to a dvd. Any ideas? Greetz X23
  4. Update: - Added a dialog that asks for integration of a prepared folder with files to add to the pe image - Moved Drivers Folder to %cd% ToDo: - Dialog that asks for integration of a prepared folder with files to add to the pe image - For PXE use, Dialog that ask for data (credentials) to mount a network share to start a windows setup after pe has booted - A General Dialog that asks for a file to execute after pe has booted - Move Drivers Folder Destination to %cd% because it's a bit boring the always renew the Drivers folder while testing Download: See first post. Greetz X23
  5. Update: - Added the missing " for driver integration thx @mr_smartepants - Added a dialog that asks for unsigned driver integration - Removed ²³ from file and foldernames because of errors ToDo: - Dialog that asks for integration of a prepared folder with files to add to the pe image - For PXE use, Dialog that ask for data (credentials) to mount a network share to start a windows setup after pe has booted - A General Dialog that asks for a file to execute after pe has booted - Move Drivers Folder Destination to %cd% because it's a bit boring the always renew the Drivers folder while testing Download: See first post. Greetz X23
  6. Hi, thx i was making the batch working from anywhere so i missed it Greetz X23
  7. Hey, also look here: http://www.wincert.net/forum/topic/11137-tool-pex%C2%B2%C2%B3-little-winpe-helper/ Greetz X23
  8. Hi, i made that little script for my own to handle winpe images: Requires: The Windows® Automated Installation Kit (AIK) for Windows® 7 Download: PEX23 Code: @echo offREM Force umount, uncomment temporary the right line for your arch if you fataly closed the batch procese while an image was mounted and not unmounted ;)REM "%programfiles%\Windows AIK\Tools\amd64\Servicing\Dism.exe" /Unmount-Wim /MountDir:"%cd%\WinPE_amd64\mount" /CommitREM "%programfiles%\Windows AIK\Tools\x86\Servicing\Dism.exe" /Unmount-Wim /MountDir:"%cd%\WinPE_x86\mount" /Commitecho.echo Choose Architecture for the PE Folder to createecho.choice /n /c "46" /m "amd6(4), x8(6)?"if errorlevel 2 goto x86if errorlevel 1 goto amd64:amd64SET ARCH=amd64IF EXIST "%cd%\WinPE_%ARCH%" GOTO existscall "%programfiles%\Windows AIK\Tools\PETools\copype.cmd" %ARCH% "WinPE_%ARCH%"cd ..goto mount:x86SET ARCH=x86IF EXIST "%cd%\WinPE_%ARCH%" GOTO existscall "%programfiles%\Windows AIK\Tools\PETools\copype.cmd" %ARCH% "WinPE_%ARCH%"cd ..goto mount:existsclsecho.echo Directory for choosen Architecture allready existsecho Mount or delete existing directory or abort?echo. choice /n /c "MDA" /m "(M)ount, (D)elete, (A)bort?" if errorlevel 3 goto abort if errorlevel 2 goto delPE if errorlevel 1 goto mount:abortExit:delPErd /s /q "%cd%\WinPE_%ARCH%"goto %ARCH%:mountcls"%programfiles%\Windows AIK\Tools\%ARCH%\Servicing\Dism.exe" /Mount-Wim /WimFile:"%cd%\WinPE_%ARCH%\winpe.wim" /Index:1 /MountDir:"%cd%\WinPE_%ARCH%\mount"echo.echo You can now start customizing the image,echo press any key if you have finished.echo.pauseclsecho.echo Do you want to integrate drivers?echo. choice /n /c "YN" /m "(Y)es, (N)o?" if errorlevel 2 goto umount if errorlevel 1 goto intdrv:intdrvIF NOT EXIST "%cd%\WinPE_%ARCH%\Drivers" GOTO missingcolor 0Fclsecho.echo Do you want to integrate unsigned drivers?echo. choice /n /c "YN" /m "(Y)es, (N)o?" if errorlevel 2 SET drvmode= if errorlevel 1 SET drvmode=/Forceunsigned"%programfiles%\Windows AIK\Tools\%ARCH%\Servicing\Dism.exe" "/Image:%cd%\WinPE_%ARCH%\mount" /Add-Driver "/Driver:%cd%:\WinPE_%ARCH%\Drivers" /Recurse %drvmode%clsecho.echo Driver integration finished, unmounting now.goto umount:missingclscolor FCecho.echo The following path doesn't exist:echo.echo %cd%\WinPE_%ARCH%\Driversecho.echo Create the directory and place your drivers there.echo.pausegoto intdrv:umountecho."%programfiles%\Windows AIK\Tools\%ARCH%\Servicing\Dism.exe" /Unmount-Wim /MountDir:"%cd%\WinPE_%ARCH%\mount" /Commitclsecho.echo Unmouting the Image has been finished.echo Do you want to create an ISO from the PE folder?echo. choice /n /c "YN" /m "(Y)es, (N)o?" if errorlevel 2 goto finished if errorlevel 1 goto iso:finishedecho.echo Finishedtimeout /T 3 /nobreakExit:isocopy "%cd%\WinPE_%ARCH%\winpe.wim" "%cd%\WinPE_%ARCH%\ISO\sources\boot.wim"cls"%programfiles%\Windows AIK\Tools\%ARCH%\oscdimg.exe" -n -b"%cd%\WinPE_%ARCH%\etfsboot.com" "%cd%\WinPE_%ARCH%\ISO" "%cd%\WinPE_%ARCH%\WinPE_%ARCH%.iso"echo.echo Finishedtimeout /T 3 /nobreakExit Screenshots: Update: - Added the missing " for driver integration thx @mr_smartepants - Added a dialog that asks for unsigned driver integration - Removed ²³ from file and foldernames because of errors - Added a dialog that asks for integration of a prepared folder with files to add to the pe image - Moved Drivers Folder to %cd% ToDo: - Dialog that asks for integration of a prepared folder with files to add to the pe image - For PXE use, Dialog that ask for data (credentials) to mount a network share to start a windows setup after pe has booted - A General Dialog that asks for a file to execute after pe has booted - Move Drivers Folder Destination to %cd% because it's a bit boring the always renew the Drivers folder while testing This should only work complete under Windows 7 x64 and maybe Windows 8 x64 no way for Windows XP. If anyone finds it usefull, have fun with it Greetz X23
  9. Hi, then it's a forum bug for me because he should get the warning message again and again until his first post was approved Greetz X23
  10. Hi, yeah i know that workaround but why not directly in preset manager without separating each tab? Greetz X23
  11. Hi, no i talk about the automatism that creates ini with the recent changes. If you start WTK again preset manager open and lets you choose which preset to load. Then it's not possible to choose some parts of different presets. You can only choose parts from same preset! Greetz X23
  12. Hi, well i dont start over and over again, with last Patch tuesday i just added the new kb's to my existing image. But for some reason to have old IE's removed you should really start from scratch. Greetz X23
  13. Hi, i don't understand why i cannot choose different entry from different presets. Lets say two different presets and i want options and installers from first preset and updates and addons from a seconds one. I cannot see any reason why that shouldn't work. Why is that not possible? @Lego please make it possible if possible EDIT: WTK 1.4.1.15 Greetz X23
  14. Hi, i have two entry in my automatic install list: Microsoft Malicious Software RemovalMicrosoft Malicious Software Removal DefinitionsI wanted to update MMSR from 4.17 to 4.18 so i removed the 4.17 entry and tried to add the same again but with 4.18 binary. Then WTK tells me this entry allready exists. Iam sure this is related to the Microsft Malicious Software Removal Definitions, the string starts exactly the same but has " Definitions" added. It seems WTK isn't checking the complete string, it also matches strings that starts same but are not really the same So i added the new 4.18 with a little changed string and if it's added i can give it back the right name "Microsoft Malicious Software Removal" Maybe the string check is set to contains and not to equal. @Lego please fix. EDIT: WTK 1.4.1.15 Greetz X23
  15. Hi, maybe that helps? http://www.wincert.net/forum/topic/11055-installation-of-windows-7-over-network-boot-pxe/#entry96470 Look at the part: Prepare WinPE to Start Windows Setup Greetz X23
  16. Hi, @Lego please give us a statement what you think about. Greetz X23
  17. Hi, i should test this: I will report back if that is working. Greetz X23
  18. hurry? http://www.wincert.net/forum/topic/11107-missing-reference-bug-with-14121/
  19. Solved, there was a bug in my customized (cleanup) navision installation source. I dropped ACT 2013 from silent installers. Greetz X23
  20. Hi, please mark as solved. thx Greetz X23
  21. hehe, no it's just a company that produces laboratory machines for milling and sieving we have a lot of little customisations and sure a lot of different software. @Lego Ini could be extended in first line like (Identifier:Value,Names(each separated repeated by value): Profiles:4,Work,Work2,Work3,BlankEach line in ini for an installer (sfx) is been extended with 4 values for each profile (0,1) with their logic order (look at the end): Silverlight::/q;NO;12.48 MB;C:\Path\Silverlight-x64.exe;Always Installed;0;1;0;1 Greetz X23
  22. Hi, i talk about ~100 Installers, iam working in a corporate group that includes 4 different companys. It's not funny to take the 4 different cases for software installs each time i set a machine up. Also is not an option to duplicate each pxe installation only for the reason that the logical change can't be made or something I hope you realize and mainly lego that this suggestion is a good one (for me) And sure there are other possibilities out there to realize what iam talking about but why not WTK While adding something you install you choose to which profile it belongs to A new little window to create, delete, rename profiles. Choosing Profile (stuff preselected) instead of choosing out of 100 individually I hope now it's Bullet Proof. Bam Bam Additionally: For some kind of reason it could be usefull to temporary disable the automatic installs. for that reason a checkbox could be implemented that is checked be default that means auto install on. If the user needs it he can uncheck the checkbox to disable auto installs. Don't slap me iam a feature bitch. :dancing: Greetz X23
×
×
  • Create New...