Topic: Win10XPE Project  (Read 141369 times)

Re: Win10XPE Project
« Reply #120 on: May 11, 2018, 10:38:56 PM »

bob.omb

  • Code Baker
  • Grand Chef
  • *****
  • Location: USA
  • Date Registered: Jul 2017
  • Posts: 1261
Here is a test plugin for Internet Explorer 11 for Win10XPE.

Video playback is not working yet (Maybe some .NET files needed)  Downloading wont work without Admin (Any chance at an Admin/System Dropdown for user in build somewhere with direct login? Maybe NSudo included with Admin?)

Hopefully others are interested enough to help with this one..

* Internet_Explorer_11_TEST_Bob.Omb.7z (61.71 kB - downloaded 77 times.)

« Last Edit: May 11, 2018, 11:09:32 PM by bob.omb »

Re: Win10XPE Project
« Reply #121 on: May 14, 2018, 09:24:39 AM »

fabs

  • Jr. Chef
  • **
  • Location: France
  • Date Registered: May 2018
  • Posts: 12
hmm, I did not really play with WoW64 so far.
Thinking that there were enough 64-bit apps to do without.
I made some additions. Can you try again by replacing WoW64.Script and WoW64_AddFiles.txt by those
Nice one, my program can grab the computer serial number just fine now. That would be great if this WoW64.script and WoW64_AddFiles.txt could become the ones in the Win10WPE downloadable package.

I have a last question: I am making changes to Fab's AutoBackup script to make it compatible with Win10PE_SE and Win10XPE as well.
My plugin has these entries in the [Process] section but the files are not copied to the SysWOW64 folder, except the "authz.dll" but that's because it is listed in the "WoW64_AddFiles.txt" file :
Code: [Select]
If,%SourceArch%,Equal,x64,Begin
  FileCopy,%InstallSRC%\Windows\SysWOW64\authz.dll,%TargetDir%\Windows\SysWOW64
  FileCopy,%InstallSRC%\Windows\SysWOW64\takeown.exe,%TargetDir%\Windows\SysWOW64
  FileCopy,%InstallSRC%\Windows\SysWOW64\icacls.exe,%TargetDir%\Windows\SysWOW64
End
How could I change my script for this without adding an extra files list file? I want to keep this as simple as possible for people who will follow my next tutorial. Of course, if these files could be added to the default package, that's fine for me  :wink:

Thanks for everything you have done so far :thumbsup:

Re: Win10XPE Project
« Reply #122 on: May 14, 2018, 11:47:53 AM »

James

  • Grand Chef
  • *****
  • Location: USA
  • Date Registered: Dec 2017
  • Posts: 2272
Something like this

Code: [Select]

[Process]
ExtractSectionFiles,%ScriptFile%,AddFiles



[AddFiles]
\Windows\Systen32\icacls.exe
\Windows\Systen32\takeown.exe
\Windows\Systen32\authz.dll
//--If MUI's needed then add
\Windows\Systen32\??-??\authz.dll.mui
\Windows\Systen32\??-??\takeown.exe.mui
\Windows\Systen32\??-??\icacls.exe.mui
//--
If,%Architecture%,Equal,x64,Begin
\Windows\SysWOW64\icacls.exe
\Windows\SysWOW64\takeown.exe
\Windows\SysWOW64\authz.dll
//--If MUI's needed then add
\Windows\SysWOW64\??-??\authz.dll.mui
\Windows\SysWOW64\??-??\takeown.exe.mui
\Windows\SysWOW64\??-??\icacls.exe.mui
End
« Last Edit: May 14, 2018, 12:19:46 PM by James »

Re: Win10XPE Project
« Reply #123 on: May 15, 2018, 08:30:59 AM »

fabs

  • Jr. Chef
  • **
  • Location: France
  • Date Registered: May 2018
  • Posts: 12
Something like this

Code: [Select]

[Process]
ExtractSectionFiles,%ScriptFile%,AddFiles



[AddFiles]
\Windows\Systen32\icacls.exe
\Windows\Systen32\takeown.exe
\Windows\Systen32\authz.dll
//--If MUI's needed then add
\Windows\Systen32\??-??\authz.dll.mui
\Windows\Systen32\??-??\takeown.exe.mui
\Windows\Systen32\??-??\icacls.exe.mui
//--
If,%Architecture%,Equal,x64,Begin
\Windows\SysWOW64\icacls.exe
\Windows\SysWOW64\takeown.exe
\Windows\SysWOW64\authz.dll
//--If MUI's needed then add
\Windows\SysWOW64\??-??\authz.dll.mui
\Windows\SysWOW64\??-??\takeown.exe.mui
\Windows\SysWOW64\??-??\icacls.exe.mui
End
Thanks you very much. It worked a treat  :great:

Re: Win10XPE Project
« Reply #124 on: May 15, 2018, 09:47:58 AM »

ChrisR

  • Moderator, XPE Baker
  • Grand Chef
  • *****
  • Date Registered: Mar 2011
  • Posts: 3494
It should work but ExtractSectionFiles does not really work this way.
To understand the principle, ExtractSectionFiles macro extracts the section as it is in \Temp\ExtractSectionFiles.txt
Then Win10 files are extracted by using ExtractSectionFiles.txt as wimlib ListFiles, with:
wimlib-imagex.exe extract "xxx\sources\install.wim" 6 @"xxx\Temp\ExtractSectionFiles.txt" --dest-dir="xxx\Target" --no-acls --nullglob"

Therefore, do not put command or macro in the section to extract, only folder or files(+mui) or comments with ";" at the beginning of a line.

Exemple for a 32-bit Apps:
Code: [Select]
[Process]
Echo,"Processing %ScriptTitle%..."
If,%Architecture%%WoW64Support%,Equal,x64False,Exit,"You need to enable WoW64 basic to run 32-bit apps in a 64-bit contruction"

If,%Architecture%,Equal,x86,ExtractSectionFiles,%ScriptFile%,AddFiles
If,%Architecture%,Equal,x64,ExtractSectionFiles,%ScriptFile%,AddFiles6432

[AddFiles]
\Windows\Systen32\icacls.exe
\Windows\Systen32\takeown.exe
\Windows\Systen32\authz.dll
; Do not forget mui files
\Windows\Systen32\??-??\authz.dll.mui
\Windows\Systen32\??-??\takeown.exe.mui
\Windows\Systen32\??-??\icacls.exe.mui

[AddFiles6432]
\Windows\SysWOW64\icacls.exe
\Windows\SysWOW64\takeown.exe
\Windows\SysWOW64\authz.dll
; Do not forget mui files
\Windows\SysWOW64\??-??\authz.dll.mui
\Windows\SysWOW64\??-??\takeown.exe.mui
\Windows\SysWOW64\??-??\icacls.exe.mui


Otherwise Fabs, I would add the WoW64 package posted above in the next release.
WoW64 wbem could be an option but for now I will add it as it is. It's ~16.5 Mb unpacked and ~4 Mb in boot.wim.

Re: Win10XPE Project
« Reply #125 on: May 15, 2018, 10:27:14 AM »

ChrisR

  • Moderator, XPE Baker
  • Grand Chef
  • *****
  • Date Registered: Mar 2011
  • Posts: 3494
In the same way and for example, to add dependencies according to a new Windows10 release.
It can be done with something like:

Code: [Select]
ExtractListFiles,%ScriptDir%\Explorer_AddFiles.txt
If,%SourceBuild%,Bigger,18000,ExtractSectionFiles,%ScriptFile%,18000Dependencies

[18000Dependencies]
\Windows\Systen32\xxxxx.dll
\Windows\Systen32\??-??\xxxxx.dll.mui

or with:

Code: [Select]
ExtractListFiles,%ScriptDir%\Explorer_AddFiles.txt
If,%SourceBuild%,Bigger,18000,ExtractListFiles,%ScriptDir%\Explorer_AddFiles18000.txt

With a new file Explorer_AddFiles18000.txt in the Script directory
Code: [Select]
\Windows\Systen32\xxxxx.dll
\Windows\Systen32\??-??\xxxxx.dll.mui
« Last Edit: May 15, 2018, 11:44:24 AM by ChrisR »

Re: Win10XPE Project
« Reply #126 on: May 15, 2018, 12:25:12 PM »

James

  • Grand Chef
  • *****
  • Location: USA
  • Date Registered: Dec 2017
  • Posts: 2272
@ChrisR

Reading your 32-Bit example, it would seem to me that if app was pure x64 without WOW support the script would exit...

So would it not be better with something like this??

Code: [Select]
Echo,"Processing %ScriptTitle%..."
If,%Architecture%%WoW64Support%,Equal,x64True,ExtractSectionFiles,%ScriptFile%,AddFiles6432
« Last Edit: May 15, 2018, 12:41:29 PM by James »

Re: Win10XPE Project
« Reply #127 on: May 15, 2018, 01:14:43 PM »

ChrisR

  • Moderator, XPE Baker
  • Grand Chef
  • *****
  • Date Registered: Mar 2011
  • Posts: 3494
Reading your 32-Bit example, it would seem to me that if app was pure x64 without WOW support the script would exit...
Yes, It'll Exit and that is what is wanted for a 32-bit program in a pure x64 WinPE.
The 32-bit program can not works in x64 WinPE without WOW support.

Code: [Select]
If,%Architecture%%WoW64Support%,Equal,x64False,Exit,"You need to enable WoW64 basic to run 32-bit apps in a 64-bit contruction"

It goes without exiting for a x86 WinPE (%Architecture%=x86) or for a x64 WinPE with WoW64 enabled (%Architecture%%WoW64Support%=x64True)
This line, and the example above, is only for a plugin with a 32-bit Apps only as for Fabs software.


Re: Win10XPE Project
« Reply #128 on: May 15, 2018, 04:11:38 PM »

mortblanche

  • Jr. Chef
  • **
  • Date Registered: Oct 2012
  • Posts: 42
Hello,

I am trying to create a script for Acronis Disk Director, I am ready but the program starts with an error and I dry?

ila_rendered

herewith the contents of the script

Code: [Select]
[Main]
Title=Acronis Disk Director 12
Description=Un outil puissant et facile à utiliser pour gérer les disques et les volumes. Grâce à de nombreuses fonctionnalités, vous pourrez organiser vos disques durs et configurer leurs volumes pour augmenter leurs performances, tout en maintenant la protection de vos données.
Author=Mortblanche
Date=2018.05.15
Version=001
Selected=True
Mandatory=None
NoWarning=True
Level=5
Download_Level=2
Credits=
Contact=

[Interface]
pBevel1=pBevel1,1,12,4,6,133,44
pCheckBox1="Desktop shortcut",1,3,10,10,122,18,True
pCheckBox2="Start Menu shortcut",1,3,10,28,122,18,True
pWebLabel1=HomePage,1,10,148,36,51,18,https://www.acronis.com/fr-fr/personal/disk-manager/
pImage1=prog.jpg,1,5,0,60,640,341,

[Process]
Echo,"Processing %ScriptTitle%..."
If,Not,ExistFile,%ScriptDir%\ADD12.7z,EchoExtended,"Error: The file ADD12.7z does not exist.",Warn,,Message,5,Exit
ShellExecute,Hide,%GTools%\7z.exe,"x #$q%ScriptDir%\ADD12.7z#$q -y -o#$q%GTarget%#$q"
ExtractSectionFiles,%ScriptFile%,AddFiles
Run,%ScriptFile%,Add_Registry
Run,%ScriptFile%,Add_Shortcuts

[Add_Shortcuts]
If,%pCheckBox1%,Equal,True,TXTReplace,%GTarget_Sys%\pecmd.ini,"_SUB Shortcuts","_SUB Shortcuts#$xLINK #$pDesktop#$p\Acronis Disk Director 12,#$pProgramFiles#$p\DiskDirector\DiskDirector.exe"
If,%pCheckBox2%,Equal,True,TXTReplace,%GTarget_Sys%\pecmd.ini,"_SUB Shortcuts","_SUB Shortcuts#$xLINK #$pPrograms#$p\HD Tasks\Partition\Acronis Disk Director 12,#$pProgramFiles#$p\DiskDirector\DiskDirector.exe"

[Add_Registry]
RegHiveLoad,Tmp_Software,%RegSoftware%
RegWrite,HKLM,0x1,Tmp_Software\Acronis\DiskDirector\CommonComponents,,
RegWrite,HKLM,0x1,Tmp_Software\Acronis\DiskDirector\CommonComponents,resource.dll,"X:\Program Files\DiskDirector\resource.dll"
RegWrite,HKLM,0x1,Tmp_Software\Acronis\DiskDirector\CommonComponents,libcrypto10.dll,"X:\Program Files\DiskDirector\libcrypto10.dll"
RegWrite,HKLM,0x1,Tmp_Software\Acronis\DiskDirector\CommonComponents,thread_pool.dll,"X:\Program Files\DiskDirector\thread_pool.dll"
RegWrite,HKLM,0x1,Tmp_Software\Acronis\DiskDirector\CommonComponents,gc.dll,"X:\Program Files\DiskDirector\gc.dll"
RegWrite,HKLM,0x1,Tmp_Software\Acronis\DiskDirector\CommonComponents,libssl10.dll,"X:\Program Files\DiskDirector\libssl10.dll"
RegWrite,HKLM,0x1,Tmp_Software\Acronis\DiskDirector\CommonComponents,rpc_client.dll,"X:\Program Files\DiskDirector\rpc_client.dll"
RegWrite,HKLM,0x1,Tmp_Software\Acronis\DiskDirector\CommonComponents,fnls.dll,"X:\Program Files\DiskDirector\fnls.dll"
RegWrite,HKLM,0x1,Tmp_Software\Acronis\DiskDirector\CommonComponents,ftrace.dll,"X:\Program Files\DiskDirector\ftrace.dll"
RegWrite,HKLM,0x1,Tmp_Software\Acronis\DiskDirector\CommonComponents,core_workers_shared_context.dll,"X:\Program Files\DiskDirector\core_workers_shared_context.dll"
RegWrite,HKLM,0x1,Tmp_Software\Acronis\DiskDirector\CommonComponents,events_trace.dll,"X:\Program Files\DiskDirector\events_trace.dll"
RegWrite,HKLM,0x4,Tmp_Software\Acronis\DiskDirector\Settings,Standalone,1
RegWrite,HKLM,0x1,Tmp_Software\Acronis\DiskDirector\Settings,WorkingDir,"X:\Program Files\DiskDirector"
RegWrite,HKLM,0x1,Tmp_Software\Acronis\DiskDirector\Settings,SystemInfoPath,"X:\Program Files\DiskDirector\AdvReport\systeminfo.exe"
RegHiveUnLoad,Tmp_Software
//-
RegHiveLoad,Tmp_System,%RegSystem%
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Services\fltsrv,DisplayName,"Acronis Storage Filter Management"
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Services\fltsrv,Group,"PnP Filter"
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Services\fltsrv,ErrorControl,1
RegWrite,HKLM,0x2,Tmp_System\ControlSet001\Services\fltsrv,ImagePath,system32\Drivers\fltsrv.sys
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Services\fltsrv,Start,0
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Services\fltsrv,Tag,8
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Services\fltsrv,Type,1
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Services\fltsrv,WOW64,1
//-
RegWrite,HKLM,0x1,Tmp_System\ControlSet001\Services\snapman,DisplayName,"Acronis Snapshot Manager"
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Services\snapman,ErrorControl,1
RegWrite,HKLM,0x2,Tmp_System\ControlSet001\Services\snapman,ImagePath,System32\Drivers\snapman.sys
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Services\snapman,Start,0
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Services\snapman,Type,1
RegWrite,HKLM,0x4,Tmp_System\ControlSet001\Services\snapman,WOW64,1
RegHiveUnLoad,Tmp_System

[AddFiles]

Can someone help me?

Regards,

Mortblanche
« Last Edit: May 16, 2018, 05:24:04 PM by ChrisR, Reason: Image in attachment and plugin in codebox »

Re: Win10XPE Project
« Reply #129 on: May 16, 2018, 04:17:19 PM »

ChrisR

  • Moderator, XPE Baker
  • Grand Chef
  • *****
  • Date Registered: Mar 2011
  • Posts: 3494
@mortblanche
I allowed myself to put your plugin in codebox to make it more readable.
And not to lose your image in future, when you post you can add your image in Additional Options > attach > Inline expandable thumbnail

For Acronis Disk Director, in WinPESE there are 2 existing plugins to download that you can look at. They are in \Downloads\AppYGS\HD Tasks tree

« Last Edit: May 16, 2018, 05:21:57 PM by ChrisR »

Re: Win10XPE Project
« Reply #130 on: May 16, 2018, 04:31:38 PM »

bob.omb

  • Code Baker
  • Grand Chef
  • *****
  • Location: USA
  • Date Registered: Jul 2017
  • Posts: 1261
@Mortblanche

   Try adding the below text to your [AddFiles] section to start.  But there are several other files that need to be moved into place so you will need to look at the plugin as ChrisR suggested.  You can ignore the Require_FileQ lines in the plugin, the below text is the XPE replacement for that.

Code: [Select]
\Windows\System32\activeds.dll
\Windows\System32\ADSLDPC.dll
\Windows\System32\credui.dll
\Windows\System32\fltlib.dll
\Windows\System32\iernonce.dll
\Windows\System32\shfolder.dll
\Windows\System32\msimg32.dll
\Windows\System32\ntmarta.dll
\Windows\System32\??-??\activeds.dll.mui
\Windows\System32\??-??\ADSLDPC.dll.mui
\Windows\System32\??-??\fltlib.dll.mui
\Windows\System32\??-??\iernonce.dll.mui
\Windows\System32\??-??\ntmarta.dll.mui
\Windows\System32\Drivers\fltmgr.sys

You will also need to copy, from Acronis Installer or SE plugin the below files: (Also look at "Attachements" in SE plugin source for reference)

[FLTSRV.SYS, RAMDRV.SYS, SNAPMAN.SYS] ===> "%GTarget_Sys%\Drivers" folder

« Last Edit: May 17, 2018, 12:25:26 AM by bob.omb »

Re: Win10XPE Project
« Reply #131 on: May 16, 2018, 05:05:45 PM »

mortblanche

  • Jr. Chef
  • **
  • Date Registered: Oct 2012
  • Posts: 42
Hi ChrisR, bob.om,

Thank you for your information and help.

I test it right away ....

Regards,

Mortblanche

Re: Win10XPE Project
« Reply #132 on: May 16, 2018, 05:20:56 PM »

bob.omb

  • Code Baker
  • Grand Chef
  • *****
  • Location: USA
  • Date Registered: Jul 2017
  • Posts: 1261
Updated above post, spelling error (Systen32 and missing .mui for fltlib) And added a few more dependencies.. Good Luck  :thumbsup:

This is for *Without SCSi Support" which is the default setting of the plugin..

« Last Edit: May 17, 2018, 12:27:26 AM by bob.omb »

Re: Win10XPE Project
« Reply #133 on: May 16, 2018, 11:53:57 PM »

ChrisR

  • Moderator, XPE Baker
  • Grand Chef
  • *****
  • Date Registered: Mar 2011
  • Posts: 3494
Win10XPE_2018-05-17 update

New Macros added Use the magic wand to learn more about syntax or examples
   . AddShortcut: Add a Desktop or StartMenu Shortcut
   . AddPin: Pin program to TaskBar or StartMenu
   . Associate: Associate a program with a file extension
   . RunFromRAM: Run the program from the RAM cache, ie: from Program Files folder in boot.wim file
       By default programs "Run from USB". To save time and space, they are directly copied to the ISO\programs folder, without going through the Target folder
   . Start: Launch a program or file without waiting, Open by default

WoW64 basic: Added WoW64 WMI support
WizTree: (3.12.0 x86/x64) WizTree finds the files and folders using the most disk space on your hard drive
Aomei Backupper Standard (4.1.0 x64) and Aomei Partition Assistant (7.0 x64): Plugin rewritten with Run from RAM/Run from USB. Only 64-bit version developed
Macrium Reflect Free: (7.1.3196 x86/x64) Plugin rewritten with Run from RAM/Run from USB and with x86 version included in addition to x64

:cheers:
« Last Edit: May 16, 2018, 11:59:15 PM by ChrisR »

Re: Win10XPE Project
« Reply #134 on: May 17, 2018, 08:58:47 AM »

mortblanche

  • Jr. Chef
  • **
  • Date Registered: Oct 2012
  • Posts: 42

Hi ChrisR, bob.omb,

Thank you for your help to you 2.

it works finally.

see the attached screenshot



Regards,

Mortblanche

Re: Win10XPE Project
« Reply #135 on: May 17, 2018, 09:39:19 AM »

James

  • Grand Chef
  • *****
  • Location: USA
  • Date Registered: Dec 2017
  • Posts: 2272
@Mortblanche
It is always good to Share...

@ChrisR
Please Add > innounp.exe < To The Projects Tools..
« Last Edit: May 18, 2018, 12:14:16 PM by James »

Re: Win10XPE Project
« Reply #136 on: May 17, 2018, 10:50:34 AM »

ChrisR

  • Moderator, XPE Baker
  • Grand Chef
  • *****
  • Date Registered: Mar 2011
  • Posts: 3494
I just added innounp 0.46 in tools folder, silently in the package before leaving few days.

No time to test the Creator now but thanks for all your work on it  :great:
I just noted, that the path to the plugins created would probably be better with:
Code: [Select]
%TarMy%=%BaseDir%\Projects\MyPlugins\Apps\XPE Plugin Creator

Thanks to the tester  :thumbsup:

Re: Win10XPE Project
« Reply #137 on: May 17, 2018, 10:56:15 AM »

teik

  • Chef
  • ***
  • Date Registered: Nov 2016
  • Posts: 250
Hello

Thank you very much @ChrisR for incorporating the possibility of adding the tools to the usb. You are very fast. Achieve the lowest possible weight of image and that everything else is outside the image -wim.
On the other hand the thanks tabién @James for making possible between the two the creation of new script more easily for the basic user. It is magnificent.

     -Respect of this script: It is possible to add a box to make PIN to Taskbar and also add the start in account back? What is called startup? From what I see is added to the macro, it would just be to add it to the creator plugin, right?


- As for the StartIsBack. I leave here some commands in case it were possible to add them for the configuration. It is the most important section and would like to be able to touch it up in a specific way. The only thing I have not found is to make the menu bigger. In Start10 if there was one.



Quote
RegWrite,HKLM,0x4,Tmp_Default\Software\StartIsBack,Start_LargeMFUIcons,1   BIG Icons

Show 1   Hide   0 

RegWrite,HKLM,0x4,Tmp_Default\Software\StartIsBack,Start_ShowUser,0
RegWrite,HKLM,0x4,Tmp_Default\Software\StartIsBack,Start_ShowMyDocs,0
RegWrite,HKLM,0x4,Tmp_Default\Software\StartIsBack,Start_ShowMyPics,0
RegWrite,HKLM,0x4,Tmp_Default\Software\StartIsBack,Start_ShowMyMusic,0
RegWrite,HKLM,0x4,Tmp_Default\Software\StartIsBack,Start_ShowVideos,0
RegWrite,HKLM,0x4,Tmp_Default\Software\StartIsBack,Start_ShowDownloads,0
RegWrite,HKLM,0x4,Tmp_Default\Software\StartIsBack,Start_ShowSkyDrive,0
RegWrite,HKLM,0x4,Tmp_Default\Software\StartIsBack,Start_ShowMyGames,0
RegWrite,HKLM,0x4,Tmp_Default\Software\StartIsBack,StartMenuFavorites,0
RegWrite,HKLM,0x4,Tmp_Default\Software\StartIsBack,Start_ShowRecentDocs,0
RegWrite,HKLM,0x4,Tmp_Default\Software\StartIsBack,Start_ShowHomegroup,0
RegWrite,HKLM,0x4,Tmp_Default\Software\StartIsBack,Start_ShowNetPlaces,0
RegWrite,HKLM,0x4,Tmp_Default\Software\StartIsBack,Start_ShowNetConn,0
RegWrite,HKLM,0x4,Tmp_Default\Software\StartIsBack,Start_ShowMyComputer,1
RegWrite,HKLM,0x4,Tmp_Default\Software\StartIsBack,Start_ShowControlPanel,1
RegWrite,HKLM,0x4,Tmp_Default\Software\StartIsBack,Start_ShowPCSettings,0
RegWrite,HKLM,0x4,Tmp_Default\Software\StartIsBack,Start_AdminToolsRoot,0
RegWrite,HKLM,0x4,Tmp_Default\Software\StartIsBack,Start_ShowPrinters,0
RegWrite,HKLM,0x4,Tmp_Default\Software\StartIsBack,Start_ShowSetProgramAccessAndDefaults,0
RegWrite,HKLM,0x4,Tmp_Default\Software\StartIsBack,Start_ShowCommandPrompt,0
RegWrite,HKLM,0x4,Tmp_Default\Software\StartIsBack,Start_ShowRun,1


Style Menu "Windows 10"

RegWrite,HKLM,0x1,Tmp_Default\Software\StartIsBack,OrbBitmap,"Windows 10"
RegWrite,HKLM,0x1,Tmp_Default\Software\StartIsBack,AlterStyle,"X:\Program Files\StartIsBack\Styles\Plain10.msstyles"
RegWrite,HKLM,0x1,Tmp_Default\Software\StartIsBack,TaskbarStyle,"X:\Program Files\StartIsBack\Styles\Windows 10.msstyles"

Menu color

RegWrite,HKLM,0x4,Tmp_Default\Software\StartIsBack,StartMenuColor,6905618   

Menu transparent
 
RegWrite,HKLM,0x4,Tmp_Default\Software\StartIsBack,StartMenuAlpha,232               0 Total transparent             255 Solid color

Taskbar transparent

RegWrite,HKLM,0x4,Tmp_Default\Software\StartIsBack,TaskbarAlpha,0                 0 Total transparent             255 Solid color




Finally it would be good to add RegCPE to be able to configure the registers correctly.

Thank you very much for your progress and I hope you do not mind because I wrote this. He is doing a very good job and very fast.  :thumbsup:

Regards.
« Last Edit: May 17, 2018, 10:56:43 AM by teik »

Re: Win10XPE Project
« Reply #138 on: May 17, 2018, 11:51:48 AM »

mortblanche

  • Jr. Chef
  • **
  • Date Registered: Oct 2012
  • Posts: 42
Hi James,

where can I upload scripts?

Regards,

Mortblanche

Re: Win10XPE Project
« Reply #139 on: May 17, 2018, 12:53:58 PM »

James

  • Grand Chef
  • *****
  • Location: USA
  • Date Registered: Dec 2017
  • Posts: 2272
I just added innounp 0.46 in tools folder, silently in the package before leaving few days.

No time to test the Creator now but thanks for all your work on it  :great:
I just noted, that the path to the plugins created would probably be better with:
Code: [Select]
%TarMy%=%BaseDir%\Projects\MyPlugins\Apps\XPE Plugin Creator

Thanks to the tester  :thumbsup:

Actually you mentioned that before and I Thought I had it as that, but I just notice the difference, I will make the quick change... Done...
« Last Edit: May 17, 2018, 03:03:56 PM by James »

 

Powered by EzPortal