The forum
MSXML3 natif
Author |
Replies |
cendre |
Monday 23 June 2008 at 13:28
|
cendre
|
Bonjour,
installe msxml3 natif dans un préfixe:
#!/bin/bash
if [ "$PLAYONLINUX" = "" ]
then
exit 0
fi
source "$PLAYONLINUX/lib/sources"
cfg_check
POL_SetupWindow_Init
LNG_MSXML=$(eval_gettext "$(eval_gettext 'This wizard will help you to install Native MSXML3 in playonlinux')")
POL_SetupWindow_free_presentation "MSXML3" "$LNG_MSXML
$prefixe"
POL_SetupWindow_games "Choose a prefix to patch" "MSXML3"
prefixe=$(detect_wineprefix "$APP_ANSWER")
if [ -e "$prefixe" ]
then
select_prefixe "$prefixe"
cd $prefixe/drive_c/windows
POL_SetupWindow_download "$(eval_gettext 'Downloading MSXML3')" "$(eval_gettext 'Downloading...')" "http://download.microsoft.com/download/a/5/e/a5e03798-2454-4d4b-89a3-4a47579891d8/msxml3.msi"
msiexec /i msxml3.msi /quiet
echo "[HKEY_CURRENT_USER\\Software\\Wine\\DllOverrides]" > $REPERTOIRE/tmp/dll.reg
echo "\"msxml3\"=\"native\"" >> $REPERTOIRE/tmp/dll.reg
regedit $REPERTOIRE/tmp/dll.reg
rm -rf $REPERTOIRE/tmp/dll.reg
POL_SetupWindow_reboot
fi
POL_SetupWindow_Close
exit Edited by cendre
|
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