POL_Install_msxml6

Informations

Créateur Messages
Berillions

Information

Cet installateur a été accepté par l'équipe.

Informations

Plate-formes :
Téléchargements : 3017660
Wine: System

Retours d'expérience

Description

This component does not work in 64-bit virtual drives

Code source

#!/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:

Contribuer
Membre Messages
Bayera24 Samedi 20 Février 2021 à 17:04
Bayera24 Anonymous

Messages

Thank you

Réponses

Quentin PÂRIS Samedi 20 Février 2021 à 16:03
Quentin PÂRIS Anonymous

Information

Cette mise à jour a été acceptée par l'équipe

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*

Nouveau code source

#!/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

Réponses

Bayera24 Lundi 1 Février 2021 à 21:56
Bayera24 Anonymous

Messages

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

Réponses

Edité par Bayera24

Octoxp Dimanche 31 Janvier 2021 à 20:38
Octoxp Anonymous

Messages

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

Réponses

Edité par Octoxp

Dadu042 Samedi 13 Juin 2020 à 11:18
Dadu042

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

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"

Nouveau code source

#!/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

Réponses

alesliehughes Mardi 14 Juin 2016 à 1:47
alesliehughes Anonymous

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

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

Nouveau code source

#!/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

Réponses

Mercredi 6 Novembre 2019 à 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.')

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