POL_Install_msxml6

Informatie

Creator Bericht
Berillions

Information

This installer has been approved by the team.

Informatie

Platforms:
Downloads: 2959040
Wine: System

Feedbacks

Omschrijving

This component does not work in 64-bit virtual drives

Broncode

#!/bin/bash
# PlayOnLinux Function

# Date : (2009-11-21)
# Last Revision : (2013-01-22 19:53)
# Author : Berillions
# Licence : 
# Depend : none

# [petch] (2013-01-22 19:53)
#   Fixing bug #1787
# [Dadu042] (2020-06-13 11:10)
#   Improve the warning message.

# Until fixed
if [ "$POL_ARCH" = "amd64" ]
then
    POL_Debug_Error "AMD64 is set, msxml6 can not be installed."
else
    cd "$REPERTOIRE/ressources"
    POL_Download_Resource "https://web.archive.org/web/20190122095451if_/http://download.microsoft.com/download/e/a/f/eafb8ee7-667d-4e30-bb39-4694b5b3006f/msxml6_x86.msi" "85a5571258de322458f288b94ee28cfb"

    POL_Wine_OverrideDLL "native" "msxml6"
    rm "$WINEPREFIX"/drive_c/windows/system32/msxml6*
    POL_Wine_WaitBefore "msxml6"
    POL_Wine msiexec /i msxml6_x86.msi /q

    POL_SetupWindow_detect_exit
fi

Contributions

Filters:

Contribute
Member Bericht
Bayera24 Zaterdag 20 Februari 2021 om 17:04
Bayera24 Anonymous

Bericht

Thank you

Antwoorden

Quentin PÂRIS Zaterdag 20 Februari 2021 om 16:03
Quentin PÂRIS Anonymous

Information

This update has been approved by the team.

Differences

@@ -18,7 +18,7 @@
     POL_Debug_Error "AMD64 is set, msxml6 can not be installed."
 else
     cd "$REPERTOIRE/ressources"
-    POL_Download_Resource "http://download.microsoft.com/download/e/a/f/eafb8ee7-667d-4e30-bb39-4694b5b3006f/msxml6_x86.msi" "85a5571258de322458f288b94ee28cfb"
+    POL_Download_Resource "https://web.archive.org/web/20190122095451if_/http://download.microsoft.com/download/e/a/f/eafb8ee7-667d-4e30-bb39-4694b5b3006f/msxml6_x86.msi" "85a5571258de322458f288b94ee28cfb"
 
     POL_Wine_OverrideDLL "native" "msxml6"
     rm "$WINEPREFIX"/drive_c/windows/system32/msxml6*

New source code

#!/bin/bash
# PlayOnLinux Function

# Date : (2009-11-21)
# Last Revision : (2013-01-22 19:53)
# Author : Berillions
# Licence : 
# Depend : none

# [petch] (2013-01-22 19:53)
#   Fixing bug #1787
# [Dadu042] (2020-06-13 11:10)
#   Improve the warning message.

# Until fixed
if [ "$POL_ARCH" = "amd64" ]
then
    POL_Debug_Error "AMD64 is set, msxml6 can not be installed."
else
    cd "$REPERTOIRE/ressources"
    POL_Download_Resource "https://web.archive.org/web/20190122095451if_/http://download.microsoft.com/download/e/a/f/eafb8ee7-667d-4e30-bb39-4694b5b3006f/msxml6_x86.msi" "85a5571258de322458f288b94ee28cfb"

    POL_Wine_OverrideDLL "native" "msxml6"
    rm "$WINEPREFIX"/drive_c/windows/system32/msxml6*
    POL_Wine_WaitBefore "msxml6"
    POL_Wine msiexec /i msxml6_x86.msi /q

    POL_SetupWindow_detect_exit
fi

Antwoorden

Bayera24 Maandag 1 Februari 2021 om 21:56
Bayera24 Anonymous

Bericht

http://download.microsoft.com/download/e/a/f/eafb8ee7-667d-4e30-bb39-4694b5b3006f/msxml6_x86.msi

 

This link now dead. And i can't find this file too :(

upd: file found http://keysystems.ru/files/admin_d/soft/msxml/?C=D;O=A

Antwoorden

Aangepast door Bayera24

Octoxp Zondag 31 Januari 2021 om 20:38
Octoxp Anonymous

Bericht

POL version: 4.3.4
Got ERROR: Type Mismatch

POL Error message:

ERROR Type Mismatch https://1drv.ms/u/s!AuybN-j1RZ92g4IfPDy3VFwgduqbQw?e=rMfHqO

Just for information, the website https://www.exefiles.com/en/msi/msxml6-x86-msi/ have a MSXML6_x86.msi file for download with the same MD5 hash code presented by the server in the POL Error message:

Download https://1drv.ms/u/s!AuybN-j1RZ92g4Ie0f_s9b6GLonQQw?e=0PefFA

Antwoorden

Aangepast door Octoxp

Dadu042 Zaterdag 13 Juni\ 2020 om 11:18
Dadu042

Warning

This update has not been approved yet by the team.
Use it at your own risk

Differences

@@ -9,11 +9,13 @@
 
 # [petch] (2013-01-22 19:53)
 #   Fixing bug #1787
+# [Dadu042] (2020-06-13 11:10)
+#   Improve the warning message.
 
 # Until fixed
 if [ "$POL_ARCH" = "amd64" ]
 then
-    POL_Debug_Error "AMD64 is set, but msxml6 is needed."
+    POL_Debug_Error "AMD64 is set, msxml6 can not be installed."
 else
     cd "$REPERTOIRE/ressources"
     POL_Download_Resource "http://download.microsoft.com/download/e/a/f/eafb8ee7-667d-4e30-bb39-4694b5b3006f/msxml6_x86.msi" "85a5571258de322458f288b94ee28cfb"

New source code

#!/bin/bash
# PlayOnLinux Function

# Date : (2009-11-21)
# Last Revision : (2013-01-22 19:53)
# Author : Berillions
# Licence : 
# Depend : none

# [petch] (2013-01-22 19:53)
#   Fixing bug #1787
# [Dadu042] (2020-06-13 11:10)
#   Improve the warning message.

# Until fixed
if [ "$POL_ARCH" = "amd64" ]
then
    POL_Debug_Error "AMD64 is set, msxml6 can not be installed."
else
    cd "$REPERTOIRE/ressources"
    POL_Download_Resource "http://download.microsoft.com/download/e/a/f/eafb8ee7-667d-4e30-bb39-4694b5b3006f/msxml6_x86.msi" "85a5571258de322458f288b94ee28cfb"

    POL_Wine_OverrideDLL "native" "msxml6"
    rm "$WINEPREFIX"/drive_c/windows/system32/msxml6*
    POL_Wine_WaitBefore "msxml6"
    POL_Wine msiexec /i msxml6_x86.msi /q

    POL_SetupWindow_detect_exit
fi

Antwoorden

alesliehughes Dinsdag 14 Juni\ 2016 om 1:47
alesliehughes Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

Differences

@@ -18,6 +18,7 @@
     cd "$REPERTOIRE/ressources"
     POL_Download_Resource "http://download.microsoft.com/download/e/a/f/eafb8ee7-667d-4e30-bb39-4694b5b3006f/msxml6_x86.msi" "85a5571258de322458f288b94ee28cfb"
 
+    POL_Wine_OverrideDLL "native" "msxml6"
     rm "$WINEPREFIX"/drive_c/windows/system32/msxml6*
     POL_Wine_WaitBefore "msxml6"
     POL_Wine msiexec /i msxml6_x86.msi /q

New source code

#!/bin/bash
# PlayOnLinux Function

# Date : (2009-11-21)
# Last Revision : (2013-01-22 19:53)
# Author : Berillions
# Licence : 
# Depend : none

# [petch] (2013-01-22 19:53)
#   Fixing bug #1787

# Until fixed
if [ "$POL_ARCH" = "amd64" ]
then
    POL_Debug_Error "AMD64 is set, but msxml6 is needed."
else
    cd "$REPERTOIRE/ressources"
    POL_Download_Resource "http://download.microsoft.com/download/e/a/f/eafb8ee7-667d-4e30-bb39-4694b5b3006f/msxml6_x86.msi" "85a5571258de322458f288b94ee28cfb"

    POL_Wine_OverrideDLL "native" "msxml6"
    rm "$WINEPREFIX"/drive_c/windows/system32/msxml6*
    POL_Wine_WaitBefore "msxml6"
    POL_Wine msiexec /i msxml6_x86.msi /q

    POL_SetupWindow_detect_exit
fi

Antwoorden

Woensdag 6 November 2019 om 20:14
Approved. (his comment from msxml4: 'You need to override msxml4 or else the installer detects that the current msxml4 is good enough and doesn't copy the native version.')