blog.minskio.co.uk

Content and theme behind minskio.co.uk
Log | Files | Refs

commit dfba343b2f72aed81c3fd1d2d4ad95b213072eab
parent 93f7170fffae046ba492c161c88a30ed77be2a08
Author: breadcat <peter@minskio.co.uk>
Date:   Sun,  5 Jul 2020 19:22:36 +0100

Update webp instructions for 64bit only

Found during win10-prep research

Diffstat:
Mcontent/posts/unattended-installation-of-webp-codec.md | 14+++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)

diff --git 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.