POL_Install_winhttp

Informations

Créateur Messages
Quentin PÂRIS Anonymous

Information

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

Informations

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

Retours d'expérience

Code source

#!/bin/bash
# Date : (2012-07-29 22-02)
# Last revision : (2019-10-30 10-53)
# Author : Quentin PÂRIS
 
# Installing DLL
POL_Download_Resource "http://web.archive.org/web/20160129053851/http://download.microsoft.com/download/E/6/A/E6A04295-D2A8-40D0-A0C5-241BFECD095E/W2KSP4_EN.EXE" "a4ef6c91d418418b287cefe31f958175"
 
cd "$WINEPREFIX/drive_c/windows/temp"
cabextract "$POL_USER_ROOT/ressources/W2KSP4_EN.EXE" -F i386/new/winhttp.dl_
cabextract i386/new/winhttp.dl_ -d i386/new
 
 
if [ "$POL_ARCH" = "amd64" ]; then
        cp -f i386/new/winhttp.dll ../syswow64/winhttp.dll
else
        cp -f i386/new/winhttp.dll ../system32/winhttp.dll
fi
 
# Overriding DLL
POL_Wine_OverrideDLL "native, builtin" "winhttp"

Contributions

Filters:

Contribuer
Membre Messages
Yaotl Mercredi 23 Octobre 2019 à 3:15
Yaotl Anonymous

Information

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

Differences

@@ -1,20 +1,21 @@
 #!/bin/bash
 # Date : (2012-07-29 22-02)
-# Last revision : (2013-06-20 21:00)
+# Last revision : (2019-10-30 10-53)
 # Author : Quentin PÂRIS
-
+ 
 # Installing DLL
 POL_Download_Resource "http://web.archive.org/web/20160129053851/http://download.microsoft.com/download/E/6/A/E6A04295-D2A8-40D0-A0C5-241BFECD095E/W2KSP4_EN.EXE" "a4ef6c91d418418b287cefe31f958175"
-  
+ 
 cd "$WINEPREFIX/drive_c/windows/temp"
 cabextract "$POL_USER_ROOT/ressources/W2KSP4_EN.EXE" -F i386/new/winhttp.dl_
-  
-  
+cabextract i386/new/winhttp.dl_ -d i386/new
+ 
+ 
 if [ "$POL_ARCH" = "amd64" ]; then
-        cp -f i386/new/winhttp.dl_ ../syswow64/winhttp.dll
+        cp -f i386/new/winhttp.dll ../syswow64/winhttp.dll
 else
-        cp -f i386/new/winhttp.dl_ ../system32/winhttp.dll
+        cp -f i386/new/winhttp.dll ../system32/winhttp.dll
 fi
-  
+ 
 # Overriding DLL
 POL_Wine_OverrideDLL "native, builtin" "winhttp"
\ No newline at end of file

Nouveau code source

#!/bin/bash
# Date : (2012-07-29 22-02)
# Last revision : (2019-10-30 10-53)
# Author : Quentin PÂRIS
 
# Installing DLL
POL_Download_Resource "http://web.archive.org/web/20160129053851/http://download.microsoft.com/download/E/6/A/E6A04295-D2A8-40D0-A0C5-241BFECD095E/W2KSP4_EN.EXE" "a4ef6c91d418418b287cefe31f958175"
 
cd "$WINEPREFIX/drive_c/windows/temp"
cabextract "$POL_USER_ROOT/ressources/W2KSP4_EN.EXE" -F i386/new/winhttp.dl_
cabextract i386/new/winhttp.dl_ -d i386/new
 
 
if [ "$POL_ARCH" = "amd64" ]; then
        cp -f i386/new/winhttp.dll ../syswow64/winhttp.dll
else
        cp -f i386/new/winhttp.dll ../system32/winhttp.dll
fi
 
# Overriding DLL
POL_Wine_OverrideDLL "native, builtin" "winhttp"

Réponses

Jeudi 14 Novembre 2019 à 13:57
Approved.

Edité par Yaotl

Quentin PÂRIS Vendredi 16 September 2016 à 12:05
Quentin PÂRIS Anonymous

Warning

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

Differences

@@ -4,7 +4,7 @@
 # Author : Quentin PÂRIS
 
 # Installing DLL
-POL_Download_Resource "http://download.microsoft.com/download/E/6/A/E6A04295-D2A8-40D0-A0C5-241BFECD095E/W2KSP4_EN.EXE" "a4ef6c91d418418b287cefe31f958175"
+POL_Download_Resource "http://web.archive.org/web/20160129053851/http://download.microsoft.com/download/E/6/A/E6A04295-D2A8-40D0-A0C5-241BFECD095E/W2KSP4_EN.EXE" "a4ef6c91d418418b287cefe31f958175"
   
 cd "$WINEPREFIX/drive_c/windows/temp"
 cabextract "$POL_USER_ROOT/ressources/W2KSP4_EN.EXE" -F i386/new/winhttp.dl_

Nouveau code source

#!/bin/bash
# Date : (2012-07-29 22-02)
# Last revision : (2013-06-20 21:00)
# Author : Quentin PÂRIS

# Installing DLL
POL_Download_Resource "http://web.archive.org/web/20160129053851/http://download.microsoft.com/download/E/6/A/E6A04295-D2A8-40D0-A0C5-241BFECD095E/W2KSP4_EN.EXE" "a4ef6c91d418418b287cefe31f958175"
  
cd "$WINEPREFIX/drive_c/windows/temp"
cabextract "$POL_USER_ROOT/ressources/W2KSP4_EN.EXE" -F i386/new/winhttp.dl_
  
  
if [ "$POL_ARCH" = "amd64" ]; then
        cp -f i386/new/winhttp.dl_ ../syswow64/winhttp.dll
else
        cp -f i386/new/winhttp.dl_ ../system32/winhttp.dll
fi
  
# Overriding DLL
POL_Wine_OverrideDLL "native, builtin" "winhttp"

Réponses

Quentin PÂRIS Vendredi 4 Juillet 2014 à 14:34
Quentin PÂRIS Anonymous

Warning

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

Differences

@@ -7,13 +7,13 @@
 POL_Download_Resource "http://download.microsoft.com/download/E/6/A/E6A04295-D2A8-40D0-A0C5-241BFECD095E/W2KSP4_EN.EXE" "a4ef6c91d418418b287cefe31f958175"
   
 cd "$WINEPREFIX/drive_c/windows/temp"
-cabextract "$POL_USER_ROOT/ressources/W2KSP4_EN.EXE" -F WINHTTP.DLL
+cabextract "$POL_USER_ROOT/ressources/W2KSP4_EN.EXE" -F i386/new/winhttp.dl_
   
   
 if [ "$POL_ARCH" = "amd64" ]; then
-        cp -f WINHTTP.DLL ../syswow64/winhttp.dll
+        cp -f i386/new/winhttp.dl_ ../syswow64/winhttp.dll
 else
-        cp -f WINHTTP.DLL ../system32/winhttp.dll
+        cp -f i386/new/winhttp.dl_ ../system32/winhttp.dll
 fi
   
 # Overriding DLL

Nouveau code source

#!/bin/bash
# Date : (2012-07-29 22-02)
# Last revision : (2013-06-20 21:00)
# Author : Quentin PÂRIS

# Installing DLL
POL_Download_Resource "http://download.microsoft.com/download/E/6/A/E6A04295-D2A8-40D0-A0C5-241BFECD095E/W2KSP4_EN.EXE" "a4ef6c91d418418b287cefe31f958175"
  
cd "$WINEPREFIX/drive_c/windows/temp"
cabextract "$POL_USER_ROOT/ressources/W2KSP4_EN.EXE" -F i386/new/winhttp.dl_
  
  
if [ "$POL_ARCH" = "amd64" ]; then
        cp -f i386/new/winhttp.dl_ ../syswow64/winhttp.dll
else
        cp -f i386/new/winhttp.dl_ ../system32/winhttp.dll
fi
  
# Overriding DLL
POL_Wine_OverrideDLL "native, builtin" "winhttp"

Réponses

Quentin PÂRIS Vendredi 4 Juillet 2014 à 14:10
Quentin PÂRIS Anonymous

Warning

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

Differences

@@ -4,10 +4,10 @@
 # Author : Quentin PÂRIS
 
 # Installing DLL
-POL_Download_Resource "http://download.microsoft.com/download/5/0/c/50c42d0e-07a8-4a2b-befb-1a403bd0df96/IE5.01sp4-KB871260-Windows2000sp4-x86-ENU.exe" "0c0f6e300800e49472e9b2e0890a09c1"
+POL_Download_Resource "http://download.microsoft.com/download/E/6/A/E6A04295-D2A8-40D0-A0C5-241BFECD095E/W2KSP4_EN.EXE" "a4ef6c91d418418b287cefe31f958175"
   
 cd "$WINEPREFIX/drive_c/windows/temp"
-cabextract "$POL_USER_ROOT/ressources/IE5.01sp4-KB871260-Windows2000sp4-x86-ENU.exe" -F WINHTTP.DLL
+cabextract "$POL_USER_ROOT/ressources/W2KSP4_EN.EXE" -F WINHTTP.DLL
   
   
 if [ "$POL_ARCH" = "amd64" ]; then

Nouveau code source

#!/bin/bash
# Date : (2012-07-29 22-02)
# Last revision : (2013-06-20 21:00)
# Author : Quentin PÂRIS

# Installing DLL
POL_Download_Resource "http://download.microsoft.com/download/E/6/A/E6A04295-D2A8-40D0-A0C5-241BFECD095E/W2KSP4_EN.EXE" "a4ef6c91d418418b287cefe31f958175"
  
cd "$WINEPREFIX/drive_c/windows/temp"
cabextract "$POL_USER_ROOT/ressources/W2KSP4_EN.EXE" -F WINHTTP.DLL
  
  
if [ "$POL_ARCH" = "amd64" ]; then
        cp -f WINHTTP.DLL ../syswow64/winhttp.dll
else
        cp -f WINHTTP.DLL ../system32/winhttp.dll
fi
  
# Overriding DLL
POL_Wine_OverrideDLL "native, builtin" "winhttp"

Réponses

Quentin PÂRIS Vendredi 4 Juillet 2014 à 14:02
Quentin PÂRIS Anonymous

Warning

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

Differences

@@ -0,0 +1,20 @@
+#!/bin/bash
+# Date : (2012-07-29 22-02)
+# Last revision : (2013-06-20 21:00)
+# Author : Quentin PÂRIS
+
+# Installing DLL
+POL_Download_Resource "http://download.microsoft.com/download/5/0/c/50c42d0e-07a8-4a2b-befb-1a403bd0df96/IE5.01sp4-KB871260-Windows2000sp4-x86-ENU.exe" "0c0f6e300800e49472e9b2e0890a09c1"
+  
+cd "$WINEPREFIX/drive_c/windows/temp"
+cabextract "$POL_USER_ROOT/ressources/IE5.01sp4-KB871260-Windows2000sp4-x86-ENU.exe" -F WINHTTP.DLL
+  
+  
+if [ "$POL_ARCH" = "amd64" ]; then
+        cp -f WINHTTP.DLL ../syswow64/winhttp.dll
+else
+        cp -f WINHTTP.DLL ../system32/winhttp.dll
+fi
+  
+# Overriding DLL
+POL_Wine_OverrideDLL "native, builtin" "winhttp"
\ No newline at end of file

Nouveau code source

#!/bin/bash
# Date : (2012-07-29 22-02)
# Last revision : (2013-06-20 21:00)
# Author : Quentin PÂRIS

# Installing DLL
POL_Download_Resource "http://download.microsoft.com/download/5/0/c/50c42d0e-07a8-4a2b-befb-1a403bd0df96/IE5.01sp4-KB871260-Windows2000sp4-x86-ENU.exe" "0c0f6e300800e49472e9b2e0890a09c1"
  
cd "$WINEPREFIX/drive_c/windows/temp"
cabextract "$POL_USER_ROOT/ressources/IE5.01sp4-KB871260-Windows2000sp4-x86-ENU.exe" -F WINHTTP.DLL
  
  
if [ "$POL_ARCH" = "amd64" ]; then
        cp -f WINHTTP.DLL ../syswow64/winhttp.dll
else
        cp -f WINHTTP.DLL ../system32/winhttp.dll
fi
  
# Overriding DLL
POL_Wine_OverrideDLL "native, builtin" "winhttp"

Réponses

Anonymous
Jeudi 16 Novembre 2017 à 14:00
how to run latest script? current available in POL excepted (Error! Files mismatch)

Edité par Tinou

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