Code Monkey home page Code Monkey logo

winezeug's Introduction

Winetricks

License

Homepage of Winetricks, previously hosted at https://code.google.com/p/winetricks.

Winetricks is an easy way to work around problems in Wine.

It has a menu of supported games/apps for which it can do all the workarounds automatically. It also allows the installation of missing DLLs and tweaking of various Wine settings.

The latest version can be downloaded here: https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks

Tagged releases are accessible here: https://github.com/Winetricks/winetricks/releases

Installing

The winetricks package should be used if it is available and up to date. The package is available in most mainstream (Unix-like) Operating Systems:

Note: packaged Debian / Ubuntu winetricks versions are typically outdated, so a manual installation is recommended.

Manual Install

If the package is unavailable, outdated, or the latest version is desired, a manual installation of winetricks can be done. It is highly recommended to uninstall any previously installed version of winetricks first.

If you don't uninstall a previously installed, packaged version of winetricks... Well then you get to pick up the pieces!

E.g. for Debian / Ubuntu:

sudo apt-get purge winetricks

Installing The Latest Stable Release

Download the latest release from Github.

Extract the archive and cd into the extracted folder.

Run sudo make install to install Winetricks system-wide.

Scripted Install

You can use a shell script to download the current winetricks script(s):

#!/bin/sh
# Create and switch to a temporary directory writeable by current user. See:
#   https://www.tldp.org/LDP/abs/html/subshells.html
cd "$(mktemp -d)" || exit 1

# Use a BASH "here document" to create an updater shell script file.
# See:
#   https://www.tldp.org/LDP/abs/html/here-docs.html
# >  outputs stdout to a file, overwriting any pre-existing file
# << takes input, directly from the script itself, till the second '_EOF_SCRIPT' marker, as stdin
# the cat command hooks these 2 streams up (stdin and stdout)
###### create update_winetricks START ########
cat > update_winetricks <<_EOF_SCRIPT
#!/bin/sh

# Create and switch to a temporary directory writeable by current user. See:
#   https://www.tldp.org/LDP/abs/html/subshells.html
cd "\$(mktemp -d)"

# Download the latest winetricks script (master="latest version") from Github.
wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks

# Mark the winetricks script (we've just downloaded) as executable. See:
#   https://www.tldp.org/LDP/GNU-Linux-Tools-Summary/html/x9543.htm
chmod +x winetricks

# Move the winetricks script to a location which will be in the standard user PATH. See:
#   https://www.tldp.org/LDP/abs/html/internalvariables.html
sudo mv winetricks /usr/bin

# Download the latest winetricks BASH completion script (master="latest version") from Github.
wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks.bash-completion

# Move the winetricks BASH completion script to a standard location for BASH completion modules. See:
#   https://www.tldp.org/LDP/abs/html/tabexpansion.html
sudo mv winetricks.bash-completion /usr/share/bash-completion/completions/winetricks

# Download the latest winetricks MAN page (master="latest version") from Github.
wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks.1

# Move the winetricks MAN page to a standard location for MAN pages. See:
#   https://www.pathname.com/fhs/pub/fhs-2.3.html#USRSHAREMANMANUALPAGES
sudo mv winetricks.1 /usr/share/man/man1/winetricks.1
_EOF_SCRIPT
###### create update_winetricks FINISH ########

# Mark the update_winetricks script (we've just written out) as executable. See:
#   https://www.tldp.org/LDP/GNU-Linux-Tools-Summary/html/x9543.htm
chmod +x update_winetricks

# We must escalate privileges to root, as regular Linux users do not have write access to '/usr/bin'.
sudo mv update_winetricks /usr/bin/

See the manpages for the individual functions, if you are not clear how they are being used, e.g.

man mktemp
man mv
man wget
man sudo
...

An alternative updater script implementation, using su in place of sudo, is also possible:

cd "$(mktemp -d)"
cat > update_winetricks <<_EOF_SCRIPT
#!/bin/sh

cd "\$(mktemp -d)"
wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks
wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks.bash-completion
chmod +x winetricks
su root sh -c 'mv winetricks /usr/bin ; mv winetricks.bash-completion /usr/share/bash-completion/completions/winetricks'
_EOF_SCRIPT

chmod +x update_winetricks
su root sh -c 'mv update_winetricks /usr/bin/'

To use curl instead of wget: substitute all wget calls with curl -O, in the winetricks update script.

Updating

Using the traditional Unix crontab...

sudo ln "/usr/bin/update_winetricks" "/etc/cron.weekly/update_winetricks"

Note: ensure you have a cron utility installed and enabled, on systems utilizing systemd by default.

The update script can be automated, to run on a set schedule, via (where available) systemd units. E.g. to create a scheduled winetricks updater systemd timer unit, and an associated systemd service unit:

cd "$(mktemp -d)"
cat > winetricks_update.timer <<_EOF_TIMER_UNIT
[Unit]
Description=Run winetricks update script weekly (Saturday)

[Timer]
OnCalendar=Sat
Persistent=true

[Install]
WantedBy=timers.target
_EOF_TIMER_UNIT

cat > winetricks_update.service <<_EOF_SERVICE_UNIT
[Unit]
Description=Run winetricks update script
After=network.target

[Service]
ExecStart=/bin/sh /usr/bin/update_winetricks
Type=oneshot
_EOF_SERVICE_UNIT

sudo mv winetricks_update.timer winetricks_update.service /etc/systemd/system/

See:

To start and enable the winetricks update timer:

sudo systemctl daemon-reload
sudo systemctl enable winetricks_update.timer
sudo systemctl start winetricks_update.timer

The core winetricks script can also be updated by simply doing:

winetricks --self-update

or:

sudo winetricks --self-update

for a system-wide winetricks installation.

Custom .verb files

New dll/settings/programs can be added to Winetricks by passing a custom .verb (format below)

Example icecat.verb:

w_metadata icecat apps \
    title="GNU Icecat 38.8.0" \
    publisher="GNU Foundation" \
    year="2016" \
    media="download" \
    file1="icecat-38.8.0.en-US.win32.zip" \
    installed_exe1="${W_PROGRAMS_X86_WIN}/icecat/icecat.exe"

load_icecat()
{
    w_download https://ftp.gnu.org/gnu/gnuzilla/38.8.0/${file1} e5f9481e78710c25eb3a271d81aceb19ef44ff6e8599da7d5f7a2da584c01213
    w_try_unzip "${W_PROGRAMS_X86_UNIX}" "${W_CACHE}/${W_PACKAGE}/icecat-38.8.0.en-us.win32.zip"
}

Note that the file prefix (icecat.verb) and command name (icecat) must match. All metadata fields are optional, only the command name and category are required.

Tests

The tests need bashate and shellcheck>=0.4.4 installed. Makefile supports a few test targets:

  • check - runs './tests/winetricks-tests quick' (without first clearing $WINETRICKS_CACHE)
  • shell-checks - runs './tests/shell-checks'
  • test - runs './tests/winetricks-tests full' (and clears $WINETRICKS_CACHE first)
  • xvfb-check - runs './tests/winetricks-tests xvfb-check' (without first clearing $WINETRICKS_CACHE first)

Support

winezeug's People

Contributors

andrerh avatar austin987 avatar yokozar avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

winezeug's Issues

install-wine-deps.sh should work on Intrepid/amd64

What steps will reproduce the problem?
1. Get install-wine-deps.sh
2. Try to use it on a 64-bit system
3. :-(

What is the expected output? What do you see instead?
No idea, I haven't tried it; but I looked at the source and it doesn't look
like it'd work :)


What version of the product are you using? On what operating system?
Got it from  svn checkout http://winezeug.googlecode.com/svn/trunk/
winezeug-read-only
I'm running Ubuntu 8.10 x86_64 (though I'm sure other users of 64-bit
distros would like the same feature).

Please provide any additional information below.
http://wiki.winehq.org/WineOn64bit contains a lot of tricks that could
probably be adapted for this script.

Original issue reported on code.google.com by [email protected] on 13 Nov 2008 at 9:18

Firefox fails after using winetricks

What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?


What version of the product are you using? On what operating system?


Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 14 Sep 2008 at 1:45

wine programs crash after using native comctl32 installed by winetricks

What steps will reproduce the problem?
1. install comctl32 using winetricks

What is the expected output? What do you see instead?
programs crash which they shouldn't.


What version of the product are you using? On what operating system?
20081012., Mandriva Linux 2009.0

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 16 Dec 2008 at 3:02

Attachments:

winetricks: vcrun2008 installer fails if directx9 installed?!

What steps will reproduce the problem?
1. delete ~/wine directory
2. install directx9
3. try to install directx9

What version of the product are you using? On what operating system?
wine-1.1.12
Winetricks version 20081223.
Ubuntu Intrepid 8.10

Please provide any additional information below.
during install of directx9 i've the following errors a lot of times:
err:setupapi:do_file_copyW Unsupported style(s) 0x144

here is the output of the vcrun2008 install:
$> winetricks vcrun2008
Renamed drive_c to harddiskvolume0
fixme:advapi:SetEntriesInAclA 1 0x33f79c (nil) 0x33f7d4
fixme:advapi:SetSecurityInfo stub
fixme:advapi:SetEntriesInAclA 1 0x33f788 (nil) 0x33f7d0
fixme:advapi:SetSecurityInfo stub
fixme:advapi:SetEntriesInAclA 1 0x33f7a8 (nil) 0x33f7f0
fixme:advapi:SetSecurityInfo stub
Executing wine /home/mobidyc/.winetrickscache/vcrun2008/vcredist_x86.exe
Could not load Mozilla. HTML rendering will be disabled.
fixme:clusapi:GetNodeClusterState ((null),0x32ec9c,0) stub!
fixme:advapi:DecryptFileA "c:\\9a342df48ee4d2e3dca785\\" 00000000
fixme:heap:HeapSetInformation (nil) 1 (nil) 0
fixme:advapi:LsaOpenPolicy ((null),0x33f3a8,0x00000001,0x33f3d0) stub
fixme:advapi:LsaClose (0xcafe) stub
fixme:advapi:LookupAccountNameW (null) L"mobidyc" (nil) 0x7df6c3e8 (nil)
0x7df6c3ec 0x7df6c3e0 - stub
fixme:advapi:LookupAccountNameW (null) L"mobidyc" 0x16b908 0x7df6c3e8
0x16bcf8 0x7df6c3ec 0x7df6c3e0 - stub
fixme:advapi:LookupAccountNameW (null) L"mobidyc" (nil) 0x7df6c3b4 (nil)
0x7df6c3b8 0x7df6c3ac - stub
fixme:advapi:LookupAccountNameW (null) L"mobidyc" 0x16c848 0x7df6c3b4
0x16c750 0x7df6c3b8 0x7df6c3ac - stub
fixme:msi:ACTION_HandleStandardAction unhandled standard action
L"SetODBCFolders"
fixme:msi:msi_unimplemented_action_stub MsiUnpublishAssemblies -> 10
ignored L"MsiAssembly" table values
err:msi:ITERATE_Actions Execution halted, action L"InstallFinalize"
returned 1627
err:msi:msi_view_get_row Invalid type!
err:msi:msi_view_get_row Invalid type!
err:msi:msi_view_get_row Invalid type!
err:msi:msi_view_get_row Invalid type!
err:msi:msi_view_get_row Invalid type!
Note: command 'wine
/home/mobidyc/.winetrickscache/vcrun2008/vcredist_x86.exe' returned status
91.  Aborting.



Original issue reported on code.google.com by [email protected] on 12 Jan 2009 at 8:41

Winetricks installs ppviewer.exe instead of Quicktime

What steps will reproduce the problem?
1. Type "bash winetricks quicktime72" or
2. Type "bash winetricks" and select quicktime72 from the window
3.

What is the expected output? What do you see instead?
Expected install of quicktime but got install of ppviewer.exe (power point
viewer).

What version of the product are you using? On what operating system?
Winetricks 20090121 on Ubuntu 8.10

Please provide any additional information below.
I'm going to try to find the install file and change it's name to
ppviewer.exe just to see if it works. E-mail me if the results are
important. I don't program, otherwise I'd offer to fix it. Thanks for
Winetricks!

Original issue reported on code.google.com by [email protected] on 3 Feb 2009 at 9:33

Console Configuration

Scott Richie had a proposal for a simple tool to help integrate the install
uninstall process into the normal linux tools. 

http://wiki.winehq.org/ConsoleConfiguration

Someone recently submitted some python code to that end.  While it has a
bug or two I think it's a good start and certainly could prove useful to
Scott and Ubuntu as well as other distros that want to integrate windows
apps into their regular app managers.

This is the code from ChristianDannieStorgaard
http://dl.getdropbox.com/u/278272/WineConsoleConfiguration.py

See the wiki page at the top for reference.

Possibly this should be rewritten into sh form but we'll see.

Original issue reported on code.google.com by [email protected] on 2 Feb 2009 at 5:15

Can't install corefonts.

What steps will reproduce the problem?
1. sh winetricks corefonts

What is the expected output? What do you see instead?

Executing cabextract -q
--directory=/home/konsumer/.wine/drive_c/winetrickstmp
/home/konsumer/.winetrickscache/arial32.exe
/home/konsumer/.winetrickscache/arial32.exe: library not compiled to
support large files.

Executing cp -f /home/konsumer/.wine/drive_c/winetrickstmp/Arial.TTF
/home/konsumer/.wine/drive_c/winetrickstmp/Arialbd.TTF
/home/konsumer/.wine/drive_c/winetrickstmp/Arialbi.TTF
/home/konsumer/.wine/drive_c/winetrickstmp/Ariali.TTF
/home/konsumer/.wine/drive_c/windows/Fonts
cp: target `/home/konsumer/.wine/drive_c/windows/Fonts' is not a directory

What version of the product are you using? On what operating system?
linux, ubuntu 9.04, 

winetricks: 20090607
cabextract: 1.2

Original issue reported on code.google.com by [email protected] on 5 Jul 2009 at 1:56

export statement fails on Solaris

What steps will reproduce the problem?
1. Running winetricks under SunOS 5.11 (SXDE snv_107)

What is the expected output? What do you see instead?
/export/home/me/Downloads/winetricks: todo=corefonts: ist kein Kennzeichner
(in german; something like "no identifier" in english I expect)


What version of the product are you using? On what operating system?
$ sh Downloads/winetricks -V                      
Winetricks version 20090121.  (C) Dan Kegel.  LGPL.

$ uname -a                                        
SunOS tobi 5.11 snv_107 i86pc i386 i86pc


Please provide any additional information below.
The SunOS shell cannot process the 'export var="value"' statement in the
dogui() function. My simple solution is to write it in two lines.

Diff appended.

Tobias Sarnowski

Original issue reported on code.google.com by hg%[email protected] on 5 Feb 2009 at 4:55

Attachments:

winetricks fails to move iexplore.exe on ie6 install

What steps will reproduce the problem?
1. Create a pristine wine prefix
2. Call winetricks ie6
3. Notice mv error message

What is the expected output? What do you see instead?

No output expected, mv should just move the file.
Instead, I get an error message like:
mv: cannot stat
`/home/kai/.wine-testie6/drive_c//home/kai/.wine-testie6/dosdevices/c:/Program
Files/Internet Explorer/iexplore.exe': No such file or directory

What version of the product are you using? On what operating system?

20090322, on a Linux system.

Please provide any additional information below.

The error is the wrong use of programfilesdir_unix in the load_ie6()
function. See attached patch fixing this issue.

Original issue reported on code.google.com by [email protected] on 24 May 2009 at 7:40

Attachments:

App: Firefox 3.5

Firefox 3.5 has been out for a while now. Can we please get it as an option
along side Firefox 3.0?

Original issue reported on code.google.com by [email protected] on 24 Jul 2009 at 3:53

DirectX9 Crashes

What steps will reproduce the problem?
1. sudo su
2. sh winetricks directx9
3.

What is the expected output? 
DirectX9 installs

What do you see instead?

lloydsev@lloydsev-desktop:~$ sh winetricks directx9
Executing wget -nd -c --read-timeout=300 --retry-connrefused --header
Accept-Encoding: gzip,deflate
http://download.microsoft.com/download/c/1/f/c1fb09b0-8a8b-45ba-8bb0-64f60bd2317
5/directx_jun2008_redist.exe
--2008-12-06 21:27:11-- 
http://download.microsoft.com/download/c/1/f/c1fb09b0-8a8b-45ba-8bb0-64f60bd2317
5/directx_jun2008_redist.exe
Resolving download.microsoft.com... 65.54.81.8, 65.54.81.199
Connecting to download.microsoft.com|65.54.81.8|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 78559776 (75M) [application/octet-stream]
directx_jun2008_redist.exe: Permission denied

Cannot write to `directx_jun2008_redist.exe' (Permission denied).
Note: command 'wget -nd -c --read-timeout=300 --retry-connrefused --header
Accept-Encoding: gzip,deflate
http://download.microsoft.com/download/c/1/f/c1fb09b0-8a8b-45ba-8bb0-64f60bd2317
5/directx_jun2008_redist.exe'
returned status 1.  Aborting.
lloydsev@lloydsev-desktop:~$ sudo su
[sudo] password for lloydsev: 
root@lloydsev-desktop:/home/lloydsev# sh winetricks directx9
fixme:advapi:SetEntriesInAclA 1 0x33d748 (nil) 0x33d780
fixme:advapi:SetSecurityInfo stub
fixme:advapi:SetEntriesInAclA 1 0x33d714 (nil) 0x33d75c
fixme:advapi:SetSecurityInfo stub
fixme:iphlpapi:NotifyAddrChange (Handle 0x7d22b9f8, overlapped 0x7d22b9dc):
stub
fixme:shell:DllCanUnloadNow stub
fixme:shell:DllCanUnloadNow stub
err:setupapi:create_fake_dll failed to create
L"C:\\windows\\system32\\quartz.dll" (error=80)
wine: configuration in '/root/.wine' has been updated.
Setting Windows version to win2k
Executing wine regedit /root/.wine/drive_c/winetrickstmp/set-winver.reg
Executing wine /root/.winetrickscache/directx_jun2008_redist.exe
/t:c:\winetrickstmp
fixme:advapi:DecryptFileA "c:\\winetrickstmp\\" 00000000
Using native override for following DLLs: d3dim d3drm d3dx8 d3dx9_24
d3dx9_25 d3dx9_26 d3dx9_27 d3dx9_28 d3dx9_29
Executing wine regedit /root/.wine/drive_c/winetrickstmp/override-dll.reg
Using native override for following DLLs: d3dx9_30 d3dx9_31 d3dx9_32
d3dx9_33 d3dx9_34 d3dx9_35 d3dx9_36 d3dxof
Executing wine regedit /root/.wine/drive_c/winetrickstmp/override-dll.reg
Using native override for following DLLs: dciman32 ddrawex devenum dmband
dmcompos dmime dmloader dmscript dmstyle
Executing wine regedit /root/.wine/drive_c/winetrickstmp/override-dll.reg
Using native override for following DLLs: dmsynth dmusic dmusic32 dnsapi
dplay dplayx dpnaddr dpnet dpnhpast dpnlobby
Executing wine regedit /root/.wine/drive_c/winetrickstmp/override-dll.reg
Using native override for following DLLs: dswave dxdiagn mscoree msdmo qcap
quartz streamci
Executing wine regedit /root/.wine/drive_c/winetrickstmp/override-dll.reg
Using builtin override for following DLLs: d3d8 d3d9 dinput dinput8 dsound
Executing wine regedit /root/.wine/drive_c/winetrickstmp/override-dll.reg
Executing wine c:\winetrickstmp/DXSETUP.exe
Note: command 'wine c:\winetrickstmp/DXSETUP.exe' returned status 3.  Aborting.
root@lloydsev-desktop:/home/lloydsev# 

What version of the product are you using? On what operating system?
Wine 1.1.10 on Ubuntu 8.10

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 7 Dec 2008 at 2:30

flash installation fail due to wrong url

What steps will reproduce the problem?
1. startwinetricks
2. select flash
3. watch the error message

What is the expected output? What do you see instead?
Install flash player.

$ winetricks flash
Executing wget -nd -c --read-timeout=300 --retry-connrefused --header
Accept-Encoding: gzip,deflate
http://fpdownload.macromedia.com/get/flashplayer/current/licensing/win/install_f
lash_player_active_x.msi
--20:02:58-- 
http://fpdownload.macromedia.com/get/flashplayer/current/licensing/win/install_f
lash_player_active_x.msi
           => `install_flash_player_active_x.msi'
Risoluzione di fpdownload.macromedia.com in corso... 88.221.30.70
Connessione a fpdownload.macromedia.com|88.221.30.70:80... connesso.
HTTP richiesta inviata, aspetto la risposta... 404 Not Found
20:02:59 ERRORE 404: Not Found.

Note: command 'wget -nd -c --read-timeout=300 --retry-connrefused --header
Accept-Encoding: gzip,deflate
http://fpdownload.macromedia.com/get/flashplayer/current/licensing/win/install_f
lash_player_active_x.msi'
returned status 1.  Aborting.

What version of the product are you using? On what operating system?
Winetricks version 20081012.  (C) Dan Kegel.  LGPL.
ubuntu hardy heron

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 7 Nov 2008 at 7:04

patchwatcher: Doesn't attempt to compile code for new libraries

My patch adds numerous new folders to the dll/ directory in wine, however
patchwatcher doesn't attempt to build them.

My patch: http://kegel.com/wine/patchwatcher/results/3795.log

If you look at the list of makefiles generated by configure you will notice
mine are being ignored.

To make patchwatcher function correctly you need to add them to git (use
"git add .") then call ./tools/make_makefiles

If you call make_makefiles without adding the files to git the new
configure.ac won't include the new code.

Afterwards just do a hard reset on git to clean up anything you have added.

Original issue reported on code.google.com by [email protected] on 31 Oct 2008 at 10:52

winetricks doesn't install msxml3 , 4 or 6

What steps will reproduce the problem?
1. Installing MS XML version 3,4 or 6 ($winetricks msxml3 msxml4 msxml6)
2. It downloads everything
3. Fails on install - Invalid command line arguments

What is the expected output? What do you see instead?
Xml installed. Invalid command line arguments notification popup.

What version of the product are you using? On what operating system?
Winetricks version 20081201 on Ubuntu 8.10 and wine 1.1.10

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 22 Dec 2008 at 1:55

installing directx9 on ubunto 8.10

What steps will reproduce the problem?
1. installing directx9 
2.
3.

What is the expected output? What do you see instead?
I have obtained the error message.
command 'wine c:\winetrickstmp/DXSETUP.exe' returned status 247. Aborting

What version of the product are you using? On what operating system?
Ubuntu 8.10
winetricks version 20081223

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 10 Jan 2009 at 10:02

running winetricks as root messes up permissions

1. Create a new user.
2. Run "sudo winetricks corefonts".

A ~/.winetrickscache directory is created that is owned by root.

I just talked to someone on #winehq who did this.

Presumably winetricks should have an ownership test similar to wine.

Original issue reported on code.google.com by [email protected] on 30 Mar 2009 at 10:47

nothing works at all

 sh winetricks fakeie6
err:module:DelayLoadFailureHook failed to delay load ole32.dll.CoTaskMemAlloc
wine: Call from 0x7b845450 to unimplemented function
ole32.dll.CoTaskMemAlloc, aborting
err:module:attach_process_dlls "shell32.dll" failed to initialize, aborting
err:module:LdrInitializeThunk Main exe initialization for
L"C:\\windows\\system32\\cmd.exe" failed, status 80000100
wine cmd.exe /c echo '%ProgramFiles%' returned empty string

Original issue reported on code.google.com by [email protected] on 25 Feb 2009 at 1:11

request fot scrrun.dll and msscript.ocx



Actually this a request; to add a verb for scrrun.dll (included in AllToAvi)

http://sourceforge.net/project/downloading.php?groupname=alltoavi&filename=AllTo
AVI_v4_r5394_Setup.exe&use_mirror=kent

and MSSCRIPT.OCX

(included in dshield)

http://www.tucows.com/download.html?software_id=224022&t=2

I saw several users in wine-userlist run into trouble because of these
missing files

What is the expected output? What do you see instead?


What version of the product are you using? On what operating system?


Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 30 Nov 2008 at 12:04

fix tar/gtar for non-Linux systems

We use tar for several verbs, but it may not work as intended for all
systems (especially Solaris/BSD). Investigate those uses, and possibly make
a helper function.

Original issue reported on code.google.com by [email protected] on 1 Jun 2009 at 2:01

problem downloading binaries for verb "vc2003"

I've tried downloading
http://dl.sourceforge.net/bzflag/BZEditW32_1.6.5_Installer.exe , but the
connection timeouts here on my linux box.

I propose another URL, which probably could be "optimized" even more:
http://switch.dl.sourceforge.net/sourceforge/bzflag/BZEditW32_1.6.5_Installer.ex
e

Original issue reported on code.google.com by [email protected] on 11 May 2008 at 3:19

winetricks: GUI fails on PC-BSD; "unable to find any iso8859 fonts"

What steps will reproduce the problem?
1. I run bash ./winetricks from the terminal (it does the same thing with
sh too) on my desktop

What is the expected output? What do you see instead?
Apparently I'm supposed to get some sort of gui window, but the console
spits out that it is unable to find any iso8859 fonts and promptly quits
w/o any other errors.

What version of the product are you using? On what operating system?
I'm using pc-bsd 7.1, wine version is 1.1.20

Please provide any additional information below.
I tried searching for this issue, it seems like nobody else has ever had
this issue. Thanks!

Original issue reported on code.google.com by [email protected] on 29 May 2009 at 2:30

PGP signature for winetricks?

winetricks is great, it has been very handy for me recently.

But... please consider publishing a PGP signature for it.

With the script available only for (non-SSL) http download, and packaged by
few distributions (their loss), it's hard to verify a copy or new version
any way other than reading line-by-line.  While I might trust you (Dan
Kegel) enough to run what you say is worth running, I don't want to have to
trust my ISP, your ISP, the DNS infrastructure, etc.  A PGP signature would
make it possible to be sure the bits I downloaded are the ones you published.

Original issue reported on code.google.com by [email protected] on 10 Sep 2008 at 5:38

IE6 BIDI does not work

What steps will reproduce the problem?

On utf8 system with he_IL.UTF-8 installed
winetricks allfonts ie6
LANG=he_IL.UTF-8 LC_ALL=he_IL.UTF-8 wine "c:/Program Files/Internet
Explorer/iexplore.exe" http://www.google.co.il

What is the expected output? What do you see instead?
Attached (BTW, there is no menu bar either...)

What version of the product are you using? On what operating system?
app-emulation/wine-1.1.17
Winetricks-20090227

Please provide any additional information below.

When installing:
fixme:ntdll:find_reg_tz_info Can't find matching timezone information in
the registry for bias -120, std (d/m/y): 27/09/2009, dlt (d/m/y):
27/03/2009                                                       
winetricks: line 981:  8672 Segmentation fault      $WINE regsvr32 /i $i >
/dev/null 2>&1             
winetricks: line 981:  8738 Segmentation fault      $WINE regsvr32 /i $i >
/dev/null 2>&1             
winetricks: line 981:  8764 Segmentation fault      $WINE regsvr32 /i $i >
/dev/null 2>&1             
winetricks: line 981:  8782 Segmentation fault      $WINE regsvr32 /i $i >
/dev/null 2>&1             
winetricks: line 981:  8823 Segmentation fault      $WINE regsvr32 /i $i >
/dev/null 2>&1             
^Cwinetricks: line 981:  8853 Segmentation fault      $WINE regsvr32 /i $i
> /dev/null 2>&1           
winetricks: line 981:  8872 Segmentation fault      $WINE regsvr32 /i $i >
/dev/null 2>&1             
winetricks: line 981:  8883 Segmentation fault      $WINE regsvr32 /i $i >
/dev/null 2>&1             
winetricks: line 981:  8885 Segmentation fault      $WINE regsvr32 /i $i >
/dev/null 2>&1             
winetricks: line 981:  8905 Segmentation fault      $WINE regsvr32 /i $i >
/dev/null 2>&1             
winetricks: line 981:  8936 Segmentation fault      $WINE regsvr32 /i $i >
/dev/null 2>&1             

And:
ies4linux works correctly, but long unmaintained.

Thanks!

Original issue reported on code.google.com by [email protected] on 19 Mar 2009 at 7:25

Attachments:

winetricks: DirectX November 2008 on Ubuntu 8.10 Wine 1.1.16

What steps will reproduce the problem?
1. sh winetricks directx
2.
3.

What is the expected output? What do you see instead?

Install fails with an error. DXError.log contains:
--------------------

[03/10/09 16:24:58] module: dsetup32(Dec  8 2006), file: instcat.cpp, line:
42, function: LoadSfcDLL



    Failed API:     GetProcAddress()

    Error:      (127) - Procedure not found





    Module: sfc.dll



--------------------

[03/10/09 16:25:01] module: dxdllreg(Dec  8 2006), file: service.cpp, line:
349, function: DXDllRegisterPatch



    Failed API:     RegOpenKeyEx()

    Error:      (2) - File not found





    Unable to open RUN key.



--------------------

[03/10/09 16:25:01] module: dxdllreg(Dec  8 2006), file: dxdllreg.cpp,
line: 323, function: WinMain



    DXDllRegisterPatch() failed.





What version of the product are you using? On what operating system?
Ubuntu 8.10 Wine 1.1.16

Please provide any additional information below.


Original issue reported on code.google.com by leithbade on 10 Mar 2009 at 8:57

One too many quotes in load_cc580() function...

What steps will reproduce the problem?
1. Uh, not sure, read below...

What is the expected output? What do you see instead?
Either something is wrong with Emacs, or you have one open-quote too many
in the load_cc580() function. I can't find it for the life of me, though.
The only way that I was able to fix the script was to comment

What version of the product are you using? On what operating system?
20090705 on Fedora 10, wine-1.1.24-2.fc10.1.i386 (rawhide)

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 6 Jul 2009 at 5:10

winetricks fails on Solaris Express

What steps will reproduce the problem?
1. Find a computer where /bin/sh is actual Bourne sh or similar
2. Run winetricks

What is the expected output? What do you see instead?
The zenity dialog should open; instead, the output is:
winetricks: cannot shift
winetricks: : cannot execute
winetricks: todo=: is not an identifier

The included patch fixes that problem (unsure if there are issues elsewhere).

What version of the product are you using? On what operating system?
This is tested with the current release as of this posting, on Solaris Express.

Original issue reported on code.google.com by triskelios on 23 Mar 2008 at 9:06

Attachments:

winetricks can't install gecko

What steps will reproduce the problem?
1.I use the winetricks to install gecko, but failed,saying that Winetricks
error:Note:command'cabextract
/home/user/.winetrickscache/wine_gecko_0.9.0.cab'return status 1.Aborting.



What version of the product are you using? On what operating system?
I am using Ubuntu 8.10 and wine 1.1.14




Original issue reported on code.google.com by [email protected] on 6 Feb 2009 at 12:55

Sha1sum for download with winetricks.

What steps will reproduce the problem?
1. sh winetricks corefonts flash
2. This problem I have with any of winetrick's files.
3.

What is the expected output? What do you see instead?
ja@ubuntu:~$ sh winetricks corefonts flash
Executing wget -nd -c --read-timeout=300 --retry-connrefused --header
Accept-Encoding: gzip,deflate
http://easynews.dl.sourceforge.net/sourceforge/corefonts/arial32.exe
--2009-03-02 15:13:04-- 
http://easynews.dl.sourceforge.net/sourceforge/corefonts/arial32.exe
Translacja easynews.dl.sourceforge.net... 69.16.168.245
Łączenie się z easynews.dl.sourceforge.net|69.16.168.245|:80... połączono.
Żądanie HTTP wysłano, oczekiwanie na odpowiedź... 200 OK
Długość: nieznana [application/octet-stream]
Zapis do: `arial32.exe'

    [    <=>                                         ] 514.314     25,8K/s
  w 27s

2009-03-02 15:13:34 (18,7 KB/s) - zapisano `arial32.exe' [514314]

sha1sum mismatch! Rename /home/ja/.winetrickscache/./arial32.exe and try again.


What version of the product are you using? On what operating system?
Kubuntu 8.10 Intrepid
wine-core-1.1.12-1.fc10.i386

Original issue reported on code.google.com by [email protected] on 2 Mar 2009 at 2:43

dotnet20 fail

What steps will reproduce the problem?
1. winetricks dotnet20

What is the expected output? What do you see instead?

Executing wine /home/xxxx/.winetrickscache/dotnet20/dotnetfx.exe
fixme:advapi:DecryptFileA "C:\\windows\\temp\\IXP001.TMP\\" 00000000
fixme:actctx:parse_depend_manifests Could not find dependent assembly
L"Microsoft.Windows.Common-Controls"


What version of the product are you using? On what operating system?
Latest wine, fedora 9

Original issue reported on code.google.com by [email protected] on 28 Aug 2008 at 4:47

Crash on directx9 install

wine crashes when trying to install directx9 with winetricks:

noname:~ markus$ sh winetricks directx9
Setting Windows version to win2k
Executing wine regedit /Users/markus/.wine/drive_c/winetrickstmp/set-winver.reg
Executing wine /Users/markus/.winetrickscache/directx_jun2008_redist.exe 
/t:c:\winetrickstmp
fixme:advapi:DecryptFileA "c:\\winetrickstmp\\" 00000000
Using native override for following DLLs: d3dim d3drm d3dx8 d3dx9_24 d3dx9_25 
d3dx9_26 
d3dx9_27 d3dx9_28 d3dx9_29
Executing wine regedit 
/Users/markus/.wine/drive_c/winetrickstmp/override-dll.reg
Using native override for following DLLs: d3dx9_30 d3dx9_31 d3dx9_32 d3dx9_33 
d3dx9_34 
d3dx9_35 d3dx9_36 d3dxof
Executing wine regedit 
/Users/markus/.wine/drive_c/winetrickstmp/override-dll.reg
Using native override for following DLLs: dciman32 ddrawex devenum dmband 
dmcompos 
dmime dmloader dmscript dmstyle
Executing wine regedit 
/Users/markus/.wine/drive_c/winetrickstmp/override-dll.reg
Using native override for following DLLs: dmsynth dmusic dmusic32 dnsapi dplay 
dplayx 
dpnaddr dpnet dpnhpast dpnlobby
Executing wine regedit 
/Users/markus/.wine/drive_c/winetrickstmp/override-dll.reg
Using native override for following DLLs: dswave dxdiagn mscoree msdmo qcap 
quartz streamci
Executing wine regedit 
/Users/markus/.wine/drive_c/winetrickstmp/override-dll.reg
Using builtin override for following DLLs: d3d8 d3d9 dinput dinput8 dsound
Executing wine regedit 
/Users/markus/.wine/drive_c/winetrickstmp/override-dll.reg
Executing wine c:\winetrickstmp/DXSETUP.exe
err:ntdll:RtlpWaitForCriticalSection section 0x7bc88304 "loader.c: 
loader_section" wait timed out 
in thread 0030, blocked by 002f, retrying (60 sec)
wine: Unhandled page fault on read access to 0x312e3932 at address 0xffff07c2 
(thread 0033), 
starting debugger...
Unhandled exception: page fault on read access to 0x312e3932 in 32-bit code 
(0xffff07c2).
Register dump:
 CS:0017 SS:001f DS:001f ES:001f FS:114f GS:0037
 EIP:ffff07c2 ESP:62832604 EBP:6283260c EFLAGS:00010206(   - 00      - RIP1)
 EAX:ffff07a0 EBX:00000018 ECX:00000006 EDX:00000018
 ESI:312e3932 EDI:01090028
Stack dump:
0x62832604:  01090028 312e3932 6283262c ffff1222
0x62832614:  01090028 312e3932 00000018 62a7cbf8
0x62832624:  01090028 312e3932 62832648 ffff086e
0x62832634:  01090028 312e3932 2e352e32 00158588
0x62832644:  00000014 62832678 62aacc5f 01090028
0x62832654:  312e3932 2e352e32 62a94072 6283274c
0229: sel=114f base=7ded0000 limit=0000ffff 32-bit rw-
Backtrace:
=>1 0xffff07c2 (0x6283260c)
  2 0xffff1222 (0x6283262c)
  3 0xffff086e (0x62832648)
  4 0x62aacc5f (0x62832678)
  5 0x62a7d0f6 in crypt32 (+0xd0f6) (0x628326f8)
  6 0x62a7cb18 in crypt32 (+0xcb18) (0x62832778)
  7 0x62a7e456 (0x628327e8)
  8 0x62a7f2ec (0x62832838)
  9 0x62a7b4f3 in crypt32 (+0xb4f3) (0x628328a8)
  10 0x62a80831 (0x62832928)
  11 0x62a808e8 (0x62832978)
  12 0x62a83182 (0x62832ab8)
  13 0x62a4c9ef (0x62832b28)
  14 0x62a4e5d3 (0x62832ba8)
  15 0x62a4e8f8 (0x62832be8)
  16 0x62a50328 (0x62832c78)
  17 0x62a504eb (0x62832cd8)
  18 0x62a5149b (0x62832db8)
  19 0x007c56bf in dsetup32 (+0x156bf) (0x62833040)
  20 0x007bd1f8 in dsetup32 (+0xd1f8) (0x62833174)
  21 0x007bd483 in dsetup32 (+0xd483) (0x628333a0)
  22 0x007c91fe in dsetup32 (+0x191fe) (0x628335e0)
  23 0x006850de in dsetup (+0x50de) (0x62833600)
  24 0x010054af in dxsetup (+0x54af) (0x62833618)
  25 0x7bc61c2e (0x62833628)
  26 0x7bc6240d (0x628336c8)
  27 0x7bc62614 (0x62833f78)
  28 0x9162a6f5 (0x62833fc8)
  29 0x9162a5b2 (0x62833fec)
0xffff07c2: movl    0x0(%esi),%eax
Modules:
Module  Address         Debug info  Name (17 modules)
PE    680000-  69a000   Export          dsetup
PE    7b0000-  950000   Export          dsetup32
PE   1000000- 1082000   Export          dxsetup
PE  60170000-60174000   Deferred        advapi32
PE  601e0000-601e4000   Deferred        version
PE  60310000-60314000   Deferred        gdi32
PE  603e0000-603f5000   Deferred        user32
PE  60590000-605a2000   Deferred        comctl32
PE  61f00000-61f4d000   Deferred        winmm
PE  62520000-62524000   Deferred        ole32
PE  626b0000-626b4000   Deferred        rpcrt4
PE  62840000-62846000   Deferred        shlwapi
PE  628d0000-6294f000   Deferred        shell32
PE  62a70000-62a7e000   Export          crypt32
PE  62b00000-62b04000   Deferred        rsaenh
PE  7b810000-7b889000   Deferred        kernel32
PE  7bc10000-7bc14000   Deferred        ntdll
Threads:
process  tid      prio (all id:s are in hex)
0000000c 
    00000014    0
    00000013    0
    00000012    0
    0000000e    0
    0000000d    0
0000000f 
    00000016    0
    00000015    0
    00000011    0
    00000010    0
0000002e (D) C:\winetrickstmp\DXSETUP.exe
    00000033    0 <==
    00000030    0
    0000002f    0
00000031 
    00000032    0
Backtrace:
=>1 0xffff07c2 (0x6283260c)
  2 0xffff1222 (0x6283262c)
  3 0xffff086e (0x62832648)
  4 0x62aacc5f (0x62832678)
  5 0x62a7d0f6 in crypt32 (+0xd0f6) (0x628326f8)
  6 0x62a7cb18 in crypt32 (+0xcb18) (0x62832778)
  7 0x62a7e456 (0x628327e8)
  8 0x62a7f2ec (0x62832838)
  9 0x62a7b4f3 in crypt32 (+0xb4f3) (0x628328a8)
  10 0x62a80831 (0x62832928)
  11 0x62a808e8 (0x62832978)
  12 0x62a83182 (0x62832ab8)
  13 0x62a4c9ef (0x62832b28)
  14 0x62a4e5d3 (0x62832ba8)
  15 0x62a4e8f8 (0x62832be8)
  16 0x62a50328 (0x62832c78)
  17 0x62a504eb (0x62832cd8)
  18 0x62a5149b (0x62832db8)
  19 0x007c56bf in dsetup32 (+0x156bf) (0x62833040)
  20 0x007bd1f8 in dsetup32 (+0xd1f8) (0x62833174)
  21 0x007bd483 in dsetup32 (+0xd483) (0x628333a0)
  22 0x007c91fe in dsetup32 (+0x191fe) (0x628335e0)
  23 0x006850de in dsetup (+0x50de) (0x62833600)
  24 0x010054af in dxsetup (+0x54af) (0x62833618)
  25 0x7bc61c2e (0x62833628)
  26 0x7bc6240d (0x628336c8)
  27 0x7bc62614 (0x62833f78)
  28 0x9162a6f5 (0x62833fc8)
  29 0x9162a5b2 (0x62833fec)


This is wine 1.1.6 on Mac OS X 10.5.5 Intel

Original issue reported on code.google.com by tisoftmedia on 24 Oct 2008 at 5:10

dotnet20 requires Microsoft Installer 3.0

What steps will reproduce the problem?
1. sh winetricks dotnet20

2. ask for install Microsoft Installer 3.0 
3.

What is the expected output? What do you see instead?
winetricks have a installer of msi3 ? 

What version of the product are you using? On what operating system?
Fedora 10 
wine-core-1.1.12-1.fc10.i386

Please provide any additional information below.

I 'd like know install Microsoft Installer 3.0 for other proposes also 

Original issue reported on code.google.com by [email protected] on 16 Feb 2009 at 11:07

liberation fonts URL outdated

What steps will reproduce the problem?
1. Find a computer where /bin/bash is actual Bourne Again Shell or similar
2. Run winetricks allfonts



What is the expected output? What do you see instead?
**Expected Output**
Executing cabextract -q --directory=/home/zied/.wine/drive_c/winetrickstmp
/home/zied/.winetrickscache/arial32.exe
Executing cp -f /home/zied/.wine/drive_c/winetrickstmp/Arialbd.TTF
/home/zied/.wine/drive_c/winetrickstmp/Arialbi.TTF
/home/zied/.wine/drive_c/winetrickstmp/Ariali.TTF
/home/zied/.wine/drive_c/winetrickstmp/Arial.TTF
/home/zied/.wine/drive_c/windows/fonts
Executing cabextract -q --directory=/home/zied/.wine/drive_c/winetrickstmp
/home/zied/.winetrickscache/arialb32.exe
Executing cp -f /home/zied/.wine/drive_c/winetrickstmp/AriBlk.TTF
/home/zied/.wine/drive_c/windows/fonts
Executing cabextract -q --directory=/home/zied/.wine/drive_c/winetrickstmp
/home/zied/.winetrickscache/comic32.exe
Executing cp -f /home/zied/.wine/drive_c/winetrickstmp/Comicbd.TTF
/home/zied/.wine/drive_c/winetrickstmp/Comic.TTF
/home/zied/.wine/drive_c/windows/fonts
Executing cabextract -q --directory=/home/zied/.wine/drive_c/winetrickstmp
/home/zied/.winetrickscache/courie32.exe
Executing cp -f /home/zied/.wine/drive_c/winetrickstmp/courbd.ttf
/home/zied/.wine/drive_c/winetrickstmp/courbi.ttf
/home/zied/.wine/drive_c/winetrickstmp/couri.ttf
/home/zied/.wine/drive_c/winetrickstmp/cour.ttf
/home/zied/.wine/drive_c/windows/fonts
Executing cabextract -q --directory=/home/zied/.wine/drive_c/winetrickstmp
/home/zied/.winetrickscache/georgi32.exe
Executing cp -f /home/zied/.wine/drive_c/winetrickstmp/Georgiab.TTF
/home/zied/.wine/drive_c/winetrickstmp/Georgiai.TTF
/home/zied/.wine/drive_c/winetrickstmp/Georgia.TTF
/home/zied/.wine/drive_c/winetrickstmp/Georgiaz.TTF
/home/zied/.wine/drive_c/windows/fonts
/usr/bin/winetricks: line 551: /bin/bash:: Aucun fichier ou répertoire de
ce type
Executing cabextract -q --directory=/home/zied/.wine/drive_c/winetrickstmp
/home/zied/.winetrickscache/impact32.exe
Executing cp -f /home/zied/.wine/drive_c/winetrickstmp/Impact.TTF
/home/zied/.wine/drive_c/windows/fonts
Executing cabextract -q --directory=/home/zied/.wine/drive_c/winetrickstmp
/home/zied/.winetrickscache/times32.exe
Executing cp -f /home/zied/.wine/drive_c/winetrickstmp/Timesbd.TTF
/home/zied/.wine/drive_c/winetrickstmp/Timesbi.TTF
/home/zied/.wine/drive_c/winetrickstmp/Timesi.TTF
/home/zied/.wine/drive_c/winetrickstmp/Times.TTF
/home/zied/.wine/drive_c/windows/fonts
Executing cabextract -q --directory=/home/zied/.wine/drive_c/winetrickstmp
/home/zied/.winetrickscache/trebuc32.exe
Executing cp -f /home/zied/.wine/drive_c/winetrickstmp/trebucbi.ttf
/home/zied/.wine/drive_c/winetrickstmp/trebucit.ttf
/home/zied/.wine/drive_c/winetrickstmp/trebuc.ttf
/home/zied/.wine/drive_c/windows/fonts
Executing cabextract -q --directory=/home/zied/.wine/drive_c/winetrickstmp
/home/zied/.winetrickscache/verdan32.exe
Executing cp -f /home/zied/.wine/drive_c/winetrickstmp/Verdanab.TTF
/home/zied/.wine/drive_c/winetrickstmp/Verdanai.TTF
/home/zied/.wine/drive_c/winetrickstmp/Verdana.TTF
/home/zied/.wine/drive_c/winetrickstmp/Verdanaz.TTF
/home/zied/.wine/drive_c/windows/fonts
Executing cabextract -q --directory=/home/zied/.wine/drive_c/winetrickstmp
/home/zied/.winetrickscache/webdin32.exe
Executing cp -f /home/zied/.wine/drive_c/winetrickstmp/Webdings.TTF
/home/zied/.wine/drive_c/windows/fonts
Executing cabextract --directory=/home/zied/.wine/drive_c/winetrickstmp
/home/zied/.winetrickscache/wd97vwr32.exe
Extracting cabinet: /home/zied/.winetrickscache/wd97vwr32.exe
  extracting /home/zied/.wine/drive_c/winetrickstmp/wviewer.INF
  extracting /home/zied/.wine/drive_c/winetrickstmp/License.txt
  extracting /home/zied/.wine/drive_c/winetrickstmp/setup.exe
  extracting /home/zied/.wine/drive_c/winetrickstmp/Setup.ini
  extracting /home/zied/.wine/drive_c/winetrickstmp/setup.lst
  extracting /home/zied/.wine/drive_c/winetrickstmp/Viewer1.cab
  extracting /home/zied/.wine/drive_c/winetrickstmp/Setup.tdf

All done, no errors.
Executing cabextract --directory=/home/zied/.wine/drive_c/winetrickstmp
/home/zied/.wine/drive_c/winetrickstmp/Viewer1.cab
Extracting cabinet: /home/zied/.wine/drive_c/winetrickstmp/Viewer1.cab
  extracting /home/zied/.wine/drive_c/winetrickstmp/ACMSETUP.EXE
  extracting /home/zied/.wine/drive_c/winetrickstmp/ACMSETUP.HLP
  extracting /home/zied/.wine/drive_c/winetrickstmp/MSSETUP.DLL
  extracting /home/zied/.wine/drive_c/winetrickstmp/viewer.DLL
  extracting /home/zied/.wine/drive_c/winetrickstmp/acmereg.DLL
  extracting /home/zied/.wine/drive_c/winetrickstmp/wviewer.stf
  extracting /home/zied/.wine/drive_c/winetrickstmp/hlink.dll
  extracting /home/zied/.wine/drive_c/winetrickstmp/hlinkprx.dll
  extracting /home/zied/.wine/drive_c/winetrickstmp/docobj.dll
  extracting /home/zied/.wine/drive_c/winetrickstmp/msv7enu.dll
  extracting /home/zied/.wine/drive_c/winetrickstmp/mso97v.dll
  extracting /home/zied/.wine/drive_c/winetrickstmp/msorfs.dll
  extracting /home/zied/.wine/drive_c/winetrickstmp/readme.doc
  extracting /home/zied/.wine/drive_c/winetrickstmp/t2embed.dll
  extracting /home/zied/.wine/drive_c/winetrickstmp/urlmon.dll
  extracting /home/zied/.wine/drive_c/winetrickstmp/riched20.dll
  extracting /home/zied/.wine/drive_c/winetrickstmp/wininet.dll
  extracting /home/zied/.wine/drive_c/winetrickstmp/wordview.exe
  extracting /home/zied/.wine/drive_c/winetrickstmp/wwint32v.dll
  extracting /home/zied/.wine/drive_c/winetrickstmp/tahoma.ttf
  extracting /home/zied/.wine/drive_c/winetrickstmp/install.txt
  extracting /home/zied/.wine/drive_c/winetrickstmp/npdoc.dll
  extracting /home/zied/.wine/drive_c/winetrickstmp/oleplug.dll
  extracting /home/zied/.wine/drive_c/winetrickstmp/oleplug.ini
  extracting /home/zied/.wine/drive_c/winetrickstmp/errormsg.dll

All done, no errors.
Executing cp -f /home/zied/.wine/drive_c/winetrickstmp/tahoma.ttf
/home/zied/.wi
Executing wget -nd -c --read-timeout=300 --retry-connrefused --header
Accept-Enc
--01:27:16--  http://www.freedink.org/misc/liberation-fonts-1.04.tar.gz
           => `liberation-fonts-1.04.tar.gz'
Résolution de www.freedink.org... 91.121.163.95
Connexion vers www.freedink.org|91.121.163.95|:80...connecté.
requête HTTP transmise, en attente de la réponse...200 OK
Longueur: 1,011,820 (988K) [application/x-gzip]

100%[====================================>] 1,011,820     44.26K/s    ETA
00:00=

01:27:54 (30.29 KB/s) - « liberation-fonts-1.04.tar.gz » sauvegardé
[1011820/101                                                              
              1820]

liberation-fonts-1.04/LiberationMono-Italic.ttf
liberation-fonts-1.04/LiberationSans-Italic.ttf
liberation-fonts-1.04/LiberationSerif-Regular.ttf
liberation-fonts-1.04/LiberationSerif-Bold.ttf
liberation-fonts-1.04/LiberationSerif-BoldItalic.ttf
liberation-fonts-1.04/LiberationMono-BoldItalic.ttf
liberation-fonts-1.04/LiberationSans-BoldItalic.ttf
liberation-fonts-1.04/LiberationSans-Bold.ttf
liberation-fonts-1.04/LiberationSerif-Italic.ttf
liberation-fonts-1.04/LiberationMono-Bold.ttf
liberation-fonts-1.04/LiberationSans-Regular.ttf
liberation-fonts-1.04/LiberationMono-Regular.ttf
Install of allfonts done
winetricks done.

**Instead the Output was**

Executing cabextract -q --directory=/home/zied/.wine/drive_c/winetrickstmp
/home
/zied/.winetrickscache/arial32.exe
Executing cp -f /home/zied/.wine/drive_c/winetrickstmp/Arialbd.TTF
/home/zied/.w
ine/drive_c/winetrickstmp/Arialbi.TTF
/home/zied/.wine/drive_c/winetrickstmp/Ari
ali.TTF /home/zied/.wine/drive_c/winetrickstmp/Arial.TTF
/home/zied/.wine/drive_
c/windows/fonts
Executing cabextract -q --directory=/home/zied/.wine/drive_c/winetrickstmp
/home
/zied/.winetrickscache/arialb32.exe
Executing cp -f /home/zied/.wine/drive_c/winetrickstmp/AriBlk.TTF
/home/zied/.wi
ne/drive_c/windows/fonts
Executing cabextract -q --directory=/home/zied/.wine/drive_c/winetrickstmp
/home
/zied/.winetrickscache/comic32.exe
Executing cp -f /home/zied/.wine/drive_c/winetrickstmp/Comicbd.TTF
/home/zied/.w
ine/drive_c/winetrickstmp/Comic.TTF /home/zied/.wine/drive_c/windows/fonts
Executing cabextract -q --directory=/home/zied/.wine/drive_c/winetrickstmp
/home
/zied/.winetrickscache/courie32.exe
Executing cp -f /home/zied/.wine/drive_c/winetrickstmp/courbd.ttf
/home/zied/.wi
ne/drive_c/winetrickstmp/courbi.ttf
/home/zied/.wine/drive_c/winetrickstmp/couri
.ttf /home/zied/.wine/drive_c/winetrickstmp/cour.ttf
/home/zied/.wine/drive_c/wi
ndows/fonts
Executing cabextract -q --directory=/home/zied/.wine/drive_c/winetrickstmp
/home
/zied/.winetrickscache/georgi32.exe
Executing cp -f /home/zied/.wine/drive_c/winetrickstmp/Georgiab.TTF
/home/zied/.
wine/drive_c/winetrickstmp/Georgiai.TTF
/home/zied/.wine/drive_c/winetrickstmp/G
eorgia.TTF /home/zied/.wine/drive_c/winetrickstmp/Georgiaz.TTF
/home/zied/.wine/
drive_c/windows/fonts
Executing cabextract -q --directory=/home/zied/.wine/drive_c/winetrickstmp
/home
/zied/.winetrickscache/impact32.exe
Executing cp -f /home/zied/.wine/drive_c/winetrickstmp/Impact.TTF
/home/zied/.wi
ne/drive_c/windows/fonts
Executing cabextract -q --directory=/home/zied/.wine/drive_c/winetrickstmp
/home
/zied/.winetrickscache/times32.exe
Executing cp -f /home/zied/.wine/drive_c/winetrickstmp/Timesbd.TTF
/home/zied/.w
ine/drive_c/winetrickstmp/Timesbi.TTF
/home/zied/.wine/drive_c/winetrickstmp/Tim
esi.TTF /home/zied/.wine/drive_c/winetrickstmp/Times.TTF
/home/zied/.wine/drive_
c/windows/fonts
Executing cabextract -q --directory=/home/zied/.wine/drive_c/winetrickstmp
/home
/zied/.winetrickscache/trebuc32.exe
Executing cp -f /home/zied/.wine/drive_c/winetrickstmp/trebucbi.ttf
/home/zied/.
wine/drive_c/winetrickstmp/trebucit.ttf
/home/zied/.wine/drive_c/winetrickstmp/t
rebuc.ttf /home/zied/.wine/drive_c/windows/fonts
Executing cabextract -q --directory=/home/zied/.wine/drive_c/winetrickstmp
/home
/zied/.winetrickscache/verdan32.exe
Executing cp -f /home/zied/.wine/drive_c/winetrickstmp/Verdanab.TTF
/home/zied/.
wine/drive_c/winetrickstmp/Verdanai.TTF
/home/zied/.wine/drive_c/winetrickstmp/V
erdana.TTF /home/zied/.wine/drive_c/winetrickstmp/Verdanaz.TTF
/home/zied/.wine/
drive_c/windows/fonts
Executing cabextract -q --directory=/home/zied/.wine/drive_c/winetrickstmp
/home
/zied/.winetrickscache/webdin32.exe
Executing cp -f /home/zied/.wine/drive_c/winetrickstmp/Webdings.TTF
/home/zied/.
wine/drive_c/windows/fonts
Executing cabextract --directory=/home/zied/.wine/drive_c/winetrickstmp
/home/zi
ed/.winetrickscache/wd97vwr32.exe
Extracting cabinet: /home/zied/.winetrickscache/wd97vwr32.exe
  extracting /home/zied/.wine/drive_c/winetrickstmp/wviewer.INF
  extracting /home/zied/.wine/drive_c/winetrickstmp/License.txt
  extracting /home/zied/.wine/drive_c/winetrickstmp/setup.exe
  extracting /home/zied/.wine/drive_c/winetrickstmp/Setup.ini
  extracting /home/zied/.wine/drive_c/winetrickstmp/setup.lst
  extracting /home/zied/.wine/drive_c/winetrickstmp/Viewer1.cab
  extracting /home/zied/.wine/drive_c/winetrickstmp/Setup.tdf

All done, no errors.
Executing cabextract --directory=/home/zied/.wine/drive_c/winetrickstmp
/home/zi                                                                  
          ed/.wine/drive_c/winetrickstmp/Viewer1.cab
Extracting cabinet: /home/zied/.wine/drive_c/winetrickstmp/Viewer1.cab
  extracting /home/zied/.wine/drive_c/winetrickstmp/ACMSETUP.EXE
  extracting /home/zied/.wine/drive_c/winetrickstmp/ACMSETUP.HLP
  extracting /home/zied/.wine/drive_c/winetrickstmp/MSSETUP.DLL
  extracting /home/zied/.wine/drive_c/winetrickstmp/viewer.DLL
  extracting /home/zied/.wine/drive_c/winetrickstmp/acmereg.DLL
  extracting /home/zied/.wine/drive_c/winetrickstmp/wviewer.stf
  extracting /home/zied/.wine/drive_c/winetrickstmp/hlink.dll
  extracting /home/zied/.wine/drive_c/winetrickstmp/hlinkprx.dll
  extracting /home/zied/.wine/drive_c/winetrickstmp/docobj.dll
  extracting /home/zied/.wine/drive_c/winetrickstmp/msv7enu.dll
  extracting /home/zied/.wine/drive_c/winetrickstmp/mso97v.dll
  extracting /home/zied/.wine/drive_c/winetrickstmp/msorfs.dll
  extracting /home/zied/.wine/drive_c/winetrickstmp/readme.doc
  extracting /home/zied/.wine/drive_c/winetrickstmp/t2embed.dll
  extracting /home/zied/.wine/drive_c/winetrickstmp/urlmon.dll
  extracting /home/zied/.wine/drive_c/winetrickstmp/riched20.dll
  extracting /home/zied/.wine/drive_c/winetrickstmp/wininet.dll
  extracting /home/zied/.wine/drive_c/winetrickstmp/wordview.exe
  extracting /home/zied/.wine/drive_c/winetrickstmp/wwint32v.dll
  extracting /home/zied/.wine/drive_c/winetrickstmp/tahoma.ttf
  extracting /home/zied/.wine/drive_c/winetrickstmp/install.txt
  extracting /home/zied/.wine/drive_c/winetrickstmp/npdoc.dll
  extracting /home/zied/.wine/drive_c/winetrickstmp/oleplug.dll
  extracting /home/zied/.wine/drive_c/winetrickstmp/oleplug.ini
  extracting /home/zied/.wine/drive_c/winetrickstmp/errormsg.dll

All done, no errors.
Executing cp -f /home/zied/.wine/drive_c/winetrickstmp/tahoma.ttf
/home/zied/.wine/drive_c/windows/fonts/tahoma.ttf
Executing wget -nd -c --read-timeout=300 --retry-connrefused --header
Accept-Encoding: gzip,deflate
https://fedorahosted.org/releases/l/i/liberation-fonts/liberation-fonts-1.04.tar
.gz
--01:15:01-- 
https://fedorahosted.org/releases/l/i/liberation-fonts/liberation-fonts-1.04.tar
.gz
           => `liberation-fonts-1.04.tar.gz'
Résolution de fedorahosted.org... 66.135.52.17
Connexion vers fedorahosted.org|66.135.52.17|:443...connecté.
requête HTTP transmise, en attente de la réponse...404 Not Found
01:15:02 ERREUR 404: Not Found.

Note: command 'wget -nd -c --read-timeout=300 --retry-connrefused --header
Accept-Encoding: gzip,deflate
https://fedorahosted.org/releases/l/i/liberation-fonts/liberation-fonts-1.04.tar
.gz'
returned status 1.  Aborting.


What version of the product are you using? On what operating system?
This is tested with the current release when as of this posting, on suse
linux 10.3 .

Please provide any additional information below.
Fix the problem with change le load_liberation() function with this:
load_liberation() {
    # http://www.redhat.com/promo/fonts/
    download . http://www.freedink.org/misc/liberation-fonts-1.04.tar.gz
097882c92e3260742a3dc3bf033792120d8635a3
    tar --strip 1 --wildcards -C "$winefontsdir" -xvzf
"$WINETRICKS_CACHE"/liberation-fonts-1.04.tar.gz '*.ttf'
}


Original issue reported on code.google.com by [email protected] on 4 Sep 2008 at 11:54

Attachments:

Flash

What steps will reproduce the problem?
1. Install and start winetricks as a normal user
2. Select the flash option and start installation

What is the expected output? What do you see instead?
Output is:
Winetricks error: sha1sum mismatch! Rename
/home/username/.winetrickscache/./install_flash_player_ax.exe and try again!

What version of the product are you using? On what operating system?
Winetricks version 20090117. (C) Dan Kegel. LGPL.
Arch Linux (Rolling release)

Please provide any additional information below.
I tried to delete and redownload the file wusing winetricks, same error
occurred.


Output:
Executing wget -nd -c --read-timeout=300 --retry-connrefused --header
Accept-Encoding: gzip,deflate
http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player_ax
.exe
--2009-03-09 15:48:03-- 
http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player_ax
.exe
Resolving fpdownload.macromedia.com... 88.221.186.70
Connecting to fpdownload.macromedia.com|88.221.186.70|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 1914000 (1.8M) [application/octet-stream]
Saving to: `install_flash_player_ax.exe'

100%[======================================>] 1,914,000   2.85M/s   in 0.6s    

2009-03-09 15:48:04 (2.85 MB/s) - `install_flash_player_ax.exe' saved
[1914000/1914000]

sha1sum mismatch!  Rename
/home/stefan/.winetrickscache/./install_flash_player_ax.exe and try again.

Original issue reported on code.google.com by [email protected] on 9 Mar 2009 at 2:49

times32.exe at wintricks installationtime

What steps will reproduce the problem?
1. installing winetricks (jan. 10. 2009)
2.
3.

What is the expected output? What do you see instead?


What version of the product are you using? On what operating system?


Please provide any additional information below.

"

--14:59:07--  
http://umn.dl.sourceforge.net/sourceforge/corefonts/times32.exe
  (try: 8) => `times32.exe'
Connecting to umn.dl.sourceforge.net|128.101.240.209|:80...
"

Original issue reported on code.google.com by [email protected] on 10 Jan 2009 at 2:04

Modify "wmp9" to disable services

What steps will reproduce the problem?
1. winetricks -q wmp9
2. winecfg 

What is the expected output? What do you see instead?
Wine used to silently ignore the unhandled exceptions caused by the
services created by WMP9, but as of 1.1.20 it pops up with a Program Error
dialog (added feature).
If the Winetricks script could be modified to disable these services, the
problem should go away.

What version of the product are you using? On what operating system?
Winetricks 20090227
Wine 1.1.20
Ubuntu 8.10

Please provide any additional information below.
http://bugs.winehq.org/show_bug.cgi?id=18202

Will update with relevant registry keys asap.

Original issue reported on code.google.com by [email protected] on 25 Apr 2009 at 12:48

Excessive use of "$programfilesdir_unix" in winetricks 20090227

What steps will reproduce the problem?
1. sh -x bin/winetricks ie6

What is the expected output? What do you see instead?
See:
mv '/srv/Wine/george/IE/drive_c//srv/Wine/george/IE/dosdevices/c:/Program
Files/Internet Explorer/iexplore.exe'
'/srv/Wine/george/IE/drive_c//srv/Wine/george/IE/dosdevices/c:/Program
Files/Internet Explorer/iexplore.exe.bak'
instead of:
mv '/srv/Wine/george/IE/dosdevices/c:/Program Files/Internet
Explorer/iexplore.exe' '/srv/Wine/george/IE/dosdevices/c:/Program
Files/Internet Explorer/iexplore.exe.bak'

What version of the product are you using? On what operating system?
winetricks 20090227 // wine@etersoft 1.1.21 // ALT Linux 5.x

Please provide any additional information below.
This happens because of using "$WINEPREFIX"/drive_c/"$programfilesdir_unix"
instead of "$programfilesdir_unix" at line 958 (under "# Remove the fake
dlls from the existing WINEPREFIX")

Original issue reported on code.google.com by [email protected] on 16 May 2009 at 1:21

%ProgramFiles%

$ wine cmd.exe /c echo "%ProgramFiles%"
%ProgramFiles%

please fix winetricks ;-)

Original issue reported on code.google.com by rion4ik on 6 May 2008 at 6:50

winetricks doesn't accept dirac0.8 option

What steps will reproduce the problem?
1. ./winetricks dirac0.8 

What is the expected output? What do you see instead?
According to the help text (./winetricks --help), winetricks should accept
dirac0.8.

 $ ./winetricks --help | grep dirac0.8
  dirac0.8      the obsolete Dirac 0.8 directshow filter

However, I got the following message:
 $ ./winetricks dirac0.8
 Unknown arg dirac0.8

What version of the product are you using? On what operating system?
Linux

Please provide any additional information below.
The attached file will fix this problem.

Original issue reported on code.google.com by [email protected] on 30 Nov 2008 at 10:10

Attachments:

winetricks "gui" not displaying correctly

What steps will reproduce the problem?
1. Open a Terminal
2. sudo winetricks


What is the expected output? What do you see instead?
I should get a list of the installable packages with check boxes and an ok
button but all I get is a "xmessage" labeled box with a grey area and many
buttons ordered horizontally.

What version of the product are you using? On what operating system?
trunk from today (had the problem with older ones too)
Ubuntu 8.10 amd64

Please provide any additional information below.
Oh, and while I'm already posting something here, I wanted to add, that it
would be great if winetricks could remember the installed packages and
automatically set a tick beside the installed ones (and unticking and then
clicking ok would deinstall it). Don't know if this is possible but I just
wanted to say, that that's something which is bugging me.

Original issue reported on code.google.com by [email protected] on 30 Mar 2009 at 6:13

Firefox fails after install winetricks

What steps will reproduce the problem?
1. Ubuntu 8.04
2.  2.6.24-19-generic #1 SMP Wed Aug 20 22:56:21 UTC 2008 i686 GNU/Linux
3. Winetricks version 20080825 

What is the expected output? What do you see instead?
Ran winetricks with no parameters. All other MS programs that I have
installed works. Firefox will not start up

What version of the product are you using? On what operating system?


Please provide any additional information below.
e-mail me with questions if needed

Original issue reported on code.google.com by [email protected] on 14 Sep 2008 at 1:49

set_winver winxp is better when installing DirectX 9 for Drakensang

What steps will reproduce the problem?
1. Install Drakensang+patch 1.02
2. winetricks directx9 xact


What is the expected output? What do you see instead?
Game should start instead it displays an error about some drivers for IBM
Thinkpad modem, but that isn't my hardware

What version of the product are you using? On what operating system?
winetricks (20090528), Fedora 10 (32bit) PAE kernel Wine-1.1.22

Please provide any additional information below.
change 
set_winver win2k
to
set_winver winxp
in load_directx9() function
then do
winetricks directx9
This solves the problem and the game runs. I can reproduce that every time.

Original issue reported on code.google.com by [email protected] on 4 Jun 2009 at 9:50

Winetricks fails to install to tahoma font to WINEPREFIX path that has spaces in it

What steps will reproduce the problem?
1. Install tahoma font into a WINEPREFIX directory that has spaces in the path

What is the expected output? What do you see instead?
Should install normally, instead fails by treating each piece of the path that 
has a space in 
between them as different paths.

What version of the product are you using? On what operating system?
Latest version and on Mac OS X which might be part of the issue.

Please provide any additional information below.
To fix the problem change this line:
try cabextract --directory="$WINETRICKS_TMP" $WINETRICKS_TMP/Viewer1.cab
to
try cabextract --directory="$WINETRICKS_TMP" "$WINETRICKS_TMP"/Viewer1.cab


Original issue reported on code.google.com by [email protected] on 9 Oct 2008 at 12:12

winetricks fail's to install anything

What steps will reproduce the problem?
1. sh winetricks
2. gecko (for example)
3.

What is the expected output? What do you see instead?
Cannot write to `wine_gecko-0.1.0.cab' (Permission denied).
Note: command 'wget -nd -c --read-timeout=300 --retry-connrefused --header 
Accept-Encoding: gzip,deflate http://source.winehq.org/winegecko.php?
v=0.1.0' returned status 1.  Aborting.

And I get it on any package

What version of the product are you using? On what operating system?
wine-1.1.7 Kubuntu 8.04.1

Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 16 Nov 2008 at 3:31

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.