Topic: Acronis True Image - Prz42  (Read 9815 times)

Re: Acronis True Image - Prz42
« Reply #20 on: December 22, 2018, 12:12:12 AM »

Prz42

  • Code Baker
  • Sr. Chef
  • ****
  • Date Registered: Jan 2014
  • Posts: 513
Hi Prz42

thanks for the updated ATI plugin
for correct syntax

needs commenting out or removing  ---------------------------------------------------------- (Line 413)

with Line 44
Code: [Select]
Button_ProvideFiles="Provide Files",1,8,9,207,90,22,ProvideFiles_Process,,False
-->
Code: [Select]
Button_ProvideFiles="Provide Files",1,8,9,207,90,22,ProvideFiles_Process,0,False

with  Line 259 Invalid RegWrite Syntax
Code: [Select]
RegWrite,HKLM,0x1,Tmp_Software\Classes\tibfile\DefaultIcon,,%ProgramPath%\tib_mounter.dll,0
Line 413
Code: [Select]
----------------------------------------------------------
Line 44
Code: [Select]
Button_ProvideFiles="Provide Files",1,8,9,207,90,22,ProvideFiles_Process,,False,_ProvideFiles_Process_,False
Line 259
Code: [Select]
RegWrite,HKLM,0x1,Tmp_Software\Classes\tibfile\DefaultIcon,,%ProgramPath%\tib_mounter.dll,0

Line 413 doesn't do anything it is just a line   ????
Line 44 seems to open the provide file folder and gives explanation. ????
Line 259 is a image icon. The icon shows up on the backup file.    ????

Did you run the plugin?
Did you make a new iso file?

Re: Acronis True Image - Prz42
« Reply #21 on: December 22, 2018, 01:19:34 AM »

APT

  • Grand Chef
  • *****
  • winpe enthusiast
  • Location: UK
  • Date Registered: Nov 2012
  • Posts: 1150
Hi Prz42

Quote
Line 413 doesn't do anything it is just a line   ????
Line 44 seems to open the provide file folder and gives explanation. ????
Line 259 is a image icon. The icon shows up on the backup file.    ????

I appreciate these syntax errors are ignored by BuilderSE, nevertheless, they do show up with the PEBakery syntax checker, and would make your plugin, not only compatible but correct in its syntax

regards APT

Re: Acronis True Image - Prz42
« Reply #22 on: December 22, 2018, 01:59:14 AM »

James

  • Grand Chef
  • *****
  • Location: USA
  • Date Registered: Dec 2017
  • Posts: 2272
Line 44 have a double comma ,,
But worth pointing out..

and line 259 appears to be missing quotes

Code: [Select]
RegWrite,HKLM,0x1,Tmp_Software\Classes\tibfile\DefaultIcon,,"C:\Program Files (x86)\Acronis\TrueImageHome\tishell.dll,-4"
« Last Edit: December 22, 2018, 02:36:39 AM by James »

Re: Acronis True Image - Prz42
« Reply #23 on: December 22, 2018, 02:20:31 AM »

APT

  • Grand Chef
  • *****
  • winpe enthusiast
  • Location: UK
  • Date Registered: Nov 2012
  • Posts: 1150
Hi
with line 44 the argument between the comma's either needs to be the bmp name or 0 for no bmp
not the same for line 259

@Prz42
Yes, of course, I run the plugin and created ISO - doesn't stop us getting syntax correct tho :thumbsup:
« Last Edit: December 22, 2018, 02:29:54 AM by APT »

Re: Acronis True Image - Prz42
« Reply #24 on: December 22, 2018, 06:37:50 AM »

Prz42

  • Code Baker
  • Sr. Chef
  • ****
  • Date Registered: Jan 2014
  • Posts: 513
Line 44 have a double comma ,,
But worth pointing out..

and line 259 appears to be missing quotes

Code: [Select]
RegWrite,HKLM,0x1,Tmp_Software\Classes\tibfile\DefaultIcon,,"C:\Program Files (x86)\Acronis\TrueImageHome\tishell.dll,-4"
I don't know if the quotes are necessary. Here is a registry shot.
ila_rendered

Re: Acronis True Image - Prz42
« Reply #25 on: December 22, 2018, 06:40:50 AM »

bob.omb

  • Code Baker
  • Grand Chef
  • *****
  • Location: USA
  • Date Registered: Jul 2017
  • Posts: 1261
The double ,, is normal.
« Last Edit: December 22, 2018, 06:54:27 AM by bob.omb »

Re: Acronis True Image - Prz42
« Reply #26 on: December 22, 2018, 10:28:16 AM »

APT

  • Grand Chef
  • *****
  • winpe enthusiast
  • Location: UK
  • Date Registered: Nov 2012
  • Posts: 1150
Hi Guys
can I just clarify this discussion, the first two errors are easily fixed
the third, is the one I just want to clarify
line 259 is actually
Code: [Select]
RegWrite,HKLM,0x1,Tmp_Software\Classes\tibfile\DefaultIcon,,%ProgramPath%\tib_mounter.dll,0
and is the only other line showing Invalid RegWrite Syntax error, I mention this as several posts above are showing a different line of code as the problem
 :smile:(actually can't see that line in this plugin! - I think it was a cut&paste prob)


@James
the line I think you  meant for missing quotes,
Code: [Select]
RegWrite,HKLM,0x1,Tmp_Software\Classes\tibfile\DefaultIcon,,"%ProgramPath%\tib_mounter.dll,0"
because I suspect you did, thanks for the input, and it certainly clears the error :thumbsup:

Edit
Quote
The double ,, is normal.
the double separator ,, is normal, but not for line44 which requires a parameter for that argument (for correct syntax)
« Last Edit: December 22, 2018, 12:49:11 PM by APT »

Re: Acronis True Image - Prz42
« Reply #27 on: December 22, 2018, 01:22:52 PM »

James

  • Grand Chef
  • *****
  • Location: USA
  • Date Registered: Dec 2017
  • Posts: 2272
Prz42,
From you screenshot the (Icon Index Number) is Missing..
Or I guess without "" one could remove the last comma 0 ( ,0 ) of the string..

APT
Code as written from Host - as example of RegCPE added "" to include last comma

Edit:
Note: These Issues Where Reported Not Because of an issue with the plugin for use in winbuilder PESE
But, APT reported them as a PEBakery Compatibility Issue..
Correcting the PEBakery Compatibility Issues will just help make the plugin more versatile, without any lasting effect on winbuilder
« Last Edit: December 22, 2018, 01:49:27 PM by James »

Re: Acronis True Image - Prz42
« Reply #28 on: December 22, 2018, 02:57:35 PM »

APT

  • Grand Chef
  • *****
  • winpe enthusiast
  • Location: UK
  • Date Registered: Nov 2012
  • Posts: 1150
Hi
Quote
But, APT reported them as a PEBakery Compatibility Issue..
Correcting the PEBakery Compatibility Issues will just help make the plugin more versatile, without any lasting effect on winbuilder
Further, from my perspective
For me, they are syntax errors, whether used in BuilderSE or PEBakery
BuilderSE ignores them, whilst PEBakery has a utility that easily identifies them, thereby giving you a chance to correct them- how could that be seen by anyone, as anything less than a positive?

PEBakery doesn't require special syntax, just the correct one
I guess it will always be up to the individual coder to choose which path to follow
« Last Edit: December 22, 2018, 04:22:09 PM by APT, Reason: further thoughts »

Re: Acronis True Image - Prz42
« Reply #29 on: December 22, 2018, 04:48:22 PM »

Prz42

  • Code Baker
  • Sr. Chef
  • ****
  • Date Registered: Jan 2014
  • Posts: 513
Prz42,
From you screenshot the (Icon Index Number) is Missing..
Or I guess without "" one could remove the last comma 0 ( ,0 ) of the string..
I put the "" on the line
Code: [Select]
RegWrite,HKLM,0x1,Tmp_Software\Classes\tibfile\DefaultIcon,,"%ProgramPath%\tib_mounter.dll,0"
So I can see that because the line had 0 for icon pick it didn't make any difference.
ila_rendered
The correct syntax needs the quotes as suggested.
I also downloaded PEBakery too check syntax.
Good discussion   :thumbsup:
Also thanks API
Re-posted Plugin

Re: Acronis True Image - Prz42
« Reply #30 on: December 22, 2018, 04:54:44 PM »

Prz42

  • Code Baker
  • Sr. Chef
  • ****
  • Date Registered: Jan 2014
  • Posts: 513
Minor changes.

« Last Edit: December 22, 2018, 05:33:15 PM by Prz42 »

Re: Acronis True Image - Prz42
« Reply #31 on: December 22, 2018, 05:06:55 PM »

James

  • Grand Chef
  • *****
  • Location: USA
  • Date Registered: Dec 2017
  • Posts: 2272
Good Things Come when we all work together...

Re: Acronis True Image - Prz42
« Reply #32 on: December 22, 2018, 05:14:09 PM »

Lancelot

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

following your attachment on reply 18 and further replies:

needs commenting out or removing  ---------------------------------------------------------- (Line 413)
I agree  :thumbsup:

with Line 44
Code: [Select]
Button_ProvideFiles="Provide Files",1,8,9,207,90,22,ProvideFiles_Process,,False
-->
Code: [Select]
Button_ProvideFiles="Provide Files",1,8,9,207,90,22,ProvideFiles_Process,0,False
This is design bug of PEbakery, report to PEBakery topic.

with  Line 259 Invalid RegWrite Syntax
Code: [Select]
RegWrite,HKLM,0x1,Tmp_Software\Classes\tibfile\DefaultIcon,,%ProgramPath%\tib_mounter.dll,0
This one is a sabotage from winbuider developer. Prz42 is a victim of that sabotage.

Nuno Brito and Peter Schang (pscex) took the liberty to sabotage compatible builder developers along with existing projects and "scripts" and along with registry converters at that times.
Fake excuse (lie) was "build faster" ... The reality we realize was sabotage and create an excute to put their own name to others work.

They succeed at that time (~8 9 years ago)...
As a result, after a year I guess, since available "scripts" not compatible anymore, Peter Schang (pscex) recreate scripts AND projects with his name on them.


Lancelot and BlueLife took the initiative to create RegCPE 8 ~ years ago....
So other builder developers who try to create a compatible builder (eg. ied206 with PEBakery after many years RegCPE)
can create such builder easily,
or
Other developers who create their own builder or projects (eg. slore WimBuilder - RegCPE - regToReg conversion, or Win10XPE ! )
can use RegCPE easily.


BUT
There are very very rare cases left like above, in which users have "old" working codes with wb, instead of converting with RegCPE.

so my comment on this:
Hi
Quote
But, APT reported them as a PEBakery Compatibility Issue..
Correcting the PEBakery Compatibility Issues will just help make the plugin more versatile, without any lasting effect on winbuilder
Further, from my perspective
For me, they are syntax errors, whether used in BuilderSE or PEBakery
BuilderSE ignores them, whilst PEBakery has a utility that easily identifies them, thereby giving you a chance to correct them- how could that be seen by anyone, as anything less than a positive?

PEBakery doesn't require special syntax, just the correct one
I guess it will always be up to the individual coder to choose which path to follow
It is not only about individual coder,
PEBakery requires some small updates to be better (only following your posts, I do not touch PEBakery)
Empty picture value on a button have univeral meaning: no picture,
 on this case not related to winbuilder, but related to PEBakery design bug or mistake etc.

*
Edit:
Note: These Issues Where Reported Not Because of an issue with the plugin for use in winbuilder PESE
But, APT reported them as a PEBakery Compatibility Issue..
Correcting the PEBakery Compatibility Issues will just help make the plugin more versatile, without any lasting effect on winbuilder
not always the case,
Line 413 is not compatible to winbuilder or pebakery,
PEBakery requires some updates as described before.

History: Funny, a big community come together to develop better project and builder and failed.



+
Additional:
DefaultIcon registry should be expandable entry to have maximum compatibility:
RegWrite,HKLM,0x2,Tmp_Software\Classes\tibfile\DefaultIcon,,"%ProgramPath%\tib_mounter.dll,0"

















@Prz42
Summary:
1)
Remove (Line 413) as APT wrote:
----------------------------------------------------------
2)
Correct syntax should be (RegCPE result same with only 0x1)
RegWrite,HKLM,0x2,Tmp_Software\Classes\tibfile\DefaultIcon,,"%ProgramPath%\tib_mounter.dll,0"
3)
delete that line, not required (RegCPE do not contain that line)
RegWrite,HKLM,0x1,Tmp_Software\Classes\tibfile\Shell\open,,
4)
Line25
---------------------Many thanks goes to Lancelot for Macro's (Call,FileCopyBiggerVersion) ........ect.....  Date:2018.12.20
Thanks for credits, but better put historynotes after line HistoryNotes01=All Credits to 2aCD, Mikka & ChrisR- Current plugin made from his Acronis Plugins
HistoryNotes02=Many thanks goes to Lancelot for Macro's (Call,FileCopyBiggerVersion) ........ect.....  Date:2018.12.20



***
I see you have new post when I write current, only re check my current post.
I did not test your plugin, but only follow topic with a quick read of your plugin.

An idea:
Acronis_TrueImage_Prz42_2019.Script

so every year it will be easier to follow plugin update with my very limited free time. :wink:
next year:
Acronis_TrueImage_Prz42_2020.Script   

See you tomorrow.... :turtle:

Re: Acronis True Image - Prz42
« Reply #33 on: December 22, 2018, 05:33:46 PM »

Prz42

  • Code Baker
  • Sr. Chef
  • ****
  • Date Registered: Jan 2014
  • Posts: 513
Updated per Lancelot
[ Attachment Invalid Or Does Not Exist ] :bbq:
« Last Edit: May 02, 2020, 05:21:17 AM by Prz42 »

Re: Acronis True Image - Prz42
« Reply #34 on: December 22, 2018, 11:44:36 PM »

bob.omb

  • Code Baker
  • Grand Chef
  • *****
  • Location: USA
  • Date Registered: Jul 2017
  • Posts: 1261
For your instructions, the file is named _45_52D78812FFC93DDE133DECBB0875BCA0 in the latest 2019 version

but i guess its different each time
« Last Edit: December 23, 2018, 12:29:31 AM by bob.omb »

Re: Acronis True Image - Prz42
« Reply #35 on: December 23, 2018, 01:11:39 AM »

Prz42

  • Code Baker
  • Sr. Chef
  • ****
  • Date Registered: Jan 2014
  • Posts: 513
Thanks bob.omb

Updated my previous post

Re: Acronis True Image - Prz42
« Reply #36 on: January 03, 2019, 07:08:17 AM »

Lancelot

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

 :great: Added to server with line 212 fix:

Call,DownloadX,"%BaseDir%\Projects\Yomi\AppY\HD Tasks\Imaging\Acronis_TrueImage_Prz42_2019.Script"

http://theoven.org/index.php?topic=2672.0

ps:
You can also ask bob.omb to update plugin on the server when required.

*
but i guess its different each time

I guess mostly 3rd or 4th file with size order ?
racing with 4th help document !

:turtle:

Re: Acronis True Image - Prz42
« Reply #37 on: January 03, 2019, 07:10:46 AM »

Lancelot

  • Gena Baker
  • Grand Chef
  • *****
  • Date Registered: Sep 2010
  • Posts: 10350
+
forgot to mention

I could not find ui picture you use, you will notice same bad dots when you zoom Acronis-True-Image-2019-Released.jpg on interface.
http://theoven.org/index.php?topic=2693.msg30452#msg30452

:turtle:

Re: Acronis True Image - Prz42
« Reply #38 on: February 01, 2019, 07:02:32 PM »

Lancelot

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

updated your plugin with server adjustments, please follow:

Call,DownloadX,"%BaseDir%\Projects\Yomi\AppY\HD Tasks\Imaging\Acronis_TrueImage_Prz42_2019.Script"
Downloading Plugins with a CodeBox:
http://TheOven.org/index.php?topic=2672.0

:turtle:

Re: Acronis True Image - Prz42
« Reply #39 on: May 02, 2020, 05:25:22 AM »

Prz42

  • Code Baker
  • Sr. Chef
  • ****
  • Date Registered: Jan 2014
  • Posts: 513
TrueImage 2020 Plugin

* Acronis_TrueImage_Prz42_2020.Script (55.41 kB - downloaded 54 times.)    :bbq:
« Last Edit: May 02, 2020, 05:27:32 AM by Prz42 »

 

Powered by EzPortal