[ARCHIVED] Windows Editions Reconstruction Project

Discussion in 'Windows 10' started by whatever127, Jan 10, 2020.

Thread Status:
Not open for further replies.
  1. Ace2

    Ace2 MDL Expert

    Oct 10, 2014
    1,868
    1,534
    60
    #12701 Ace2, Aug 25, 2023
    Last edited: Aug 25, 2023
    Reserved: Shell-WinXMenu-Enabled
     
  2. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,755
    14,462
    340
    #12702 xinso, Aug 25, 2023
    Last edited: Aug 25, 2023
    Q: From UUP dump, how to download Fod language packs for all 38 languages at a time?

    I have the Russian script which is able to. But it won't work on my OS.

    And I don't know how to use MDL one.
     
  3. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,755
    14,462
    340
    #12703 xinso, Aug 25, 2023
    Last edited: Aug 25, 2023
    Whenever I received new skill, I make it in script at once, lest forget.

    e.g. CU Expand

    [22621 psf & cab]
    0-info.txt
    Code:
    lcu=Windows11.0-KB5029339-x64
    
    Expand_RunAsAdmin.cmd
    Code:
    @echo off
    pushd "%~dp0"
    
    copy /y bin\PSFExtractor-amd64.exe .\ 1>nul 2>nul
    
    for /f "tokens=2 delims==" %%x in ('findstr /i /C:"lcu" 0-info.txt') do (set lcu=%%x)
    
    echo.
    echo Expand %lcu%
    echo.
    PSFExtractor-amd64.exe %lcu%.cab
    
    if exist %lcu%\*.psf.cix.xml del /f /q %lcu%\*.psf.cix.xml
    if exist %lcu%\historycix.cab del /f /q %lcu%\historycix.cab
    
    :END
    if exist PSFExtractor-amd64.exe del /f /q PSFExtractor-amd64.exe
    echo.
    echo %lcu%.cab has been successfully expanded.
    echo.
    pause
    exit
    
    [Next 11]

    two, one for SSU, one for CU.

    [SSU-Expand]
    It needs dpx.dll and expand.exe and SSU.cab in the same folder of the script.

    Run-Expand-SSU-as-Admin.cmd
    Code:
    @echo off
    pushd "%~dp0"
    
    set SSU=SSU-25931.1010-x64
    
    if exist %SSU% (rd /s /q %SSU%&md %SSU%) else (md %SSU%)
    
    EXPAND %SSU%.cab -F:* %SSU%
    
    :END
    echo.
    echo %SSU%.cab has been successfully expanded.
    echo.
    pause
    exit
    
    [CU psf & wim expand]
    It needs these files in the same folder of the script.
    express.psf.cix.xml
    msdelta.dll
    Windows11.0-KB5029251-x64.psf
    Windows11.0-KB5029251-x64.wim
    psfextractor.exe

    Run-Expand-PSF-as-Admin.cmd
    Code:
    @echo off
    pushd "%~dp0"
    
    set PSF=Windows11.0-KB5029251-x64
    
    if exist %PSF% (rd /s /q %PSF%&md %PSF%) else (md %PSF%)
    
    echo.
    PSFExtractor-amd64.exe -v2 %PSF%.psf express.psf.cix.xml %PSF%
    echo.
    wimlib-imagex extract %PSF%.wim 1 \ --dest-dir=%PSF% --no-acls --no-attributes
    
    :END
    echo.
    echo %PSF% CU has been successfully expanded.
    echo.
    pause
    exit
    

    [Credits]
    Abbodi1406
    gailium119
    hcvn
     
  4. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,755
    14,462
    340
    #12704 xinso, Aug 25, 2023
    Last edited: Aug 25, 2023
    When official comes, these Reconstruction scripts of mine will be converted to Construction scripts.

    Construction: 10 GB for all available editions of Client and Server
    Reconstruction: 30 GB for single edition

    PS:
    NOT any install.wim is applicable to other edition Reconstruction.

    e.g.
    [For Hyper-V 17134.1 and 17763.1]
    This sub-package must be removed ahead of all other primary packages:
    HyperV-Guest-Networking-SrIov-onecore-Package~31bf3856ad364e35~amd64~~10.0.17763.1

    Ah, lately, zhanglin found this Containers-Dynamic-Image-FoD-Package which must be removed ahead of Professional:
    Code:
            <package action="remove">
                <assemblyIdentity name="Containers-Dynamic-Image-FoD-Package" version="#LVER#" processorArchitecture="#ARCH#" publicKeyToken="31bf3856ad364e35" language="neutral" />
            </package>
            <package action="remove">
                <assemblyIdentity name="Microsoft-Windows-#SOURCE#Edition" version="#LVER#" processorArchitecture="#ARCH#" publicKeyToken="31bf3856ad364e35" language="neutral" />
            </package>
    
     
  5. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,755
    14,462
    340
  6. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,755
    14,462
    340
  7. SunLion

    SunLion MDL Addicted

    May 11, 2011
    714
    1,873
    30
    #12707 SunLion, Aug 25, 2023
    Last edited: Aug 25, 2023
    Deleted.
    I found the answer by gailium119!!!
     
  8. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,755
    14,462
    340
    #12709 xinso, Aug 26, 2023
    Last edited: Aug 26, 2023
    gailium119 is the right person for you.

    Why?
    Because gailium119 is able to repack 25398.1 which is non-existent. Now that 25398.1 is possible, why not 22621?

    Another fact about gailium119:
    20348.1 Client with updates

    Obviously, gailium119 is able to repack whatever is possible.

    The one who makes car matters, not the one who drives.
    The one who repacks package matters, not the one who uses.
    i.e.
    gailium119 is the maker; xinso is just a user like you.
     
  9. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,755
    14,462
    340
  10. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,755
    14,462
    340
    #12711 xinso, Aug 26, 2023
    Last edited: Aug 26, 2023
    Win32Calc, different between 10 and 11, for different shortcut link at Start menu.
    10, C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Accessories
    11, All Apps

    Different.

    And, amd64 for example,
    10, one amd64 package
    11, amd64 and WOW64

    Different.
     
  11. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,755
    14,462
    340
    #12712 xinso, Aug 26, 2023
    Last edited: Aug 26, 2023
    Test Reconstruct 22631.2262 Windows 11 Enterprise G (without Store) amd64 zh-CN (for abnormal update of windows security platform antimalware platform)
    Code:
    ------------------------------------------------------------
    Prepare Source image
    ------------------------------------------------------------
    
    ------------------------------------------------------------
    Expand Cumulative update
    ------------------------------------------------------------
    
    ========================================================================================================
    Reconstruct 22631.2262 Windows 11 Enterprise G (without Store) amd64 zh-CN
    ========================================================================================================
    
    ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
    Mount Professional image
    ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    ------------------------------------------------------------
    Remove System Notepad
    ------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image Version: 10.0.22621.1
    
    [==========================100.0%==========================]
    The operation completed successfully.
    
    ------------------------------------------------------------
    Remove Store
    ------------------------------------------------------------
    
    Clipchamp.Clipchamp_2.2.8.0_neutral_~_yxz26nhyzhsrt
    Microsoft.549981C3F5F10_2022.507.447.0_neutral_~_8wekyb3d8bbwe
    Microsoft.BingNews_2022.507.446.0_neutral_~_8wekyb3d8bbwe
    Microsoft.BingWeather_2022.507.447.0_neutral_~_8wekyb3d8bbwe
    Microsoft.DesktopAppInstaller_2022.507.447.0_neutral_~_8wekyb3d8bbwe
    Microsoft.GamingApp_2022.507.447.0_neutral_~_8wekyb3d8bbwe
    Microsoft.GetHelp_2022.507.447.0_neutral_~_8wekyb3d8bbwe
    Microsoft.Getstarted_2022.507.447.0_neutral_~_8wekyb3d8bbwe
    Microsoft.HEIFImageExtension_1.0.43012.0_x64__8wekyb3d8bbwe
    Microsoft.HEVCVideoExtension_1.0.50361.0_x64__8wekyb3d8bbwe
    Microsoft.MicrosoftOfficeHub_2022.507.447.0_neutral_~_8wekyb3d8bbwe
    Microsoft.MicrosoftSolitaireCollection_2022.507.447.0_neutral_~_8wekyb3d8bbwe
    Microsoft.MicrosoftStickyNotes_2022.507.446.0_neutral_~_8wekyb3d8bbwe
    Microsoft.NET.Native.Framework.1.3_1.3.24211.0_x64__8wekyb3d8bbwe
    Microsoft.NET.Native.Framework.1.7_1.7.27413.0_x64__8wekyb3d8bbwe
    Microsoft.NET.Native.Framework.2.2_2.2.29512.0_x64__8wekyb3d8bbwe
    Microsoft.NET.Native.Runtime.1.4_1.4.24201.0_x64__8wekyb3d8bbwe
    Microsoft.NET.Native.Runtime.1.7_1.7.25531.0_x64__8wekyb3d8bbwe
    Microsoft.NET.Native.Runtime.2.2_2.2.28604.0_x64__8wekyb3d8bbwe
    Microsoft.Paint_2022.507.446.0_neutral_~_8wekyb3d8bbwe
    Microsoft.People_2022.507.446.0_neutral_~_8wekyb3d8bbwe
    Microsoft.PowerAutomateDesktop_2022.507.446.0_neutral_~_8wekyb3d8bbwe
    Microsoft.RawImageExtension_2022.507.446.0_neutral_~_8wekyb3d8bbwe
    Microsoft.ScreenSketch_2022.507.447.0_neutral_~_8wekyb3d8bbwe
    Microsoft.StorePurchaseApp_2022.507.447.0_neutral_~_8wekyb3d8bbwe
    Microsoft.Todos_2022.507.447.0_neutral_~_8wekyb3d8bbwe
    Microsoft.UI.Xaml.2.1_2.11906.6001.0_x64__8wekyb3d8bbwe
    Microsoft.UI.Xaml.2.3_2.32002.13001.0_x64__8wekyb3d8bbwe
    Microsoft.UI.Xaml.2.4_2.42007.9001.0_x64__8wekyb3d8bbwe
    Microsoft.UI.Xaml.2.7_7.2203.17001.0_x64__8wekyb3d8bbwe
    Microsoft.VP9VideoExtensions_1.0.50901.0_x64__8wekyb3d8bbwe
    Microsoft.WebMediaExtensions_2022.507.446.0_neutral_~_8wekyb3d8bbwe
    Microsoft.WebpImageExtension_1.0.42351.0_x64__8wekyb3d8bbwe
    Microsoft.Windows.Photos_2022.507.447.0_neutral_~_8wekyb3d8bbwe
    Microsoft.WindowsAlarms_2022.507.446.0_neutral_~_8wekyb3d8bbwe
    Microsoft.WindowsCalculator_2022.507.446.0_neutral_~_8wekyb3d8bbwe
    Microsoft.WindowsCamera_2022.507.447.0_neutral_~_8wekyb3d8bbwe
    microsoft.windowscommunicationsapps_2022.507.447.0_neutral_~_8wekyb3d8bbwe
    Microsoft.WindowsFeedbackHub_2022.507.447.0_neutral_~_8wekyb3d8bbwe
    Microsoft.WindowsMaps_2022.507.447.0_neutral_~_8wekyb3d8bbwe
    Microsoft.WindowsNotepad_2022.507.446.0_neutral_~_8wekyb3d8bbwe
    Microsoft.WindowsSoundRecorder_2022.507.447.0_neutral_~_8wekyb3d8bbwe
    Microsoft.WindowsStore_2022.507.446.0_neutral_~_8wekyb3d8bbwe
    Microsoft.WindowsTerminal_2022.507.446.0_neutral_~_8wekyb3d8bbwe
    Microsoft.Xbox.TCUI_2022.507.446.0_neutral_~_8wekyb3d8bbwe
    Microsoft.XboxGameOverlay_2022.507.446.0_neutral_~_8wekyb3d8bbwe
    Microsoft.XboxGamingOverlay_2022.507.447.0_neutral_~_8wekyb3d8bbwe
    Microsoft.XboxIdentityProvider_2022.507.447.0_neutral_~_8wekyb3d8bbwe
    Microsoft.XboxSpeechToTextOverlay_2022.507.446.0_neutral_~_8wekyb3d8bbwe
    Microsoft.YourPhone_2022.507.447.0_neutral_~_8wekyb3d8bbwe
    Microsoft.ZuneMusic_2022.507.447.0_neutral_~_8wekyb3d8bbwe
    Microsoft.ZuneVideo_2022.507.446.0_neutral_~_8wekyb3d8bbwe
    MicrosoftCorporationII.MicrosoftFamily_2022.507.447.0_neutral_~_8wekyb3d8bbwe
    MicrosoftCorporationII.QuickAssist_2022.507.446.0_neutral_~_8wekyb3d8bbwe
    MicrosoftWindows.Client.WebExperience_2022.507.446.0_neutral_~_cw5n1h2txyewy
    
    ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
    Convert Professional to EnterpriseG
    ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image Version: 10.0.22621.1
    
    Removing package Microsoft-Windows-ProfessionalEdition~31bf3856ad364e35~amd64~~10.0.22621.1
    Removing package Microsoft-Windows-ProfessionalEdition~31bf3856ad364e35~amd64~~10.0.22621.1
    [==========================100.0%==========================]
    
    The operation completed successfully.
    
    ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
    Add zh-CN Client language
    ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image Version: 10.0.22621.1
    
    Processing 1 of 1 - Adding package Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~amd64~zh-CN~10.0.22621.1
    [==========================100.0%==========================]
    The operation completed successfully.
    
    ------------------------------------------------------------
    Set EnterpriseG key
    ------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image Version: 10.0.22621.1
    
    Starting to install product key...
    Finished installing product key.
    
    The operation completed successfully.
    
    ============================================================
    Current Edition : EnterpriseG  (Volume:GVLK)
    ============================================================
    
    ------------------------------------------------------------
    Add FoD
    ------------------------------------------------------------
    
    Microsoft-Windows-MSPaint-FoD-Package-wow64.esd
    Microsoft-Windows-MSPaint-FoD-Package.esd
    Microsoft-Windows-Notepad-FoD-Package-wow64.esd
    Microsoft-Windows-Notepad-FoD-Package.esd
    Microsoft-Windows-SnippingTool-FoD-Package.esd
    
    ------------------------------------------------------------
    Add zh-CN FoD language
    ------------------------------------------------------------
    
    Microsoft-Windows-MSPaint-FoD-Package~31bf3856ad364e35~amd64~zh-CN~.esd
    Microsoft-Windows-MSPaint-FoD-Package~31bf3856ad364e35~wow64~zh-CN~.esd
    Microsoft-Windows-Notepad-FoD-Package~31bf3856ad364e35~amd64~zh-CN~.esd
    Microsoft-Windows-Notepad-FoD-Package~31bf3856ad364e35~wow64~zh-CN~.esd
    Microsoft-Windows-SnippingTool-FoD-Package~31bf3856ad364e35~amd64~zh-CN~.esd
    
    ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
    Mount Winre image
    ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    ------------------------------------------------------------
    Add Servicing Stack update to Winre image
    ------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image Version: 10.0.22621.1
    
    Processing 1 of 1 - Adding package Package_for_ServicingStack_2262~31bf3856ad364e35~amd64~~22621.2262.1.1
    [==========================100.0%==========================]
    The changes due to package Package_for_ServicingStack_2262 requires the current servicing session to be reloaded.
    All the packages will be processed again.
    The operation completed successfully.
    
    ------------------------------------------------------------
    Add SystemReset update to Winre image
    ------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image Version: 10.0.22621.1
    
    Processing 1 of 1 - Adding package Package_for_KB5029863~31bf3856ad364e35~amd64~~22621.2209.1.1
    [==========================100.0%==========================]
    The operation completed successfully.
    
    ------------------------------------------------------------
    Add Cumulative update to Winre image
    ------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image Version: 10.0.22621.1844
    
    Processing 1 of 1 - Adding package Package_for_RollupFix~31bf3856ad364e35~amd64~~22621.2262.1.1
    [==========================100.0%==========================]
    The operation completed successfully.
    
    ------------------------------------------------------------
    Reset Winre base
    ------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image Version: 10.0.22621.2262
    
    [==========================100.0%==========================]
    The operation completed successfully.
    
    ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
    Save and Unmount Winre image
    ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image File : Z:\22621.1_Professional_to_Others_amd64_38in1\temp\mount\Windows\System32\Recovery\winre.wim
    Image Index : 1
    Saving image
    [==========================100.0%==========================]
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    ------------------------------------------------------------
    Optimize winre.wim
    ------------------------------------------------------------
    
    "temp\mount\Windows\System32\Recovery\winre.wim" original size: 993793 KiB
    Using LZX compression with 12 threads
    Archiving file data: 1591 MiB of 1591 MiB (100%) done
    "temp\mount\Windows\System32\Recovery\winre.wim" optimized size: 708479 KiB
    Space saved: 285314 KiB
    
    ------------------------------------------------------------
    Add Servicing Stack update to EnterpriseG image
    ------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image Version: 10.0.22621.1
    
    Processing 1 of 1 - Adding package Package_for_ServicingStack_2262~31bf3856ad364e35~amd64~~22621.2262.1.1
    [==========================100.0%==========================]
    The changes due to package Package_for_ServicingStack_2262 requires the current servicing session to be reloaded.
    All the packages will be processed again.
    The operation completed successfully.
    
    ------------------------------------------------------------
    Add SV2Moment4Enablement to EnterpriseG image
    ------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image Version: 10.0.22621.1
    
    Processing 1 of 1 - Adding package Package_for_KB5027397~31bf3856ad364e35~amd64~~22621.1760.1.0
    [==========================100.0%==========================]
    The operation completed successfully.
    
    ------------------------------------------------------------
    Add DotNetRollup 4.8.1 to EnterpriseG image
    ------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image Version: 10.0.22621.1
    
    Processing 1 of 1 - Adding package Package_for_DotNetRollup_481~31bf3856ad364e35~amd64~~10.0.9176.1
    [==========================100.0%==========================]
    The operation completed successfully.
    
    ------------------------------------------------------------
    Add Cumulative update to EnterpriseG image
    ------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image Version: 10.0.22621.1
    
    Processing 1 of 1 - Adding package Package_for_RollupFix~31bf3856ad364e35~amd64~~22621.2262.1.1
    [==========================100.0%==========================]
    The operation completed successfully.
    
    ------------------------------------------------------------
    Reset EnterpriseG base
    ------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image Version: 10.0.22631.2262
    
    [=====                      10.0%                          ]
    [==========================100.0%==========================]
    The operation completed successfully.
    
    ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
    Save and Unmount EnterpriseG image
    ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image File : Z:\22621.1_Professional_to_Others_amd64_38in1\38.wim
    Image Index : 37
    Saving image
    [==========================100.0%==========================]
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    ------------------------------------------------------------
    Set WIM information
    ------------------------------------------------------------
    
    Setting the NAME property of image 37 to "Windows 11 EnterpriseG".
    Setting the DESCRIPTION property of image 37 to "Windows 11 EnterpriseG".
    Setting the FLAGS property of image 37 to "EnterpriseG".
    Setting the DISPLAYNAME property of image 37 to "Windows 11 Enterprise G (without Store)".
    Setting the DISPLAYDESCRIPTION property of image 37 to "22631.2262 Windows 11 Enterprise G (without Store)".
    
    ------------------------------------------------------------
    Export EnterpriseG image to install.wim
    ------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Exporting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    ------------------------------------------------------------
    Delete temporary folder
    ------------------------------------------------------------
    
    ========================================================================================================
    22631.2262 Windows 11 Enterprise G (without Store) amd64 zh-CN has been successfully reconstructed on 2023/8/26
    ========================================================================================================
    
    Mission took 0:20:39.56 (1239.56s total)
    
     
  12. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,755
    14,462
    340
    #12713 xinso, Aug 26, 2023
    Last edited: Aug 26, 2023
    EnterpriseG, different to regular editions. It's intended for OEM CMGE.

    Therefore, some features have been disabled by default.
    e.g.
    Activation
    Security Center
    Windows Defender
    Edge

    And other OEM configurations are left for OEM vendor to take care of.
    e.g.
    0 Telemetry
    OEM group policy
    OEM Systems
    OEM Wallpapers and ScreenSavers
    Windows Defender related updates
     
  13. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,755
    14,462
    340
  14. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,755
    14,462
    340
  15. Ace2

    Ace2 MDL Expert

    Oct 10, 2014
    1,868
    1,534
    60
    My two cents, this thread is pointless if others cannot be shown how to replicate image on display...:suicide:
     
  16. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,755
    14,462
    340
    #12717 xinso, Aug 26, 2023
    Last edited: Aug 26, 2023
    You can. Nobody stops you. Why you don't?

    How many "script" have I shared?
    How many "script" have you shared?

    Home many "how to" have I posted?
    How many "how to" have you posted?

    The latest one, I had posted too. You missed it? Your own business.

    Why don't you open your own thread?

    You can post, why I can't?

    Do you remember what you replied when someone asked you to share what you posted?
    "No. I don't share.".

    This is you.

    I share what I can.
    I don't share what I can't. And I explained why I can't.

    Excuse me. How much should I owe you?
     
  17. Ace2

    Ace2 MDL Expert

    Oct 10, 2014
    1,868
    1,534
    60
    You're so funny. :roll1:
     
  18. haris_mdlf69

    haris_mdlf69 MDL Addicted

    Oct 23, 2018
    577
    980
    30
    I asked a script for Enterprise G and @xinso shared to me in this thread, he'll always respond to my message whenever I've any query regarding Construction/Reconstruction.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  19. Ace2

    Ace2 MDL Expert

    Oct 10, 2014
    1,868
    1,534
    60
    An idol should take care of a fan who is always doing this :worthy:.;)