POL_Install_gdiplus
Informatie
Creator | Bericht |
---|---|
GNU_Raziel
|
InformationThis installer has been approved by the team. InformatiePlatforms: Feedbacks0 2 OmschrijvingBroncode#!/bin/bash # PlayOnLinux Function # Date : (2009-10-31 17:55) # Last revision : (2012-02-28 21:00) # Author : GNU_Raziel # Only For : http://www.playonlinux.com # # CHANGELOG # [GNU_Raziel] (2009-10-31) # First script. # [Dadu042] (2019-09-10) # Fix dead URL (I could not find a URL hosted on Microsoft.com). # [Dadu042] (2019-09-11) # Fix URL (* character into). # [jack1142] (2022-01-15) # Fix URL (also a web.archive.org link but captured at different time) cd "$POL_USER_ROOT/ressources/" # Downloading GDIplus # URL dead as of 2019-09-10 # POL_Download_Resource "http://download.microsoft.com/download/a/b/c/abc45517-97a0-4cee-a362-1957be2f24e1/WindowsXP-KB975337-x86-ENU.exe" "946d00d87e4094f3a6e425e2d538eadd" POL_Download_Resource "https://web.archive.org/web/20150602122012/http://download.microsoft.com/download/a/b/c/abc45517-97a0-4cee-a362-1957be2f24e1/WindowsXP-KB975337-x86-ENU.exe" "946d00d87e4094f3a6e425e2d538eadd" # Installing GDIplus POL_Wine WindowsXP-KB975337-x86-ENU.exe /extract:C:\\Tmp /q cd "$WINEPREFIX/drive_c/Tmp" if [ "$POL_ARCH" == "amd64" ]; then mv "$WINEPREFIX/drive_c/Tmp/asms/10/msft/windows/gdiplus/gdiplus.dll" "$WINEPREFIX/drive_c/windows/syswow64" else mv "$WINEPREFIX/drive_c/Tmp/asms/10/msft/windows/gdiplus/gdiplus.dll" "$WINEPREFIX/drive_c/windows/system32" fi # Overriding dlls POL_Wine_OverrideDLL "native" "gdiplus" |
Contributions
Filters:
ContributeMember | Bericht |
GuerreroAzul | Donderdag 22 Februari 2024 om 22:09 |
GuerreroAzul
|
WarningThis update has not been approved yet by the team. BerichtI have updated the download link. Greetings. Differences@@ -20,9 +20,10 @@ # URL dead as of 2019-09-10 # POL_Download_Resource "http://download.microsoft.com/download/a/b/c/abc45517-97a0-4cee-a362-1957be2f24e1/WindowsXP-KB975337-x86-ENU.exe" "946d00d87e4094f3a6e425e2d538eadd" - -POL_Download_Resource "https://web.archive.org/web/20150602122012/http://download.microsoft.com/download/a/b/c/abc45517-97a0-4cee-a362-1957be2f24e1/WindowsXP-KB975337-x86-ENU.exe" "946d00d87e4094f3a6e425e2d538eadd" +# POL_Download_Resource "https://web.archive.org/web/20150602122012/http://download.microsoft.com/download/a/b/c/abc45517-97a0-4cee-a362-1957be2f24e1/WindowsXP-KB975337-x86-ENU.exe" "946d00d87e4094f3a6e425e2d538eadd" +POL_Download_Resource "https://archive.org/download/windows-xp-kb-975337-x-86-enu/WindowsXP-KB975337-x86-ENU.exe" "946d00d87e4094f3a6e425e2d538eadd" + # Installing GDIplus POL_Wine WindowsXP-KB975337-x86-ENU.exe /extract:C:\\Tmp /q cd "$WINEPREFIX/drive_c/Tmp" New source code#!/bin/bash # PlayOnLinux Function # Date : (2009-10-31 17:55) # Last revision : (2012-02-28 21:00) # Author : GNU_Raziel # Only For : http://www.playonlinux.com # # CHANGELOG # [GNU_Raziel] (2009-10-31) # First script. # [Dadu042] (2019-09-10) # Fix dead URL (I could not find a URL hosted on Microsoft.com). # [Dadu042] (2019-09-11) # Fix URL (* character into). # [jack1142] (2022-01-15) # Fix URL (also a web.archive.org link but captured at different time) cd "$POL_USER_ROOT/ressources/" # Downloading GDIplus # URL dead as of 2019-09-10 # POL_Download_Resource "http://download.microsoft.com/download/a/b/c/abc45517-97a0-4cee-a362-1957be2f24e1/WindowsXP-KB975337-x86-ENU.exe" "946d00d87e4094f3a6e425e2d538eadd" # POL_Download_Resource "https://web.archive.org/web/20150602122012/http://download.microsoft.com/download/a/b/c/abc45517-97a0-4cee-a362-1957be2f24e1/WindowsXP-KB975337-x86-ENU.exe" "946d00d87e4094f3a6e425e2d538eadd" POL_Download_Resource "https://archive.org/download/windows-xp-kb-975337-x-86-enu/WindowsXP-KB975337-x86-ENU.exe" "946d00d87e4094f3a6e425e2d538eadd" # Installing GDIplus POL_Wine WindowsXP-KB975337-x86-ENU.exe /extract:C:\\Tmp /q cd "$WINEPREFIX/drive_c/Tmp" if [ "$POL_ARCH" == "amd64" ]; then mv "$WINEPREFIX/drive_c/Tmp/asms/10/msft/windows/gdiplus/gdiplus.dll" "$WINEPREFIX/drive_c/windows/syswow64" else mv "$WINEPREFIX/drive_c/Tmp/asms/10/msft/windows/gdiplus/gdiplus.dll" "$WINEPREFIX/drive_c/windows/system32" fi # Overriding dlls POL_Wine_OverrideDLL "native" "gdiplus" Antwoorden |
maarten256 | Zondag 31 Juli 2022 om 20:18 |
maarten256
|
WarningThis update has not been approved yet by the team. Differences@@ -20,8 +20,8 @@ # URL dead as of 2019-09-10 # POL_Download_Resource "http://download.microsoft.com/download/a/b/c/abc45517-97a0-4cee-a362-1957be2f24e1/WindowsXP-KB975337-x86-ENU.exe" "946d00d87e4094f3a6e425e2d538eadd" - -POL_Download_Resource "https://web.archive.org/web/20150602122012/http://download.microsoft.com/download/a/b/c/abc45517-97a0-4cee-a362-1957be2f24e1/WindowsXP-KB975337-x86-ENU.exe" "946d00d87e4094f3a6e425e2d538eadd" +# POL_Download_Resource "https://web.archive.org/web/20150602122012/http://download.microsoft.com/download/a/b/c/abc45517-97a0-4cee-a362-1957be2f24e1/WindowsXP-KB975337-x86-ENU.exe" "946d00d87e4094f3a6e425e2d538eadd" +POL_Download_Resource "https://web.archive.org/web/20150602122012if_/http://download.microsoft.com/download/a/b/c/abc45517-97a0-4cee-a362-1957be2f24e1/WindowsXP-KB975337-x86-ENU.exee" "946d00d87e4094f3a6e425e2d538eadd" # Installing GDIplus POL_Wine WindowsXP-KB975337-x86-ENU.exe /extract:C:\\Tmp /q New source code#!/bin/bash # PlayOnLinux Function # Date : (2009-10-31 17:55) # Last revision : (2012-02-28 21:00) # Author : GNU_Raziel # Only For : http://www.playonlinux.com # # CHANGELOG # [GNU_Raziel] (2009-10-31) # First script. # [Dadu042] (2019-09-10) # Fix dead URL (I could not find a URL hosted on Microsoft.com). # [Dadu042] (2019-09-11) # Fix URL (* character into). # [jack1142] (2022-01-15) # Fix URL (also a web.archive.org link but captured at different time) cd "$POL_USER_ROOT/ressources/" # Downloading GDIplus # URL dead as of 2019-09-10 # POL_Download_Resource "http://download.microsoft.com/download/a/b/c/abc45517-97a0-4cee-a362-1957be2f24e1/WindowsXP-KB975337-x86-ENU.exe" "946d00d87e4094f3a6e425e2d538eadd" # POL_Download_Resource "https://web.archive.org/web/20150602122012/http://download.microsoft.com/download/a/b/c/abc45517-97a0-4cee-a362-1957be2f24e1/WindowsXP-KB975337-x86-ENU.exe" "946d00d87e4094f3a6e425e2d538eadd" POL_Download_Resource "https://web.archive.org/web/20150602122012if_/http://download.microsoft.com/download/a/b/c/abc45517-97a0-4cee-a362-1957be2f24e1/WindowsXP-KB975337-x86-ENU.exee" "946d00d87e4094f3a6e425e2d538eadd" # Installing GDIplus POL_Wine WindowsXP-KB975337-x86-ENU.exe /extract:C:\\Tmp /q cd "$WINEPREFIX/drive_c/Tmp" if [ "$POL_ARCH" == "amd64" ]; then mv "$WINEPREFIX/drive_c/Tmp/asms/10/msft/windows/gdiplus/gdiplus.dll" "$WINEPREFIX/drive_c/windows/syswow64" else mv "$WINEPREFIX/drive_c/Tmp/asms/10/msft/windows/gdiplus/gdiplus.dll" "$WINEPREFIX/drive_c/windows/system32" fi # Overriding dlls POL_Wine_OverrideDLL "native" "gdiplus" AntwoordenZondag 31 Juli 2022 om 20:21
Dinsdag 24 October 2023 om 11:43
|
coldscientist | Donderdag 12 Mei 2022 om 16:06 |
coldscientist
|
WarningThis update has not been approved yet by the team. BerichtFor some reason, PlayOnMac couldn't download GDIPlus from Web Archive, so I updated the script to use WinXP Embedded "gdiplus.dll" version instead. Differences@@ -14,24 +14,26 @@ # Fix URL (* character into). # [jack1142] (2022-01-15) # Fix URL (also a web.archive.org link but captured at different time) - +# [coldscientist] (2022-05-12) +# Fix URL (WinXP Embedded) + cd "$POL_USER_ROOT/ressources/" # Downloading GDIplus - + # URL dead as of 2019-09-10 # POL_Download_Resource "http://download.microsoft.com/download/a/b/c/abc45517-97a0-4cee-a362-1957be2f24e1/WindowsXP-KB975337-x86-ENU.exe" "946d00d87e4094f3a6e425e2d538eadd" - -POL_Download_Resource "https://web.archive.org/web/20150602122012/http://download.microsoft.com/download/a/b/c/abc45517-97a0-4cee-a362-1957be2f24e1/WindowsXP-KB975337-x86-ENU.exe" "946d00d87e4094f3a6e425e2d538eadd" +POL_Download_Resource "https://catalog.s.download.windowsupdate.com/d/msdownload/update/software/secu/2018/07/windowsxp-kb4343674-x86-embedded-enu_ca27aebe8d7a210ffbc67934c144627a9d6f5463.exe" "00ef80d9a4f42ffb1626838658cb75fb" + # Installing GDIplus -POL_Wine WindowsXP-KB975337-x86-ENU.exe /extract:C:\\Tmp /q +POL_Wine windowsxp-kb4343674-x86-embedded-enu_ca27aebe8d7a210ffbc67934c144627a9d6f5463.exe /extract:C:\\Tmp /q cd "$WINEPREFIX/drive_c/Tmp" - + if [ "$POL_ARCH" == "amd64" ]; then - mv "$WINEPREFIX/drive_c/Tmp/asms/10/msft/windows/gdiplus/gdiplus.dll" "$WINEPREFIX/drive_c/windows/syswow64" + mv "$WINEPREFIX/drive_c/Tmp/asms/10/msft/windows/gdiplus/gdiplus.dll" else mv "$WINEPREFIX/drive_c/Tmp/asms/10/msft/windows/gdiplus/gdiplus.dll" "$WINEPREFIX/drive_c/windows/system32" fi - + # Overriding dlls POL_Wine_OverrideDLL "native" "gdiplus" \ No newline at end of file New source code#!/bin/bash # PlayOnLinux Function # Date : (2009-10-31 17:55) # Last revision : (2012-02-28 21:00) # Author : GNU_Raziel # Only For : http://www.playonlinux.com # # CHANGELOG # [GNU_Raziel] (2009-10-31) # First script. # [Dadu042] (2019-09-10) # Fix dead URL (I could not find a URL hosted on Microsoft.com). # [Dadu042] (2019-09-11) # Fix URL (* character into). # [jack1142] (2022-01-15) # Fix URL (also a web.archive.org link but captured at different time) # [coldscientist] (2022-05-12) # Fix URL (WinXP Embedded) cd "$POL_USER_ROOT/ressources/" # Downloading GDIplus # URL dead as of 2019-09-10 # POL_Download_Resource "http://download.microsoft.com/download/a/b/c/abc45517-97a0-4cee-a362-1957be2f24e1/WindowsXP-KB975337-x86-ENU.exe" "946d00d87e4094f3a6e425e2d538eadd" POL_Download_Resource "https://catalog.s.download.windowsupdate.com/d/msdownload/update/software/secu/2018/07/windowsxp-kb4343674-x86-embedded-enu_ca27aebe8d7a210ffbc67934c144627a9d6f5463.exe" "00ef80d9a4f42ffb1626838658cb75fb" # Installing GDIplus POL_Wine windowsxp-kb4343674-x86-embedded-enu_ca27aebe8d7a210ffbc67934c144627a9d6f5463.exe /extract:C:\\Tmp /q cd "$WINEPREFIX/drive_c/Tmp" if [ "$POL_ARCH" == "amd64" ]; then mv "$WINEPREFIX/drive_c/Tmp/asms/10/msft/windows/gdiplus/gdiplus.dll" else mv "$WINEPREFIX/drive_c/Tmp/asms/10/msft/windows/gdiplus/gdiplus.dll" "$WINEPREFIX/drive_c/windows/system32" fi # Overriding dlls POL_Wine_OverrideDLL "native" "gdiplus" AntwoordenVrijdag 13 Mei 2022 om 12:08
|
jack1142 | Zaterdag 15 Januari 2022 om 16:09 |
jack1142
|
InformationThis update has been approved by the team. BerichtWhile trying to install Office 2010, I get a files mismatch when PlayOnLinux tries to install gdiplus: It seems that the listed link is dead: This seems to be related to this issue: My improvement uses a bit newer capture from web.archive.org but it is still exactly the same executable as before. Differences@@ -12,6 +12,8 @@ # Fix dead URL (I could not find a URL hosted on Microsoft.com). # [Dadu042] (2019-09-11) # Fix URL (* character into). +# [jack1142] (2022-01-15) +# Fix URL (also a web.archive.org link but captured at different time) cd "$POL_USER_ROOT/ressources/" # Downloading GDIplus @@ -19,7 +21,7 @@ # URL dead as of 2019-09-10 # POL_Download_Resource "http://download.microsoft.com/download/a/b/c/abc45517-97a0-4cee-a362-1957be2f24e1/WindowsXP-KB975337-x86-ENU.exe" "946d00d87e4094f3a6e425e2d538eadd" -POL_Download_Resource "https://web.archive.org/web/20140615000000/http://download.microsoft.com/download/a/b/c/abc45517-97a0-4cee-a362-1957be2f24e1/WindowsXP-KB975337-x86-ENU.exe" "946d00d87e4094f3a6e425e2d538eadd" +POL_Download_Resource "https://web.archive.org/web/20150602122012/http://download.microsoft.com/download/a/b/c/abc45517-97a0-4cee-a362-1957be2f24e1/WindowsXP-KB975337-x86-ENU.exe" "946d00d87e4094f3a6e425e2d538eadd" # Installing GDIplus POL_Wine WindowsXP-KB975337-x86-ENU.exe /extract:C:\\Tmp /q New source code#!/bin/bash # PlayOnLinux Function # Date : (2009-10-31 17:55) # Last revision : (2012-02-28 21:00) # Author : GNU_Raziel # Only For : http://www.playonlinux.com # # CHANGELOG # [GNU_Raziel] (2009-10-31) # First script. # [Dadu042] (2019-09-10) # Fix dead URL (I could not find a URL hosted on Microsoft.com). # [Dadu042] (2019-09-11) # Fix URL (* character into). # [jack1142] (2022-01-15) # Fix URL (also a web.archive.org link but captured at different time) cd "$POL_USER_ROOT/ressources/" # Downloading GDIplus # URL dead as of 2019-09-10 # POL_Download_Resource "http://download.microsoft.com/download/a/b/c/abc45517-97a0-4cee-a362-1957be2f24e1/WindowsXP-KB975337-x86-ENU.exe" "946d00d87e4094f3a6e425e2d538eadd" POL_Download_Resource "https://web.archive.org/web/20150602122012/http://download.microsoft.com/download/a/b/c/abc45517-97a0-4cee-a362-1957be2f24e1/WindowsXP-KB975337-x86-ENU.exe" "946d00d87e4094f3a6e425e2d538eadd" # Installing GDIplus POL_Wine WindowsXP-KB975337-x86-ENU.exe /extract:C:\\Tmp /q cd "$WINEPREFIX/drive_c/Tmp" if [ "$POL_ARCH" == "amd64" ]; then mv "$WINEPREFIX/drive_c/Tmp/asms/10/msft/windows/gdiplus/gdiplus.dll" "$WINEPREFIX/drive_c/windows/syswow64" else mv "$WINEPREFIX/drive_c/Tmp/asms/10/msft/windows/gdiplus/gdiplus.dll" "$WINEPREFIX/drive_c/windows/system32" fi # Overriding dlls POL_Wine_OverrideDLL "native" "gdiplus" AntwoordenDinsdag 18 Januari 2022 om 22:28
Aangepast door jack1142 |
Dadu042 | Dinsdag 10 September 2019 om 11:51 |
Dadu042
|
WarningThis update has not been approved yet by the team. BerichtThe current URL is dead, Winetricks changed its code to get gdiplus file from the Windows 7 SP 1. The current Microsoft web page allowing to download the XP gdiplus leads to a Error 404...
This script fix the issue by using one URL to the website www.archive.org (Windows XP's version).
Note: this POL function is often used by the function: POL_GoG_install. Differences@@ -10,14 +10,16 @@ # First script. # [Dadu042] (2019-09-10) # Fix dead URL (I could not find a URL hosted on Microsoft.com). - +# [Dadu042] (2019-09-11) +# Fix URL (* character into). + cd "$POL_USER_ROOT/ressources/" # Downloading GDIplus # URL dead as of 2019-09-10 # POL_Download_Resource "http://download.microsoft.com/download/a/b/c/abc45517-97a0-4cee-a362-1957be2f24e1/WindowsXP-KB975337-x86-ENU.exe" "946d00d87e4094f3a6e425e2d538eadd" -POL_Download_Resource "https://web.archive.org/web/20140615000000*/http://download.microsoft.com/download/a/b/c/abc45517-97a0-4cee-a362-1957be2f24e1/WindowsXP-KB975337-x86-ENU.exe" "946d00d87e4094f3a6e425e2d538eadd" +POL_Download_Resource "https://web.archive.org/web/20140615000000/http://download.microsoft.com/download/a/b/c/abc45517-97a0-4cee-a362-1957be2f24e1/WindowsXP-KB975337-x86-ENU.exe" "946d00d87e4094f3a6e425e2d538eadd" # Installing GDIplus POL_Wine WindowsXP-KB975337-x86-ENU.exe /extract:C:\\Tmp /q New source code#!/bin/bash # PlayOnLinux Function # Date : (2009-10-31 17:55) # Last revision : (2012-02-28 21:00) # Author : GNU_Raziel # Only For : http://www.playonlinux.com # # CHANGELOG # [GNU_Raziel] (2009-10-31) # First script. # [Dadu042] (2019-09-10) # Fix dead URL (I could not find a URL hosted on Microsoft.com). # [Dadu042] (2019-09-11) # Fix URL (* character into). cd "$POL_USER_ROOT/ressources/" # Downloading GDIplus # URL dead as of 2019-09-10 # POL_Download_Resource "http://download.microsoft.com/download/a/b/c/abc45517-97a0-4cee-a362-1957be2f24e1/WindowsXP-KB975337-x86-ENU.exe" "946d00d87e4094f3a6e425e2d538eadd" POL_Download_Resource "https://web.archive.org/web/20140615000000/http://download.microsoft.com/download/a/b/c/abc45517-97a0-4cee-a362-1957be2f24e1/WindowsXP-KB975337-x86-ENU.exe" "946d00d87e4094f3a6e425e2d538eadd" # Installing GDIplus POL_Wine WindowsXP-KB975337-x86-ENU.exe /extract:C:\\Tmp /q cd "$WINEPREFIX/drive_c/Tmp" if [ "$POL_ARCH" == "amd64" ]; then mv "$WINEPREFIX/drive_c/Tmp/asms/10/msft/windows/gdiplus/gdiplus.dll" "$WINEPREFIX/drive_c/windows/syswow64" else mv "$WINEPREFIX/drive_c/Tmp/asms/10/msft/windows/gdiplus/gdiplus.dll" "$WINEPREFIX/drive_c/windows/system32" fi # Overriding dlls POL_Wine_OverrideDLL "native" "gdiplus" AntwoordenZondag 14 Maart 2021 om 9:41
Woensdag 19 Januari 2022 om 10:03
Aangepast door Dadu042 |
This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com