diff options
author | breadcat | 2020-07-05 19:22:36 +0100 |
---|---|---|
committer | breadcat | 2020-07-05 19:22:36 +0100 |
commit | dfba343b2f72aed81c3fd1d2d4ad95b213072eab (patch) | |
tree | 1959ba09025ccb3f62647ea462def8013bf59568 /content/posts/unattended-installation-of-webp-codec.md | |
parent | 93f7170fffae046ba492c161c88a30ed77be2a08 (diff) | |
download | blog.minskio.co.uk-dfba343b2f72aed81c3fd1d2d4ad95b213072eab.tar.gz blog.minskio.co.uk-dfba343b2f72aed81c3fd1d2d4ad95b213072eab.tar.bz2 blog.minskio.co.uk-dfba343b2f72aed81c3fd1d2d4ad95b213072eab.zip |
Update webp instructions for 64bit only
Found during win10-prep research
Diffstat (limited to 'content/posts/unattended-installation-of-webp-codec.md')
-rw-r--r-- | content/posts/unattended-installation-of-webp-codec.md | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/content/posts/unattended-installation-of-webp-codec.md b/content/posts/unattended-installation-of-webp-codec.md index b5e45ea..f91d703 100644 --- a/content/posts/unattended-installation-of-webp-codec.md +++ b/content/posts/unattended-installation-of-webp-codec.md @@ -1,6 +1,7 @@ --- title: "Unattended installation of WebP codec" date: 2020-05-26T16:48:00 +lastmod: 2020-07-05T19:19:00 tags: ["Snippets", "Software", "Windows"] --- @@ -28,12 +29,8 @@ msiexec /a %temp%\7z1701.msi /qb TARGETDIR=%temp%\7z1701\ rem unpack installer %temp%\7z1701\Files\7-Zip\7z.exe x %temp%\WebpCodecSetup.exe -rem rename sources msis -ren %temp%\.rsrc\0\MSIFILE\1 1.msi +rem rename and install source msis ren %temp%\.rsrc\0\MSIFILE\10 10.msi - -rem install msis -msiexec /i %temp%\.rsrc\0\MSIFILE\1.msi /quiet /qn /norestart msiexec /i %temp%\.rsrc\0\MSIFILE\10.msi /quiet /qn /norestart rem clean up used folders @@ -41,4 +38,8 @@ del %temp%\WebpCodecSetup.exe %temp%\7z1701.msi %temp%\.data %temp%\.rdata %temp rd /s /q %temp%\7z1701 %temp%\.rsrc ``` -The script will download the installer, and 7zip to do the unpacking, then delete everything afterwards.
\ No newline at end of file +The script will download the installer, and 7zip to do the unpacking, then delete everything afterwards. + +Note, this will only install the 64bit install `10.msi`, if you're still working on 32bit Windows, you want to rename and install `1.msi` instead. + +* **Edit 2020-07-05:** Chaneg instructions to only instal 64bit version. |