Topic: PEBakery Test Build  (Read 40076 times)

Re: PEBakery Test Build
« Reply #40 on: November 18, 2017, 02:32:02 PM »

ied206

  • Moderator,
  • Chef
  • *****
  • Location: South Korea
  • Date Registered: Jan 2014
  • Posts: 257
I guess CoprOrExpand added. ?
Even though CopyOrExpand / StrFormat,ShorPath are marked as deprecated, it still works.

- CopyOrExpand
This command was marked as deprecated since very few plugin used this in Win10PESE.
However, the more direct cause was that I cannot properly reproduces Expand.exe's behavior.
Test CopyOrExpand in PEBakery's CodeBox to make sure the current implementation is working correctly, then I will remove 'deprecated' mark.
I myself found out in 'the rare case' Macro Library using CopyOrExpand in Win10PESE, the file was successfully copied.
But the thing can be different in Gena.

- StrFormat,ShortPath
Windows API for getting 8.3 path depends on registry value "HKLM\System\CurrentControlSet\Control\FileSystem\NtfsDisable8dot3NameCreation". Which in some system, it will return just long path. I faced this issue myself on my old system.
Even though the registry value can be changed, it requires reboot.
So the command was marked as deprecated because this command cannot be 'trusted' to always work.
Personally it would be better to remove the use of StrFormat,ShortPath, but the current implementation does work if the registry value is correctly set.
ila_rendered
ila_rendered

It is easy to update such plugins for PEBakery following your active development.  :wink:

Remember Reply 2:
http://theoven.org/index.php?topic=2271.msg24579#msg24579

We need a new PEBakery command
I feel
System,ReScan

ex:
System,ReScan,%ProjectDir%\Downloads
System,ReScan,%ProjectDir%\blabla.script
Oh, I haven't noticed that allowing specifc plugin in Rescan can be used as great countermeasure.
I will implement this in next build.

Re: PEBakery Test Build
« Reply #41 on: November 18, 2017, 03:58:20 PM »

ied206

  • Moderator,
  • Chef
  • *****
  • Location: South Korea
  • Date Registered: Jan 2014
  • Posts: 257
Yes amazing progress.

Note on Tweaks / Wallpaper on Win10PE SE X64 1709 source if I click the Browse button to the right of the text box under Use Custom Wallpaper app crashes to the desktop.

Build time is 17 minutes versus 14 minutes with BuilderSE.
I forget to mention this, that bug was fixed in Build 20171118.
If you find more bugs, please let me know.

Re: PEBakery Test Build
« Reply #42 on: November 18, 2017, 06:03:37 PM »

bob.omb

  • Code Baker
  • Grand Chef
  • *****
  • Location: USA
  • Date Registered: Jul 2017
  • Posts: 1261
Have been following progress, stay motivated I am waiting for this   :w00t:, just in case you thought no one was watching  :wink:

Re: PEBakery Test Build
« Reply #43 on: November 18, 2017, 07:19:37 PM »

Atari800xl

  • Code Baker
  • Sr. Chef
  • ****
  • Date Registered: Feb 2013
  • Posts: 827
Congratulations again, ied206, we've been in contact for a while now, but I want to publicly show my respect and admiration for your amazing job on PEBakery, seems you achieved the impossible by creating a completely new builder that is ready for the future, while still being compatible with current projects. Today's build is another milestone, because this one's working great on older hardware as well. And then all of this available on GitHub as well (which means it's probably acceptable in a corporate environment as well), who could ask for more?!

 :thumbsup:

Re: PEBakery Test Build
« Reply #44 on: November 18, 2017, 11:12:22 PM »

Lancelot

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

I need to work on Korean support.... probably on another topic later...

For now, since we are here to support PEBakery,
Test with: W2003 Enterprise English x86 (x13-05665)

Tip:
Gena\Utils\Download Source
1) W2003_Enterprise_English_x86
2) Set Source CD
( this will download x13-05665.img and extract )
3) Play


BuildGena.exe with W2003 Enterprise English x86 (x13-05665) works fine here.
-->
Than with PEBakery I get mouclass.sys not found -> halt

***
Further test this:
Code: [Select]
[Process]
If,ExistFile,%api%,AddVariables,%api%,ApiVar,GLOBAL
//--
If,ExistFile,%Target_Win%\System32\Drivers\mouclass.sys,FileDelete,%Target_Win%\System32\Drivers\mouclass.sys
//-
Require,HighVersion,mouclass.sys,TargetWin\System32\Drivers
If,ExistFile,%Target_Win%\System32\Drivers\mouclass.sys,Message,Success,Information
If,Not,ExistFile,%Target_Win%\System32\Drivers\mouclass.sys,Message,Failure,Error
//-
If,ExistFile,%Target_Win%\System32\Drivers\mouclass.sys,FileDelete,%Target_Win%\System32\Drivers\mouclass.sys

wb gives Success
PEBakery gives Failure

I feel you can figure out faster than I can.....?


*
We can deprecate StrFormatType,ShortPath in future.
 But for today I do not have time to check and update all related plugins.
Just put warning saying "StrFormatType,ShortPath will be depracted in future" to log
so we will remember, update plugins and remove in some far future.  :thumbsup:

*
CopyOrExpand,
We must keep this...
Long story to short:
 It is a result of evolution starting with FileCopy,
   Evolution now can continue with PEBakery  :thumbsup: to get faster SE builds...
Anyway,
 First things first, CopyOrExpand.  :great:
   .....

Slowly
:turtle:

Re: PEBakery Test Build
« Reply #45 on: November 20, 2017, 06:49:43 AM »

ied206

  • Moderator,
  • Chef
  • *****
  • Location: South Korea
  • Date Registered: Jan 2014
  • Posts: 257
Build 20171120

EDIT
TestBuild taken down because of potential license issue.
Please use beta 2 or later, sorry for inconvenience.

Changelog
- Fix RegMulti
- CopyOrExpand is no longer marked as deprecated
- If var name exists in interface command, Set,%Dest%,Permanent will change the value of interface, not in script.project
- Fix RadioGroup margin rendering
- Fix version compare bug on If

Known Issue
In Gena, GenaPrograms directory is generated as %ProjectTitle%Programs.

1.
Support Log in Win10PESE is now correctly generated.
The bug was caused by undocumented behavior of Set,%Dest%,Permanent.

2.
If command's version compare bug was breaking the build of Gena. It is now fixed in this version.
PEBakery is now able to build bootable ISO of Gena, but with some quirks.

3.
With help of paraglider, extracting cab by CopyOrExpand is working well.
Code: [Select]
[Success] CopyOrExpand - [MSVCRT.DLL] from [E:\WinPE\Source\Win2003\I386\MSVCRT.DL_] extracted to [E:\WinPE_dev\Gena\Target\Gena\I386\System32\MSVCRT.DLL] (CopyOrExpand,%Source_Win%\MSVCRT.DLL,%Target_Sys%)

4.
In "Gena\Basic\5 BootsectorPE.script", there is strange set commands.
Code: [Select]
Set,%MenuFile_GRUB%,,PERMANENT
Set,MenuAdd_GRUB,,PERMANENT
Set,%MenuFile_GRUB%,NIL,PERMANENT
Set,MenuAdd_GRUB,NIL,PERMANENT

As long as I know, only %Dest% or #1 forms are valid in variable name.
What is the meaning of this? I hope it is not a quick of WB077, since investigating WB082 alone consumes too much time...
« Last Edit: January 20, 2018, 07:45:42 PM by ied206 »

Re: PEBakery Test Build
« Reply #46 on: November 20, 2017, 10:09:53 PM »

Lancelot

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

Download latest Appetizer
http://gena.cwcodes.net/Compressed/index.php
Gena basic builds fine now with PEBakery  :thumbsup:

Delete:
\Projects\Gena\Finals\0 RegFactory\RegFactory.script file
or
\Projects\Gena\Finals\0 RegFactory\ folder
(To avoid PEBakery reported bug -> Level=0 plugin on build ! )


*
What is the meaning of this? I hope it is not a quick of WB077, since investigating WB082 alone consumes too much time...
It is long story ... , Do not worry about such things.  :thumbsup:
PEBakery do not need to be a full wb082 or wb080 or wb077rc2 replacement.
There are lots of things with wb082 wb080 wb077rc2 that only slow down builds and not required at all.

Long story to short.....

I add such lines to relevant plugins
Code: [Select]
If,ExistVar,%EngineVersion%,Begin
Set,%MenuFile_GRUB%,NIL,PERMANENT
Set,MenuAdd_GRUB,NIL,PERMANENT
End
Else,Begin
...

Code: [Select]
If,ExistVar,%EngineVersion%,Begin
  Set,"MenuAdd_GRUB","Exec,%ScriptFile%,Add-grub4dos-entry",PERMANENT
End
Else,Begin

..
PEBakery better not be a replacement to wb082 or wb080 or wb77rc2
Idea here at http://TheOven.org is always to build Projects fine and stable.  :great:
I already update more than 100 plugins on servers to get PEBakery compatible and smooth.  :wink:

What we will ask you about commands etc. is and will be only to get Project stable and things run smooth and better.
Sadly winbuilder developers had other ideas .....

Well that was the reason we create http://TheOven.org at first 7 years ago.  :wink:

There are lots of good builder features we missed because of using closed source builder,
 now with PEBakery we can continue development also at builder level.  :great:

*
JFX fixed CnlsTxtsetup.exe, now you can use Korean source  :thumbsup:

*
Galapo Replace FileByteExtract with Call,FileByteCheck ,-> FileByteExtract command deprecated (no need on PEBakery)  :thumbsup:

*
%ProjectTitle%Programs replaced with GenaPrograms to ease PEBakery tests (Gena\Basic\ProgramFilesPE)

**
Launcher.exe -> shows error at Stage2 15/15
when first launched without any cache files
Log do not show any info about what is happening at Stage2 15/15 !

PEBakery Missing: There is no log info about things when PEBakery first start.





***
PEBakery  Gena Appetizer build take  1 minute 26 seconds,
Wb077rc2 Gena Appetizer build take 2 minutes, 45 seconds

already ~ %100 (2x times) faster  :great:
and without any plugin cache.  :cool:

 :clap: :thumbup: :band: :ymca:


Further It will be easier to investigate other things with PEBakery using small Gena builds.  :great:
:turtle:
« Last Edit: November 20, 2017, 10:11:51 PM by Lancelot »

Re: PEBakery Test Build
« Reply #47 on: November 21, 2017, 01:27:14 AM »

bob.omb

  • Code Baker
  • Grand Chef
  • *****
  • Location: USA
  • Date Registered: Jul 2017
  • Posts: 1261
Not sure if you guys covered this or not but when launcher and binary folder are placed on root an extra \ causes an error

ila_rendered

Just FYI for later

---

Also maybe more relevant

ila_rendered

PEBakery puts entire ISO contents in the WIM folder instead of WIM contents during build. On 10PESE v1709

I will stay out of testing until you have the the core complete in order to stay out of the way of the important tasks.
« Last Edit: November 21, 2017, 02:40:43 AM by bob.omb »

Re: PEBakery Test Build
« Reply #48 on: November 21, 2017, 10:57:02 PM »

Lancelot

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

%ProjectTitle% deprecated now from all projects,
following plugins updated:

Win81SE\Finals\Enable PAE on Windows PE

Gena\Basic\PrepPE
Gena\Basic\ProgramFilesPE (v27)
Gena\Basic\BootsectorPE
Gena\Basic\ShortcutsCentro

Gena\Drivers\4 Storage\DPs-MassStorageDrivers_MSST
Gena\Drivers\6 Other\Driver Import PE
Gena\Drivers\6 Other\Driver Import PE AE

Gena\Finals\1 Optimizations\Multi Processor
Gena\Finals\1 Optimizations\BootScreen

Gena\Finals\2 Create Image\BootDI
Gena\Finals\2 Create Image\Create ISO
Gena\Finals\2 Create Image\WimBoot

Gena\Utils\Share Plugins

ALL-SE\Finals\Create ISO

Gena-Yomi\Utils\Plugin News

Yomi\Basic Project
Yomi\ShellG\PE Shell Swapper
Yomi\AppsGS\Virtualization\Paragon Virtualization Manager 9.5

ALL-Projects\VirtualTest\VMWare Emulation
ALL-Projects\VirtualTest\VirtualBox Emulation
ALL-Projects\Utils\PluginManager


==>
no need %ProjectTitle% on PEBakery anymore.  :great:

:turtle:
« Last Edit: November 21, 2017, 11:00:20 PM by Lancelot »

Re: PEBakery Test Build
« Reply #49 on: November 22, 2017, 10:39:34 AM »

Lancelot

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

All Main Plugins ( script.project files ) updated (Gena ALL-SE Yomi...)

Added %TargetDir% and %ISOFile% to [Variables]

ex:
Code: [Select]
[Variables]
%TargetDir%=%BaseDir%\Target\Win10PESE
%ISOFile%=%BaseDir%\ISO\Win10PE.iso

-->
no need PEBakery - Settings - Projects - Project Path Setting:
Target Directory
ISO File

*
Similar settings on wb causes trouble time to time.
These are settings we do not want end user play with.
Project Admins do not provide such options to end uses, but options there. (Bad Design).
But since we can not control the availability of these settings following close source, they are there....
No need BAD design continue with PEBakery.  :great:



*
I will do arrangements for SourceDir so the same Tutorial will be valid for all builders and projects.

In the end, we will not need "Project Path Settings" at all.

Time...... slowly .....
:turtle:
« Last Edit: November 22, 2017, 10:45:59 AM by Lancelot »

Re: PEBakery Test Build
« Reply #50 on: November 23, 2017, 03:51:53 AM »

Lancelot

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

%ISODir% deprecated now from all projects,
following plugins updated:

Gena\Basic\CampPE
Gena\Basic\PrepPE
Gena\Finals\1 Optimizations\WimPack
Gena\Finals\2 Create Image\BootDI
Gena\Finals\2 Create Image\Create ISO
Gena\Finals\2 Create Image\WimBoot

Yomi\Basic Project

ALL-SE\Main Configuration
ALL-SE\Images Configuration

ALL-SE & Yomi\Apps\Portable\PStart and Papps

ALL-SE\Build\0 - PreConfig
ALL-SE\Build\1 - Copy Files

Gena\Basic\Build\Junction
Yomi\Build\Junction Y

Yomi\UtilsY\Update Projects

Win10PESE/Win8.1SE/Win8PESE\Components\.Net Framework

ALL-SE\Finals\PostConfig
ALL-SE\Finals\Create ISO

ALL-Projects\VirtualTest\qEmu Emulation
ALL-Projects\VirtualTest\qEmu X Emulation
ALL-Projects\VirtualTest\VirtualBox Emulation
ALL-Projects\VirtualTest\Virtual PC Emulation
ALL-Projects\VirtualTest\VMware Emulation

ALL-SE\WriteMedia\Copy to USB-Device

==>
no need %ISODir% on PEBakery anymore. :great:


:turtle:
« Last Edit: November 23, 2017, 03:52:16 AM by Lancelot »

Re: PEBakery Test Build
« Reply #51 on: November 23, 2017, 04:32:56 AM »

Lancelot

  • Moderator, Gena Baker
  • Grand Chef
  • *****
  • Date Registered: Sep 2010
  • Posts: 10350
Not sure if you guys covered this or not but when launcher and binary folder are placed on root an extra \ causes an error

Hi bob.omb,

It is not about PEBakery,
so far projects never tested under "root" folder.

All developments and tests goes under a subfolder (ex: D:\Oven)

I will check on virtual when I find time (If I forget, remind me next week)

I feel,
If it is not easy to update relevant plugins,
I will probably put a "halt" to early plugin on all projects to prevent user trying to build project at "root" folder.
We will see....

:turtle:

Re: PEBakery Test Build
« Reply #52 on: November 23, 2017, 04:54:57 AM »

ied206

  • Moderator,
  • Chef
  • *****
  • Location: South Korea
  • Date Registered: Jan 2014
  • Posts: 257
Build 20171123

EDIT
TestBuild taken down because of potential license issue.
Please use beta 2 or later, sorry for inconvenience.

Changelog
1. Improve plugin selection on build
.link file will be included in build, and plugins with level 0 (exception with script.project) will be excluded at build.
This fixes the bug reported by Lancelot.

2. Fix %BaseDir%
Not sure if you guys covered this or not but when launcher and binary folder are placed on root an extra \ causes an error.
It was caused by not trimming character '\' in %BaseDir%.
If the base directory is C:\, WB082 set %BaseDir% to C:, while PEBakery set it to C:\, causing path error.

This bug was fixed in build 20171123, showing same result with WB082.

3. Reworked log display and export.
Summary and local variable of plugin in exported log.
In HTML export, the errors will be listed on the top, providing hyperlink to the error.

4. Added new options
Since Win10PESE can be compiled without an error, "Halt build on error" option added.
Compatibility option to ignore WebLabel's width also added.

5. Known Issue
System,ErrorOff works better, but not perfect yet.
It is because internal difference between PEBakery and WB082.
PEBakery parses raw codes before running it, so raw codes's structure is not keeped, resulting ERROROFF to malfunction when used with If.
I am exploring about workaround, but it seems quite complex.

6. Question
When WB read a value from ini, does % escaped?

For test, I created %BaseDir%\Test.ini with this text:
Code: [Select]
[PEB]
CDDrive=%CDDrive%

And this code in CodeBox:
Code: [Select]
IniRead,%BaseDir%\Test.ini,PEB,CDDrive,%CDDrive%
Echo,%CDDrive%

WB echos just %CDDrive%, even though global variable %CDDrive% is set to "Y:".

EDIT: Good news to hear setting ISODir and TargetDir in project itself.
« Last Edit: January 20, 2018, 07:46:05 PM by ied206 »

Re: PEBakery Test Build
« Reply #53 on: November 23, 2017, 06:42:46 AM »

Lancelot

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

Than maybe projects support root  :smile:
Let us know your test results.

Hi ied206,

I guess you discover a workaround use....
Following your example,
As far as I remember ( writing from phone )
iniread reads what it is ignoring  variables of projects. ( escaped )

There are some things with escapes,
We used iniread iniwrite txtaddline. . to workaround some cases...

I will check related stuff when time found. ( + sourcedir arrangement .... )

 

:turtle:

Re: PEBakery Test Build
« Reply #54 on: November 23, 2017, 05:21:19 PM »

Lancelot

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

some small bugs I notice:

*
Here is video I reported before about
Stage 2 (15 / 15)
Error

https://www.dropbox.com/s/rq52qtumd749nny/Video_2017-11-23_193231_Stage2%2815-15%29_Error.7z?dl=0

*
Stop button do not work quickly
ex:
https://www.dropbox.com/s/p0inmz8ajxj5yee/2017-11-23_195752.png?dl=0

Stop should do immediate halt (Same with Halt,)

*
RadioButton bug:
This bug also exists on previous version, but happening after restart of PEBakery.
I delay to report till finding a reproducable way.

Now it is very reproducable and probably cause build failures....

(Maybe again related to using none ssd ?!)


During build, (or in case of halt on a plugin) on plugins where RadioButton used
PEBakery set all RadioButtons False
1 of them must be true....
With other words: PEBakery should not change RadioButton condition!

reproduce:
1) Easy way to reproduce:
Click green download button on
Basic\ProgramFilesPE
Basic\BootsectorPE
->
PEBakery -> Refresh Plugin button
-->
you will notice all RadioButtons false

+
or do not use Refresh Plugin button
-->
you will notice all RadioButtons false

sometimes one way sometimes other way.

2) Long way to reproduce
After "Build"
Basic\ProgramFilesPE
Basic\BootsectorPE
->
PEBakery -> Refresh Plugin button

*
Basic\BootsectorPE
Set - Invalid variable name [MenuAdd_GRUB] (Set,MenuAdd_GRUB,NIL,PERMANENT)

Set,MenuAdd_GRUB,NIL,PERMANENT
line is there to remove MenuAdd_GRUB macro if there exists.

Code: [Select]
If,ExistVar,%EngineVersion%,Begin
Set,%MenuFile_GRUB%,NIL,PERMANENT
Set,MenuAdd_GRUB,NIL,PERMANENT
End
Else,Begin

?

*
bypassing Set,MenuAdd_GRUB,NIL,PERMANENT error
at Profile Handling and Settings step I get error:
 If - Circular Reference by [%CDDrive%] (If,%loc%,Equal,%CDDrive%,Begin

I feel related to radiobuttons or similar .... only informing.

*
It is VERY good to have
Local Variables of Plugin
list for each plugin  :thumbsup:
 :bounce: :jump: :dance: :icecream: :happy:

maybe better to have "Local Variables of Plugin " at the begining of plugin process  :wink:

also add [Variables] to the "Local Variables of Plugin "  :great:


******
I will report quick test results but I do not have much free time at current time of the year.
I plan to report quick build test results daily,
and inspection related stuff once a week.

Probably one more post tonight with iniread check.  :thumbsup:
:turtle:

Re: PEBakery Test Build
« Reply #55 on: November 23, 2017, 05:28:41 PM »

Lancelot

  • Moderator, Gena Baker
  • Grand Chef
  • *****
  • Date Registered: Sep 2010
  • Posts: 10350
maybe better to have "Local Variables of Plugin " at the begining of plugin process  :wink:

OR I feel better idea:
"Local Variables of Plugin " At both Begining and At End of plugin.  :great:

OR If you have a good reason to put to the end, it is ok to me now.  :great:

Well you choose, on your hands.

*
It maybe good to put link to each plugin to we can jump to plugin (like error link)


:turtle:

Re: PEBakery Test Build
« Reply #56 on: November 23, 2017, 07:53:53 PM »

Lancelot

  • Moderator, Gena Baker
  • Grand Chef
  • *****
  • Date Registered: Sep 2010
  • Posts: 10350
Read a value from ini, does % escaped?

iniread reads what it is ignoring  variables of projects. ( escaped )

Yes escaped  :thumbsup:
->
iniread reads what it is....  :thumbsup:




Code: [Select]
[Main]
Title=IniRead_Write_Test
Type=Plugin
Author=Lancelot
Description=() New Plugin
Credits=http://TheOven.org
Version=001
Download_Level=2
Level=5
Selected=False
Mandatory=False
NoWarning=False
Contact=http://TheOven.org
Date=2017.11.23
Depend=
Disable=
CertifiedBy=
Certification=
HistoryNotes01=
HistoryNotes51='Plugin Creator' http://TheOven.org/index.php?topic=178
History001=Lancelot 2017.11.23 Plugin created

[InterFace]
Test_Button1="Test 1",1,8,96,108,80,25,Test_1,0,False,False
Test_Button2="Test Iniread Dummy",1,8,218,74,187,25,Test_2,0,False,False,_Test_2_,False
pButton1="Test Echo - Dummy",1,8,219,106,127,25,Test_Dummy,0,False,False

[PEB]
CDDrive=%CDDrive%
RegSystem=%RegSystem%
CDDrive_Test=%CDDrive%

[Variables]

[Process]

[Test_1]
If,Not,ExistVar,%EngineVersion%,Message,%Version%,Information
IniDelete,%ScriptFile%,PEB,CDDrive_Test
IniRead,%ScriptFile%,PEB,CDDrive,%CDDrive%
Echo,%CDDrive%,Warn
Message,%CDDrive%,Information
IniWrite,%ScriptFile%,PEB,CDDrive_Test,%CDDrive%
Echo,%CDDrive%,Warn
Message,%CDDrive%,Information

[Test_2]
IniRead,%ScriptFile%,PEB,DUMMMY_DUMMMY_DUMMMY_DUMMMY_DUMMMY_DUMMMY_DUMMMY,%CDDrive%
Echo,%CDDrive%,Warn
Message,%CDDrive%,Information

[Test_Dummy]
Echo,%DummyDummy%,Warn
Message,%DummyDummy%,Information

[Process_2]
IniDelete,%ScriptFile%,PEB,CDDrive_Test
IniRead,%ScriptFile%,PEB,CDDrive,%t%
Echo,%t%,Warn
Message,%t%,Information
IniWrite,%ScriptFile%,PEB,CDDrive_Test,%t%
Echo,%CDDrive%,Warn
Message,%CDDrive%,Information

[AuthorEncoded]
IcojamBlueBitsDocumentblue0048048.ico=4312,5750
Logo=IcojamBlueBitsDocumentblue0048048.ico

[EncodedFile-AuthorEncoded-IcojamBlueBitsDocumentblue0048048.ico]
lines=1
0=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
1=ty/Up7xhzwkdWO3LjGGTmSOXAFixv4kYONbvgM31ttizmx46NrDSU6WtY7sFEDfsaJj2CWalMduHK5A5clO7Au0Z73L7Lj/G/tOGeOLWfOtOG106x4yb9Y8Nw/DuMwXxP4J1vM0KfYEjzgupUO8MERGpzoCGZZ8iSzUbfChuqWW1PDShtG0eFUW2pcbQctdgQtBi/WyQ5woHpwV6fYU/lSeypZbMeF8ba0d4Et586zpazZNpQxw5pXf21JSX8xp9mTh/A07WDyHzFw/lmRn8VWJA6lQ0nDuHKxOVUtNueqJepN1cnmVLPUgmuWWVJtihXVr7BmlOjAvNjykVV2ooPEhwZ8XbPcjqqW2nLpElvSJdpSwSIbzp9vQ7lzrXl7nBVtjrWi1V9ZcOI/D6NZ0UPo65BB/Gf/QaQZ7zhhoPwzwwfFli4azGXxn3F5wmd8KGEIVyYO5SroqV48jPVLzFk01C6z5LrlVsIPD6z5cKoNiwbJU32qLeuX2XDFEhsuSbLhA/HWvG+BNe+aZ805s6048xsLTptuzqlfDuP4Pw3huKjB/G+a3/PnEz/lRXFTHo4Y4fjpwPn/KbZ4wSASDaXxg0k0lCcMIaMn8GGY8qM62YLgA9ekwIvlViQa6uFDTYo1VSVbc2mSFekSrKhwoRXvnm9JuXMsKSvOkjNmWFBbdTr3dV+h3lsX6O71M3z5XCsdb9LTkYaaHyZPjgwbKLs8seA/+O3vqWTBIC5ZOJjK4uFFwmf0QUNl0lDkCjqgQZ9swfqlliQaxIvqpVZUvtiSShItuWiRJe371pLy51pw9iwL2vaNOW2JMef104bR+eYi/umnn0jqhx9+4J6eHjp16tT7mJiYqaawf+DXzf+UoYFFQ+nCQSwaypGnCmTpUCLyBA3iQzWyJBokT1VLLLgs0ZwPLrLgwgXmvHeeOefNHsbZceacGTuM06cP5fX/PpSXThnCp5uKmIhY2Ht7e7n1eOub6dOnf2Equzxzv3CKLYbvpYnWXJZkQxWLJce2dCjZjiqxQ6qX2WOfOJA+xZFqVzhxzQonqsLXFcmy0x2oMN6B9mGn5823p+w5drQtzpbTY7Hb/8Oalk215AVfmFNbo47fv39P0vcavb7nq6++GvDfu79+tmxcMfOv//Uj/fTX/+SP3x/qV//N3797Sy+eP6fHj/u4u/se3bx5gy5f7uLOzk46efIkHT16jPX6Gios0tGOrJ28Zu0GOn26U2VmV25uY0zMl5a/Fbs827dumcl/w2Pw/0d+9eo19/c/QQ7u861bt/nKlat89tx5PtXWzseaW7i2roEP6Eo4KyeP165P46QlyxlZf5uQkJA4e/bs3/2W7PIkJyf9sbm5uf1/qqampvb6+vr2Kr2+o6yiokOnK+7Yt7+gY1f+7o7snJyOzMztHZs2p3esTF3dsSghqWNm3JyOmBkzO2bNmpMzdepU+9+a+1fPJ/+L9f/+MST4lzfJhyl/f/9Nb2O/PjG+/8H4/p3x/Y/Gt5XxncLqRz75uN//DdIVJVh4nFP1TM7PSsx1yilNdcosKXbJTy7NTc0rSQLyDQxMLIBILzM5n2EUDFOwTxVClwlgl4+uXq3OwAQA3ecQXvc1/IQBAAAAAgAAAD4AAAB2EAAAAAAAAAEAAAAAAAAAAAAAAA

[InterfaceEncoded]

[EncodedFolders]
Folder

[Folder]


:turtle:

Re: PEBakery Test Build
« Reply #57 on: November 23, 2017, 08:23:09 PM »

Lancelot

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

test
Gena\"Config Source Folder" plugin

I plan to use it on all other projects (Mantatory=True and some cosmetics)
you can test with Win10PESE using
Win10PESE\Downloads\Yomi\"Config Source Folder"
->
Win10PESE\"Config Source Folder"

This way (Mandatory=True)
all builders have same instruction to select Source.

what do you think ?

:turtle:

Re: PEBakery Test Build
« Reply #58 on: November 24, 2017, 07:36:50 AM »

Lancelot

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

*
Stop button do not work quickly
ex:
https://www.dropbox.com/s/p0inmz8ajxj5yee/2017-11-23_195752.png?dl=0

Stop should do immediate halt (Same with Halt,)

More Detail:

Builder Stop should end last Shellexecute application and Than Halt,

Here is a test plugin
Code: [Select]
[Main]
Title=Stop Test
Type=Plugin
Author=Lancelot
Description=() New Plugin
Credits=http://TheOven.org
Version=001
Download_Level=2
Level=5
Selected=False
Mandatory=False
NoWarning=False
Contact=http://TheOven.org
Date=2017.11.24
Depend=
Disable=
CertifiedBy=
Certification=
HistoryNotes01=
HistoryNotes51='Plugin Creator' http://TheOven.org/index.php?topic=178
History001=Lancelot 2017.11.24 Plugin created - Reply 58 http://theoven.org/index.php?topic=2271.msg24757#msg24757

[InterFace]
BuilderStop_Test_Button="Click 'Stop' button on builder after you see cmd screen",1,8,117,75,331,48,BuilderStop_Test_B_P,0
pButton1="Click 'X' on CMD screen ---- Close CMD",1,8,125,167,318,25,CMD_Close_Test_B_P,0

[Variables]

[Process]

[BuilderStop_Test_B_P]
//PEBakery 0.9.1 alpha FAIL
Message,"You must NOT see ErrorLevel Message after 'Stop' button. Click 'OK' now.",Information
Echo,"Click 'Stop' button on builder after you see builder screen"
Shellexecute,Open,cmd.exe,"/K Echo Click 'Stop' button on builder after you see cmd screen"
//--
Message,"You must NOT see this message when you click 'Stop' button on builder screen",Error
Echo,ErrorLevel=%ExitCode%,Warn
Message,ErrorLevel=%ExitCode%,Information

[CMD_Close_Test_B_P]
//PEBakery 0.9.1 alpha Success
Message,"You must see ErrorLevel Message and Warn after you close cmd screen. Click 'OK' now.",Information
Echo,"Click 'X' on CMD screen ---- Close CMD"
Shellexecute,Open,cmd.exe,"/K Echo Click 'X' on CMD screen ---- Close CMD"
//--
Message,"You must see ErrorLevel Message and Warn after you close cmd screen",Information
Echo,ErrorLevel=%ExitCode%,Warn
Message,ErrorLevel=%ExitCode%,Information


[AuthorEncoded]
IcojamBlueBitsDocumentblue0048048.ico=4312,5750
Logo=IcojamBlueBitsDocumentblue0048048.ico

[EncodedFile-AuthorEncoded-IcojamBlueBitsDocumentblue0048048.ico]
lines=1
0=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
1=ty/Up7xhzwkdWO3LjGGTmSOXAFixv4kYONbvgM31ttizmx46NrDSU6WtY7sFEDfsaJj2CWalMduHK5A5clO7Au0Z73L7Lj/G/tOGeOLWfOtOG106x4yb9Y8Nw/DuMwXxP4J1vM0KfYEjzgupUO8MERGpzoCGZZ8iSzUbfChuqWW1PDShtG0eFUW2pcbQctdgQtBi/WyQ5woHpwV6fYU/lSeypZbMeF8ba0d4Et586zpazZNpQxw5pXf21JSX8xp9mTh/A07WDyHzFw/lmRn8VWJA6lQ0nDuHKxOVUtNueqJepN1cnmVLPUgmuWWVJtihXVr7BmlOjAvNjykVV2ooPEhwZ8XbPcjqqW2nLpElvSJdpSwSIbzp9vQ7lzrXl7nBVtjrWi1V9ZcOI/D6NZ0UPo65BB/Gf/QaQZ7zhhoPwzwwfFli4azGXxn3F5wmd8KGEIVyYO5SroqV48jPVLzFk01C6z5LrlVsIPD6z5cKoNiwbJU32qLeuX2XDFEhsuSbLhA/HWvG+BNe+aZ805s6048xsLTptuzqlfDuP4Pw3huKjB/G+a3/PnEz/lRXFTHo4Y4fjpwPn/KbZ4wSASDaXxg0k0lCcMIaMn8GGY8qM62YLgA9ekwIvlViQa6uFDTYo1VSVbc2mSFekSrKhwoRXvnm9JuXMsKSvOkjNmWFBbdTr3dV+h3lsX6O71M3z5XCsdb9LTkYaaHyZPjgwbKLs8seA/+O3vqWTBIC5ZOJjK4uFFwmf0QUNl0lDkCjqgQZ9swfqlliQaxIvqpVZUvtiSShItuWiRJe371pLy51pw9iwL2vaNOW2JMef104bR+eYi/umnn0jqhx9+4J6eHjp16tT7mJiYqaawf+DXzf+UoYFFQ+nCQSwaypGnCmTpUCLyBA3iQzWyJBokT1VLLLgs0ZwPLrLgwgXmvHeeOefNHsbZceacGTuM06cP5fX/PpSXThnCp5uKmIhY2Ht7e7n1eOub6dOnf2Equzxzv3CKLYbvpYnWXJZkQxWLJce2dCjZjiqxQ6qX2WOfOJA+xZFqVzhxzQonqsLXFcmy0x2oMN6B9mGn5823p+w5drQtzpbTY7Hb/8Oalk215AVfmFNbo47fv39P0vcavb7nq6++GvDfu79+tmxcMfOv//Uj/fTX/+SP3x/qV//N3797Sy+eP6fHj/u4u/se3bx5gy5f7uLOzk46efIkHT16jPX6Gios0tGOrJ28Zu0GOn26U2VmV25uY0zMl5a/Fbs827dumcl/w2Pw/0d+9eo19/c/QQ7u861bt/nKlat89tx5PtXWzseaW7i2roEP6Eo4KyeP165P46QlyxlZf5uQkJA4e/bs3/2W7PIkJyf9sbm5uf1/qqampvb6+vr2Kr2+o6yiokOnK+7Yt7+gY1f+7o7snJyOzMztHZs2p3esTF3dsSghqWNm3JyOmBkzO2bNmpMzdepU+9+a+1fPJ/+L9f/+MST4lzfJhyl/f/9Nb2O/PjG+/8H4/p3x/Y/Gt5XxncLqRz75uN//DdIVJVh4nFP1TM7PSsx1yilNdcosKXbJTy7NTc0rSQLyDQxMLIBILzM5n2EUDFOwTxVClwlgl4+uXq3OwAQA3ecQXvc1/IQBAAAAAgAAAD4AAAB2EAAAAAAAAAEAAAAAAAAAAAAAAA

[InterfaceEncoded]

[EncodedFolders]
Folder

[Folder]


PEBakery -> "Click 'Stop' button on builder after you see builder screen"
Stop button do not close cmd screen.

 :wink:


Tip:
Utils\PC Packed -> small e button at right-down ---> creates new empty plugin (Copy Paste test codes here)


:turtle:

Re: PEBakery Test Build
« Reply #59 on: November 24, 2017, 07:54:50 AM »

Lancelot

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

%WindowsVersion% never used on any plugin, can we remove ?

Code: [Select]
[Process]
Message,WindowsVersion=%WindowsVersion%,Information

ps:
I lower amount of Permanent Variables (and Macros) used on projects to speed up builds in the last 7 years.
Less Permanent Variables, faster build.
(Builder need to check Less variables (and Macros) )

==>
no need %WindowsVersion% on PEBakery anymore. ?

:turtle:
« Last Edit: November 24, 2017, 05:47:36 PM by Lancelot »

 

Powered by EzPortal