Topic: Please Help me!! Prob in building  (Read 18263 times)

Please Help me!! Prob in building
« on: January 04, 2014, 08:10:04 PM »

Xennet

  • Jr. Chef
  • **
  • Date Registered: Jan 2014
  • Posts: 42
I tried the Win81se today but each time the build gets stuck with the same error given below. Detailed log attached. Please help..

 (1-Explorer.script) RegWrite - Type: [0x4] Section [HKLM\Tmp_Software\Microsoft\Windows\CurrentVersion\Policies\System] Key [EnableUIPI]:
 [Failed]  (Macro_Library.script) Run - Failed to find section [Depack_2_%PosExt%] in file: [%BaseDir%\Projects\Win8.1SE\Build\Macro_Library.script]

Re: Please Help me!! Prob in building
« Reply #1 on: January 04, 2014, 09:36:28 PM »

Lancelot

  • Gena Baker
  • Grand Chef
  • *****
  • Date Registered: Sep 2010
  • Posts: 10350
Forum rules: http://theoven.org/index.php?action=rules
Quote
2) Use some common sense. Don't post your question under multiple topics.
NEVER double topic :wink:  other one http://theoven.org/index.php?topic=827.0 locked

\Projects\Win8.1SE\Shell\1-Explorer.script
Change line 600:
Code: [Select]
RegWrite,HKLM,0x4,Tmp_Software\Microsoft\Windows\CurrentVersion\Policies\System,EnableUIPI, 1
to
Code: [Select]
RegWrite,HKLM,0x4,Tmp_Software\Microsoft\Windows\CurrentVersion\Policies\System,EnableUIPI,1


:turtle:

Re: Please Help me!! Prob in building
« Reply #2 on: January 04, 2014, 09:39:41 PM »

Xennet

  • Jr. Chef
  • **
  • Date Registered: Jan 2014
  • Posts: 42
Thank you for the quick reply. Will try it. But first of all sorry for the double topic. I received an error when i posted for the first time. so i started a new post again. Sorry once more.

Re: Please Help me!! Prob in building
« Reply #3 on: January 04, 2014, 09:41:11 PM »

Lancelot

  • Gena Baker
  • Grand Chef
  • *****
  • Date Registered: Sep 2010
  • Posts: 10350
 :thumbsup: :great:

:turtle:

Re: Please Help me!! Prob in building
« Reply #4 on: January 05, 2014, 09:12:18 AM »

Xennet

  • Jr. Chef
  • **
  • Date Registered: Jan 2014
  • Posts: 42
Thank you so much. It worked!!!
But after running some portable program's in the WIN81SE PE I get errors like,

Svchost.exe program cannot be opened
Windows installer cannot be accessed

Can you suggest me any solution for this

Re: Please Help me!! Prob in building
« Reply #5 on: January 05, 2014, 12:47:33 PM »

Lancelot

  • Gena Baker
  • Grand Chef
  • *****
  • Date Registered: Sep 2010
  • Posts: 10350
Try updating wow64 plugin from server

click download button at top-right, use Win81 server, update.....

Re: Please Help me!! Prob in building
« Reply #6 on: January 05, 2014, 11:03:10 PM »

Xennet

  • Jr. Chef
  • **
  • Date Registered: Jan 2014
  • Posts: 42
I updated the wow64 script and still it shows multiple errors like I said before while starting apps. What to do?

Re: Please Help me!! Prob in building
« Reply #7 on: January 05, 2014, 11:08:08 PM »

Xennet

  • Jr. Chef
  • **
  • Date Registered: Jan 2014
  • Posts: 42
Some errors related to services pop up like cannot access windows installer service, check whether windows volume shadow service is running, etc.

But when I ran services.msc and checked both windows installer and volume shadow service were up and running....
I stop and restarted the service but in vain....

Re: Please Help me!! Prob in building
« Reply #8 on: January 06, 2014, 05:49:34 AM »

Lancelot

  • Gena Baker
  • Grand Chef
  • *****
  • Date Registered: Sep 2010
  • Posts: 10350
Windows installer is very sensitive feature, I am sure a small thingy missing.....

You can check deeply with
\Apps\System Tools\Debug\"Sysinternals Process Monitor"
maybe you can figure out and support on a fix  :great:

See you
:turtle:

Re: Please Help me!! Prob in building
« Reply #9 on: January 06, 2014, 04:14:22 PM »

Xennet

  • Jr. Chef
  • **
  • Date Registered: Jan 2014
  • Posts: 42
Hai again,

when i tried to build inccluding ie explorer 11 i get the error

 [Failed]  (Explorer.script) FileDelete - Failed to delete [%BaseDir%\Target\Win8.1SE\Program Files (x86)\Internet Explorer\F12.dll]: The operation completed successfully

Log attached

Re: Please Help me!! Prob in building
« Reply #10 on: January 06, 2014, 06:02:31 PM »

Lancelot

  • Gena Baker
  • Grand Chef
  • *****
  • Date Registered: Sep 2010
  • Posts: 10350
At around line 274, add 2 lines:

Code: [Select]
FileDelete,%Target_ProgDir%\%ProgramFolder%\F12.dll
If,ExistFile,%Target_ProgDir%\%ProgramFolder%\%DistLang%\F12.dll.mui,FileDelete,%Target_ProgDir%\%ProgramFolder%\%DistLang%\F12.dll.mui
If,ExistFile,%Target_ProgDir%\%ProgramFolder%\en-US\F12.dll.mui,FileDelete,%Target_ProgDir%\%ProgramFolder%\en-US\F12.dll.mui
FileDelete,%Target_ProgDir%\%ProgramFolder%\F12Resources.dll
If,ExistFile,%Target_ProgDir%\%ProgramFolder%\%DistLang%\F12Resources.dll.mui,FileDelete,%Target_ProgDir%\%ProgramFolder%\%DistLang%\F12Resources.dll.mui
If,ExistFile,%Target_ProgDir%\%ProgramFolder%\en-US\F12Resources.dll.mui,FileDelete,%Target_ProgDir%\%ProgramFolder%\en-US\F12Resources.dll.mui
FileDelete,%Target_ProgDir%\%ProgramFolder%\F12Tools.dll

--->

Code: [Select]
If,ExistFile,%Target_ProgDir%\%ProgramFolder%\F12.dll,Begin
FileDelete,%Target_ProgDir%\%ProgramFolder%\F12.dll
If,ExistFile,%Target_ProgDir%\%ProgramFolder%\%DistLang%\F12.dll.mui,FileDelete,%Target_ProgDir%\%ProgramFolder%\%DistLang%\F12.dll.mui
If,ExistFile,%Target_ProgDir%\%ProgramFolder%\en-US\F12.dll.mui,FileDelete,%Target_ProgDir%\%ProgramFolder%\en-US\F12.dll.mui
FileDelete,%Target_ProgDir%\%ProgramFolder%\F12Resources.dll
If,ExistFile,%Target_ProgDir%\%ProgramFolder%\%DistLang%\F12Resources.dll.mui,FileDelete,%Target_ProgDir%\%ProgramFolder%\%DistLang%\F12Resources.dll.mui
If,ExistFile,%Target_ProgDir%\%ProgramFolder%\en-US\F12Resources.dll.mui,FileDelete,%Target_ProgDir%\%ProgramFolder%\en-US\F12Resources.dll.mui
FileDelete,%Target_ProgDir%\%ProgramFolder%\F12Tools.dll
End


:turtle:

Re: Please Help me!! Prob in building
« Reply #11 on: January 06, 2014, 06:54:25 PM »

Xennet

  • Jr. Chef
  • **
  • Date Registered: Jan 2014
  • Posts: 42
Thanks it worked.

You should probably update those script files on the server for the sheer convenience of others out there

Re: Please Help me!! Prob in building
« Reply #12 on: January 06, 2014, 08:41:35 PM »

Lancelot

  • Gena Baker
  • Grand Chef
  • *****
  • Date Registered: Sep 2010
  • Posts: 10350
Chris would do better coding when he update those plugin files.

Well,
On my part I keep track of fixes ready to him,
better he spend his time with family for a while more  :thumbsup:

:turtle:

Re: Please Help me!! Prob in building
« Reply #13 on: January 08, 2014, 03:52:18 PM »

Xennet

  • Jr. Chef
  • **
  • Date Registered: Jan 2014
  • Posts: 42
The volume shadow copy service is not properly installed in the PE. The screen shot is attached from the running win81se. Do try to correct it as u know the service is used by many programs and even windows itself.

Re: Please Help me!! Prob in building
« Reply #14 on: January 08, 2014, 06:13:48 PM »

Lancelot

  • Gena Baker
  • Grand Chef
  • *****
  • Date Registered: Sep 2010
  • Posts: 10350
First of all, thanks for reporting,
besides here is some info:

Vss is NOT vital for windows
 and is definately NOT required by any application on pe or portable windows,
Problem is,
very little application developers aware PE (offline) usage,
probably because end users do not ask them to add such feature  :wink:
This is the real reason of pain of headache.

ex: DriveImage XML  normally requires vss, but not on PE  :wink:


adding vss feature to pe only made to fool such applications that do really NOT require vss.
In fact, there are better - free alternatives for any such task, but people only lazy and want to use what they have on normal windows instead of using alternative free ones.

Shortly, adding vss feature to any project can delay because of its very low importance level.


+
Best way is, contact & ask such application developer.  :thumbsup:
+
Projects have required debug tools available to you, spend some time, figure out things, share around. Keep in mind, all you get gathered with full hobby soul with lots of individuals putting a drop.
( another way: Google around, find others work where vss run, and figure out how they did them)
+
Wait someone interested in adding vss feature ( maybe better say: wait someone interested in developing current vss plugin further)


one of 3 would happen  :thumbsup:

:turtle:

Re: Please Help me!! Prob in building
« Reply #15 on: January 08, 2014, 06:53:45 PM »

Xennet

  • Jr. Chef
  • **
  • Date Registered: Jan 2014
  • Posts: 42
I just tried out the resources before posting the prob. Here is the link that u can check were people have posted screen shots and even said that CSS actually do work in chris's pe. I think there is perhaps a prob in this win81se.

Edit: Lancelot: removed link
« Last Edit: January 08, 2014, 07:03:01 PM by Lancelot »

Re: Please Help me!! Prob in building
« Reply #16 on: January 08, 2014, 07:08:00 PM »

was_JFX

  • Code Baker
  • Grand Chef
  • *****
  • Date Registered: Dec 2010
  • Posts: 1074
In vss.script patching is now optional?

If,Not,%ProjectName%%BuildType%,Equal,Win8.1SEOS,Run,%ScriptFile%,Patch_Vss

No matter if it's call RAMOS, is actually still a WinPE and so have the MiniNT key,
that cause VSS to refuse work.
« Last Edit: January 08, 2014, 07:08:36 PM by JFX »

Re: Please Help me!! Prob in building
« Reply #17 on: January 08, 2014, 07:21:36 PM »

Xennet

  • Jr. Chef
  • **
  • Date Registered: Jan 2014
  • Posts: 42
Hai Jfx,

Thank you for the reply :thumbsup:

How to apply the optional patch mentioned by you

Re: Please Help me!! Prob in building
« Reply #18 on: January 08, 2014, 07:25:46 PM »

Xennet

  • Jr. Chef
  • **
  • Date Registered: Jan 2014
  • Posts: 42
Will just removing the line from the script do the patch?

Re: Please Help me!! Prob in building
« Reply #19 on: January 08, 2014, 07:47:57 PM »

was_JFX

  • Code Baker
  • Grand Chef
  • *****
  • Date Registered: Dec 2010
  • Posts: 1074
No not remove the line, just the IF condition.
So this is the new line:

Run,%ScriptFile%,Patch_Vss

 

Powered by EzPortal