Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[demand] tutorial for add msu and exe update package #9

Open
amidevous opened this issue Jun 12, 2024 · 0 comments
Open

[demand] tutorial for add msu and exe update package #9

amidevous opened this issue Jun 12, 2024 · 0 comments

Comments

@amidevous
Copy link

amidevous commented Jun 12, 2024

please put a tutorial to explain how to add updates in msu and one in an install.wim file

for dism

please put a tutorial to explain how to add updates in msu and one in an install.wim file

for dism

it would be necessary to do the same thing with winlib because there with the information on your site

Md c:\mount
Dism /Get-ImageInfo /imagefile:"C:\Users\%USERNAME%\Downloads\Windowsextractiso\sources\install.wim"
dism /mount-image /imagefile:"C:\Users\%USERNAME%\Downloads\Windowsextractiso\sources\install.wim" /index:1 /mountdir:c:\Mount
Dism /Image:C:\mount /Add-Package /PackagePath:"C:\Users\%USERNAME%\Downloads\windows10.0-kb4016635-x64_2b1b48aa6ec51c019187f15059b768b1638a21ab.msu"
dism /unmount-image /mountdir:c:\mount /commit

for wimlib (require install package wimlib and wimlib-utils)

mkdir $HOME/mount
# for wimlib alternative # Dism /Get-ImageInfo /imagefile:"$HOME/Windowsextractiso/sources/install.wim"
sudo wiminfo $HOME/Windowsextractiso/sources/install.wim
# for wimlib alternative # dism /mount-image /imagefile:"C:\Users\%USERNAME%\Downloads\Windowsextractiso\sources\install.wim" /index:1 /mountdir:c:\Mount
wimmount $HOME/Windowsextractiso/sources/install.wim 1 $HOME/mount
# for wimlib alternative # Dism /Image:$HOME/mount /Add-Package /PackagePath:"$HOME/Downloads/windows10.0-kb4016635-x64_2b1b48aa6ec51c019187f15059b768b1638a21ab.msu"
wim??????????????
# for wimlib alternative # dism /unmount-image /mountdir:$HOME/mount /commit
wimapply $HOME/Windowsextractiso/sources/install.wim 1 $HOME/mount

in other words please indicate how to do this in wimlib

# for wimlib alternative # Dism /Image:$HOME/mount /Add-Package /PackagePath:"$HOME/Downloads/windows10.0-kb4016635-x64_2b1b48aa6ec51c019187f15059b768b1638a21ab.msu"
wim??????????????

this function and the most important of all dism functions

which we need to use in wimlib

without this option wimlib has no practical interest

because the main purpose of editing wim images

this is precisely to integrate the updates

because extracting and creating .wim files can already be done with 7zip and p7zip

in this option is the most important

without it the wimlib program has no interest

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant