Topic: WimBuilder2 - New Builder with Re:WIN10XPE project(~20H2 Supported)  (Read 38336 times)

Re: WimBuilderUI - New Builder with Re:WIN10XPE project(19H1/20H1 Supported)
« Reply #160 on: October 10, 2019, 04:31:37 AM »

slore

  • Moderator, WimBuilder
  • Sr. Chef
  • *****
  • Date Registered: Jun 2016
  • Posts: 664
=== WimBuilder2 v2019.10.10 ===

WimBuilder2-Full.2019-10-10.7z

SwitchUser Preview(Gif):
* switchuser-gif.zip (1203.28 kB - downloaded 37 times.)

This is a major update. Added and improved the following:

* Added LinkToDesktop, LinkToStartMenu, PinToStartMenu, PinToTaskbar macro commands.
* Added the Startup\BeforeShell directory interface, the scripts in this directory will run before the shell starts.
* Added [Safety Reduction] option, delete fonts, keyboard layouts in other countries, migration tools, etc. system files that do not affect other components.
* Added [Remove IEframe.dll] option.
* Fixed Microsoft built-in input method Cannot display candidate text problems.
* Added DRIVERS registry processing option to automatically identify the loading system's own drivers (such as MTP, NIC driver, etc.).
* Added RNDIS feature, Can use smart phone's share network to access the Internet via USB.
* Update Synchronous WIN10XPE-2019-09-18 update content.
* Fixed  Administrator account can't login when the MSI feature is enabled.
* Improved Patch option defaults can be defined in the patch directory and do not need to be updated in each preset list (patch independence enhancement).
* Add my theme (_CustomFiles_\MyTheme) patch example, you can customize different theme styles, wallpapers, sound effects, boot music and more.
* Improved administrator user login, and startup initialization script decomposition, so that different boot managers are shared.
* Added custom administrator name option.
* Added resource streamlining example (za-Slim\SlimResources), removed Display.dll, themecpl.dll without affecting functionality.
* Update After using the system's own mechanism to solve 20H1, the administrator user cannot load the user settings.
* Repair After 20H1, the BitLocker unlock menu does not automatically identify the problem.
* Fix The problem that the printer component is not working properly. (for now, build with <=17763 version, you can use built-in and third-party printers)
* Fixed text document not open directly after 20H1, and there is no "text document item" in NEW menu.
* Update vendor\WinXShell to version 4.2.
* Added new session management function with WinXShell 4.2 to achieve multi-user free switching (SYSTEM<=> administrator account). (Thanks to NyaMisty)
* Added With WinXShell 4.2 update, add [File and Folder Options] settings (display/do not show hidden files, show/do not display known extensions).
* Added WinXShell settings page. (Enable UI_Volume, enable UI_WIFI option)
* Added system tray network, sound icon display options.
* Improved build support for older versions of Win10 (v1607 Long Term Service Branch (LTSB) 14393). (Thanks to liuzhaoyzz for testing and feedback)
* Update vendor\StartIsBack to version 2.8.9.
* Added doc\History.txt this documentation.


Printers and MTP Preview:

« Last Edit: October 10, 2019, 03:22:43 PM by slore »

Re: WimBuilder2 - New Builder with Re:WIN10XPE project(~20H1 Supported)
« Reply #161 on: October 11, 2019, 09:11:27 PM »

cretino

  • Chef
  • ***
  • Date Registered: Jan 2018
  • Posts: 240
hi slore

Quote
Added RNDIS feature, Can use smart phone's share network to access the Internet via USB.
I am interested ... i think i missed something ....
[ Attachment Invalid Or Does Not Exist ]
« Last Edit: December 22, 2019, 06:38:10 PM by cretino »

Re: WimBuilder2 - New Builder with Re:WIN10XPE project(~20H1 Supported)
« Reply #162 on: October 12, 2019, 12:21:36 AM »

slore

  • Moderator, WimBuilder
  • Sr. Chef
  • *****
  • Date Registered: Jun 2016
  • Posts: 664
Hi,

I forget to add the feature be enabled in full preset.
You need select the RNDIS checkbox in "Components" page.
« Last Edit: October 12, 2019, 12:23:08 AM by slore »

Re: WimBuilderUI - New Builder with Re:WIN10XPE project(19H1/20H1 Supported)
« Reply #163 on: November 07, 2019, 09:56:12 AM »

Lancelot

  • Moderator, Gena Baker
  • Grand Chef
  • *****
  • Date Registered: Sep 2010
  • Posts: 10350
Hi slore,

=== WimBuilder2 v2019.10.10 ===
Looks very fine here,
 working nicely with spaced base path,
 Just download and tested with 1903 ( 18362.356 ) x64
   :great:

*
>Still whatever you do, also have a design to build unattended.

because this made by js+html, it is easy do auto action with config.js to write same action like:
Maybe you had already implemented

+
If so I missed where it was written.

how to make unattended build with WimBuilder2 ?
eg.
WimBuilder.cmd /unattended

(ps:  auto_config.js already exists with required info )

+
If not, I like to remind my old request


*
A basic help file maybe good (eg. WimBuilder_Help.txt ).

:turtle:

Re: WimBuilder2 - New Builder with Re:WIN10XPE project(~20H1 Supported)
« Reply #164 on: November 07, 2019, 05:28:35 PM »

slore

  • Moderator, WimBuilder
  • Sr. Chef
  • *****
  • Date Registered: Jun 2016
  • Posts: 664
Hi, Lancelot

Long time no see.

Quote
If not, I like to remind my old request
I remember this request and I have two way on it.

1). pass the commandline options to HTA, to "click" button with the options to build.
2). add a [Create Auto Build batch file with current settings] button, and save a autobuild.bat

autobuild.bat:
Code: [Select]
rem SOURCE settings
set WB_SRC_WIM=install.wim
set WB_SRC_INDEX=1
set WB_BASE_WIM=winre.wim

rem PATCH Options
set opt[admin.enabled]=true
...
set opt[slim.speech]=true

rem PATCH Selections

call WriteRAWFile patches_selected.txt %0 :BUILD_WIM
goto :BUILD_WIM
\Projects\WIN10XPE\00-Configures\Build\main.bat
\Projects\WIN10XPE\00-Configures\System\main.bat
...
\Projects\WIN10XPE\za-Slim\last.bat

:BUILD_WIM
call bin\_Process.bat

This one will build PE without the HTA requirement.
Build with Dism.exe by batch
--- use WimBuilder2 to save the patch options on UI, and build by WimBuilder1.


 NO others request a improvement or feature about WimBuilder2 here, but you  :tongue:

So, only had idea for that.
But now, you came by, and request it again, I written 40 lines code to support the 1). way RIGHT NOW for you.

Code: [Select]
Usage: WimBuilder.cmd [-h|--help] [<Options>...]

<Options>
   --verbose
   --build|--build-with-log
   --project {name}
   --preset {preset}
   --make-iso

Quote
WimBuilder.cmd --build --project WIN10XPE --preset full --make-iso
if you don't specify the options, it will use what you saved in auto_config.js, so simply call:

WimBuilder.cmd --build
or
WimBuilder.cmd --build-with-log


It is pushed on github- WimBuilder2-master.
(copy WimBuilder2.cmd, bin\ElevateMe.vbs, assets\js to WimBuilder2.2019.10.10, it should work.)

I will release 2019.11.11 version in the weekend, at that time there will be a packaged version with vendor updates and new software (ClassicShell, ImDisk)

Re: WimBuilder2 - New Builder with Re:WIN10XPE project(~20H1 Supported)
« Reply #165 on: November 07, 2019, 07:35:01 PM »

Lancelot

  • Moderator, Gena Baker
  • Grand Chef
  • *****
  • Date Registered: Sep 2010
  • Posts: 10350
Hi slore,

Good to see you are around.

Here is a quick test result with feedback.

following your instructions:

It is pushed on github- WimBuilder2-master.
(copy WimBuilder2.cmd, bin\ElevateMe.vbs, assets\js to WimBuilder2.2019.10.10, it should work.)

+ I extract WimBuilder2-Full.2019-10-10.7z to empty folder eg. D:\Te st\
+ I download wimbuilder2-master.zip from github,
From wimbuilder2-master.zip :
I copy:
D:\Te st\WimBuilder.cmd
D:\Te st\bin\ElevateMe.vbs
files and
D:\Te st\assets\js\
folder

Doubleclick WimBuilder.cmd, select source etc. I click "1-build(cmd)"

I get quick JS error screen:

Quote
Title: Script Error

An error has occurred in the script on this page.

Line: 306
Char: 5
Error: Object doesn't support properly or method 'get_undetermined'
Code: 0
URL: file:///................/assets/js/page_patches.js

Do you want to continue running scripts on this page ?


Re: WimBuilder2 - New Builder with Re:WIN10XPE project(~20H1 Supported)
« Reply #166 on: November 07, 2019, 10:45:57 PM »

slore

  • Moderator, WimBuilder
  • Sr. Chef
  • *****
  • Date Registered: Jun 2016
  • Posts: 664
 :ohmy: well, put 2019.10.10's vendor to master please.
I will try it tonight.
« Last Edit: November 07, 2019, 10:46:31 PM by slore »

Re: WimBuilder2 - New Builder with Re:WIN10XPE project(~20H1 Supported)
« Reply #167 on: November 09, 2019, 05:52:03 AM »

Lancelot

  • Moderator, Gena Baker
  • Grand Chef
  • *****
  • Date Registered: Sep 2010
  • Posts: 10350
Hi slore,

Thanks for working on implementing this feature,
 I am sure it will work with the next stable distribution.  :smile:

*
NO others request an improvement or feature about WimBuilder2 here, but you  :tongue:
Sure, You should already understand I am the only one of very rare "no fanatic" about projects and builders around here.  :wink:
 That is the reason you can see my requests and feedback on many other projects and builder topics, up to my taste how much I like them (idea behind etc.) or sometimes give up without hope after a point or ......

  I work on request only (to me) critical improvements (things that can only be done by the author) and do things I can do without asking.   :wink:
   There will be other requests in the future with this definition, I hope you do not break the development path you are walking so far like others in the past.  :great:

:turtle:
« Last Edit: November 09, 2019, 06:40:41 AM by Lancelot »

Re: WimBuilder2 - New Builder with Re:WIN10XPE project(~20H1 Supported)
« Reply #168 on: November 09, 2019, 03:14:57 PM »

slore

  • Moderator, WimBuilder
  • Sr. Chef
  • *****
  • Date Registered: Jun 2016
  • Posts: 664
Hi, Lancelot
Quote
(things that can only be done by the author)

Well, actually as this is open-source script project, anyone can do it.

for auto build with auto_config.js, only few code(10 lines?) can make WimBuilder2 have the feature.

js\menu_click.js
Quote
$('#menu_patch').click(function(){
    ...
+    if ($wb_opt_build) {
+        do_quick_build($wb_opt_build); // just call the function what the right-top GREEN button runs.
+    }
)

But I'm the author, What I can do? How can I make it be more easy-to-use?
Now, it can work without auto_config.js, and close the HTA UI for building more PE in batch.

Quote
Z:\WimBuilder2_RAM>WimBuilder.cmd -h
Usage: WimBuilder.cmd [-h|--help] [<Options>...]

<Options>
   --verbose
   --build|--build-with-log
   --source-folder FOLDER|DRIVE
   --source-wim SOURCE_WIM_FILE
   --source-index INDEX
   --base-wim BASE_WIM_FILE
   --base-index INDEX
   --project PROJECT
   --preset PRESET
   --make-iso
   --close-ui

Examples:

   WimBuilder.cmd --build --make-iso --close-ui
   WimBuilder.cmd --source-folder I: --source-index 1 --build --preset full --make-iso --close-ui
   WimBuilder.cmd --source-wim "D:\win10v1903\sources\install.wim" --source-index 4 --build --preset full --make-iso --close-ui
   WimBuilder.cmd --source-folder H: --source-index 1 --base-wim "D:\BOOTPE\boot.wim" --preset lite --build-with-log --make-iso

Code is pushed in github. distribution will release on 2019.11.11, maybe I will upload a pre-release on tomorrow,
if I can finish some features that I want to add to next release.

« Last Edit: November 09, 2019, 03:50:28 PM by slore »

Re: WimBuilder2 - New Builder with Re:WIN10XPE project(~20H1 Supported)
« Reply #169 on: November 09, 2019, 07:12:08 PM »

Lancelot

  • Moderator, Gena Baker
  • Grand Chef
  • *****
  • Date Registered: Sep 2010
  • Posts: 10350
Thanks slore,

I will have a quick test and feedback with pre-release or release when you have time, nothing to rush,
 I do not have much free time anyway,
  But this is very critical to me so I will be around to test and feedback for this feature of WimBuilder. :thumbsup:

ps:
related to subject, and having another look other than "wimbuilder/pebakery/Gena (with wb77rc2)",
 LiveSystemPro also have this feature, see reply 10 and later
   http://theoven.org/index.php?topic=295.msg28760#msg28760

Well, actually as this is open-source script project, anyone can do it.

Sure, but all work lost when the author updates the project/builder and requires re-work to implement again ...
 Such things better when provided by the author of the project/builder as project/builder feature.
  Thanks Again.


*
Here is screenshot of WimBuilder with VMware with plugins I added:
"Mouse Cursors Breeze Cursors by niivu" plugin
"Snipping Tool" plugin not required, available at WimBuilder-Patches-Components\Accessories-Sniping Tool
"FastCopy 3" plugin
"Opera v12 SL" plugin
"Sysinternals Process Explorer" plugin
ps:
picture was taken using "VMware Emulation" plugin,
and
 I did not change any plugin, I only quickly use them with WimBuilder as mentioned recently on other topics.

Picture:
http://lancelot.theoven.org/TheOvenAttach/2019-11-09_214110_WimBuilder_Slore.png

*
It seems I will have lots of nice fun times, when I have some free time, probably and hopefully late this summer.

:turtle:
« Last Edit: November 10, 2019, 09:51:56 AM by Lancelot »

Re: WimBuilder2 - New Builder with Re:WIN10XPE project(~20H1 Supported)
« Reply #170 on: November 10, 2019, 02:05:54 PM »

slore

  • Moderator, WimBuilder
  • Sr. Chef
  • *****
  • Date Registered: Jun 2016
  • Posts: 664
[Github] Something went really wrong, and we can’t process that file. Try another file.


=== WimBuilder2 v2019.11.11 ===

WimBuilder2-Full.2019-11-11.7z (18Mb) MD5: 6e71aacf9ad288c2bc6b713e2ea9a659

download:
http://lancelot.theoven.org/Slore/WimBuilder2-Full.2019-11-11.7z
 (Thanks to Lancelot)

This is a major update. Added and improved the following:

* Added Ghost15 support patch.(_CustomFiles_\MyCustom_Samples\Requirements_Ghost15.bat)  (Thanks to)
* Fixed  the issue that the Administrator account can't login with Slim-Safely option(zh-TW).
* Fixed the issue that some files won't be extracted from install.wim for older Windows version(<17763).
* Fixed the issue that the file property won't show up in older Windows version.
* Added _CustomFiles_\MyCustom\Last folder, Apply simple patches after other patches's main.bat be done.
* Added _NavPaneShowAllFolders.bat, the folder option settings.
* Added _NavPaneHideLibraries.bat, the folder option settings.
* Fixed  the issue that can't copy file(s) from PE to smart phone(MTP). (Thanks to ku588)
* Added use Slim imageres.dll option.
* Added _FileExplorerInSeparateProcess.bat, The Shell and file explorer run in different process.
* Improved Nework component support older Windows version(LTSC, LTSB).(Thanks to liuzhaoyzz)
* Added _HighPerformancePowerScheme.bat.
* Added _CustomVisualEffects.reg, custom VisualEffects settings.(Thanks to 沉默凌神)
* Fixed the issue that StartIsBack causes the shell crash.
* Updated Devices and Printers. Now the Printers work on every Windows version(~20h1.10.0.19018 so far). (Thanks to Noel :+1: )
* Added command line interface, now you can build PE unattend. --help option to see more details.
* Improved Custom patches. Support to create more complex options.
* Added 7-zip settings UI, association can set on the UI.
* Fixed the issue that the firewall is not disabled if the Network support option is unchecked.
* Added _Assets_\style.css file, Apply the common style to every patch's main.html.
* Added ImDisk Virtual Disk Driver.
* Improved Support keep shell process alive(shell daemon) in dual-session mode.
* Added option for removing wbem\Repository.
* Added _CustomFiles_\_CustomISO_.bat. When make-iso is running, call PreISO,MakeISO,PostISO there phase interface.(_PreISO_.bat obsoleted)
* Added ISO settings UI, add option to show "Press any key to boot from CD or DVD.".
* Improved Remove useless BitLocker contextmenu.
* Improved RNDIS feature. support more devices.(Thanks to fish2006)
* Updated Rename "Patches" Menu to be "Customize"
* Updated Additional details.

NOTE lots of main.html, *.js are changed, but the main.bat is untouched.
             Make sure you use the right parameters to build PE with command line, you'd better do test the parameters to build once.


Command Line
Code: [Select]
Usage: WimBuilder.cmd [-h|--help] [<Options>...]

<Options>
   --verbose
   --build|--build-with-log
   --source-folder FOLDER|DRIVE
   --source-wim SOURCE_WIM_FILE
   --source-index INDEX
   --base-wim BASE_WIM_FILE
   --base-index INDEX
   --project PROJECT
   --preset PRESET
   --make-iso
   --close-ui

Examples:

   WimBuilder.cmd --build --make-iso --close-ui
   WimBuilder.cmd --source-folder I: --source-index 1 --build --preset full --make-iso --close-ui
   WimBuilder.cmd --source-wim "D:\win10v1903\sources\install.wim" --source-index 4 --build --preset full --make-iso --close-ui
   WimBuilder.cmd --source-folder H: --source-index 1 --base-wim "D:\BOOTPE\boot.wim" --preset lite --build-with-log --make-iso
« Last Edit: November 10, 2019, 11:37:34 PM by slore »

Re: WimBuilder2 - New Builder with Re:WIN10XPE project(~20H1 Supported)
« Reply #171 on: November 10, 2019, 02:42:58 PM »

Lancelot

  • Moderator, Gena Baker
  • Grand Chef
  • *****
  • Date Registered: Sep 2010
  • Posts: 10350
Hi slore,

pan.baidu -> I can connect with vpn but as long as I can figure out, webpage always ask me to install a pan baidu app for qr code ...

can you check your e-mail (not pm) .

ps: I have to go out now, so I will further respond after an ~hour.

:turtle:

Re: WimBuilder2 - New Builder with Re:WIN10XPE project(~20H1 Supported)
« Reply #172 on: November 10, 2019, 03:50:13 PM »

slore

  • Moderator, WimBuilder
  • Sr. Chef
  • *****
  • Date Registered: Jun 2016
  • Posts: 664
Some wrong with Network, I upload here in old way.

(1/4) WimBuilder2_RAM.part1.rar (6048 Kb)
 (2/4) WimBuilder2_RAM.part2.rar (6048 Kb)
 (3/4) WimBuilder2_RAM.part3.rar (6048 Kb)
 (4/4) WimBuilder2_RAM.part4.rar (292 Kb)

Re: WimBuilder2 - New Builder with Re:WIN10XPE project(~20H1 Supported)
« Reply #173 on: November 10, 2019, 03:50:51 PM »

slore

  • Moderator, WimBuilder
  • Sr. Chef
  • *****
  • Date Registered: Jun 2016
  • Posts: 664
 (1/4) WimBuilder2_RAM.part1.rar (6048 Kb)
(2/4) WimBuilder2_RAM.part2.rar (6048 Kb)
 (3/4) WimBuilder2_RAM.part3.rar (6048 Kb)
 (4/4) WimBuilder2_RAM.part4.rar (292 Kb)

Re: WimBuilder2 - New Builder with Re:WIN10XPE project(~20H1 Supported)
« Reply #174 on: November 10, 2019, 03:51:29 PM »

slore

  • Moderator, WimBuilder
  • Sr. Chef
  • *****
  • Date Registered: Jun 2016
  • Posts: 664
 (1/4) WimBuilder2_RAM.part1.rar (6048 Kb)
(2/4) WimBuilder2_RAM.part2.rar (6048 Kb)
(3/4) WimBuilder2_RAM.part3.rar (6048 Kb)
 (4/4) WimBuilder2_RAM.part4.rar (292 Kb)

Re: WimBuilder2 - New Builder with Re:WIN10XPE project(~20H1 Supported)
« Reply #175 on: November 10, 2019, 03:51:57 PM »

slore

  • Moderator, WimBuilder
  • Sr. Chef
  • *****
  • Date Registered: Jun 2016
  • Posts: 664
 (1/4) WimBuilder2_RAM.part1.rar (6048 Kb)
(2/4) WimBuilder2_RAM.part2.rar (6048 Kb)
 (3/4) WimBuilder2_RAM.part3.rar (6048 Kb)
(4/4) WimBuilder2_RAM.part4.rar (292 Kb)

Re: WimBuilder2 - New Builder with Re:WIN10XPE project(~20H1 Supported)
« Reply #176 on: November 10, 2019, 04:57:35 PM »

slore

  • Moderator, WimBuilder
  • Sr. Chef
  • *****
  • Date Registered: Jun 2016
  • Posts: 664
7-Zip patch in WimBuilder2 AND 7-Zip plugin in WinBuilder.

WimBuilder2 use html/js for drawing the UI, modify wim file with batch syntax.

So you can update registry with :LABEL function in less codes.(of cause, you can call vbscript/powershell/python/ruby/lua ... in batch script)
ila_rendered

Align items without coordinates.
ila_rendered
ila_rendered

If you are good at Web page develop, you create unique fantasy UI, and use JQuery to control the UI.
If not, don't be worry, the basic elements can be easy to learn from the internet, and it is more standard and tidy.

Update 7-zip without writing a word code.
ila_rendered


Oh, all of the codes will be hightlight by the mainstream editors.
Not only hightlight, but code check, Auto completion, etc.
« Last Edit: November 10, 2019, 05:02:15 PM by slore »

Re: WimBuilder2 - New Builder with Re:WIN10XPE project(~20H1 Supported)
« Reply #177 on: November 10, 2019, 05:10:29 PM »

slore

  • Moderator, WimBuilder
  • Sr. Chef
  • *****
  • Date Registered: Jun 2016
  • Posts: 664
Hi, Lancelot

Quote
"Snipping Tool" plugin


Snippint Tool is already in WimBuilder2.


WimBuilder2\Projects\WIN10XPE\01-Components\za-Accessories\_snippingtool.bat
Code: [Select]
call AddFiles %0 :end_files
goto :end_files

@\Program Files\Common Files\Microsoft Shared\ink\
InkObj.dll,tpcps.dll
??-??\InkObj.dll.mui

@\Windows\system32\
SnippingTool.exe
DWrite.dll,msdrm.dll,oleacc.dll,oleaccrc.dll,uxtheme.dll,wisp.dll
:end_files


Quote
and
 I did not change any plugin, I only quickly use them with WimBuilder as mentioned recently on other topics.
:thumbsup:

What is done can be called by batch script, of cause lots of WimBuilder's macro, main.bat can be used in WinBuilder's plugin.

But I want that the end user write less code, or no code for adding/updating their applactions.


Quote
Sure, but all work lost when the author updates the project/builder and requires re-work to implement again ...

Not true, if you use source control management, like svn/git to manage your custom codes.
Just create a new branch to implement your custom features.
if the author updated, just click some menu to rebase your branch to the master branch,
all your work is *patched* on your develop branch with the newest version.

Quote
Such things better when provided by the author of the project/builder as project/builder feature.
YES, so I prefer to someone implement some features and share it, be better to send me a pullrequest on github to merge them to the master branch.

« Last Edit: November 10, 2019, 05:17:41 PM by slore »

Re: WimBuilder2 - New Builder with Re:WIN10XPE project(~20H1 Supported)
« Reply #178 on: November 10, 2019, 06:38:37 PM »

Lancelot

  • Moderator, Gena Baker
  • Grand Chef
  • *****
  • Date Registered: Sep 2010
  • Posts: 10350
Hi Slore,

*
Before your posts, I already fixed my previous post about Sniping Tool providing detailed info how to add Sniping Tool with WimBuilder
"Snipping Tool" plugin not required, available at WimBuilder-Patches-Components\Accessories-Sniping Tool

*
But I want that the end user write less code, or no code for adding/updating their applactions.
I agree. On my side, I already have lots of plugins, better use them with no code and without spending time to re write.  :thumbsup:

ps:
 wb followed an intentional (following hidden agenda) bad design on that area that was carelessly followed by pebakery and livesystempro (I informed them but they decide to ignore that times following wb)
  which make end user not to use plugins standalone (eg. inside a blabla.cmd , blablabuilder.exe /execute .\blabla.plugin not possible),
    I work around that design trouble another way to get plugins work with wimbuilder (and others) last year (which was also written on posts last year too).
       It is good wimbuilder naturally do not have such trouble since day 1.   :cheers:



*
Not true, if you use source control management, like svn/git to manage your custom codes.
Probably you are right, as long as changes added to project main stream distribution the way you write, all ways to Istanbul.  :wink:
 Still, On some "critical" cases, I believe such things better by developer's hand since the developer knows more than the one who feedback .....
   Something I had also practiced .....
     On other cases, things will work very smooth with github the way you write. :thumbsup:

Also, to me on some cases, forums help developers what to add "pullrequest" or not in a better environment.

Shortly: Advantages , Disadvantages , Different Available Options --> Balance  :cool:


*
Time to quick test parameters, see you on next posts.... :turtle:

Re: WimBuilder2 - New Builder with Re:WIN10XPE project(~20H1 Supported)
« Reply #179 on: November 11, 2019, 09:17:26 AM »

Lancelot

  • Moderator, Gena Baker
  • Grand Chef
  • *****
  • Date Registered: Sep 2010
  • Posts: 10350
Hi Slore,

I only could find some time to quick test today,
 Command Line works but I can not use that command line option to do things after build which is the primary goal of having such option also with other builders/projects.

writing an example easier to explain:

eg.
WinBuilder_Test.cmd
Code: [Select]
cd /d "%~dp0"
WimBuilder.cmd --build --make-iso --close-ui
Echo WimBuilder.cmd finished do other things ....

Echo Finished
cmd
exit
 

After "WimBuilder.cmd --build --make-iso --close-ui" line continue to next line without waiting WimBuilder finish build and close-ui

See You ..... :turtle:
« Last Edit: November 11, 2019, 09:18:25 AM by Lancelot »

 

Powered by EzPortal