search for: wine_mnys

Displaying 1 result from an estimated 1 matches for "wine_mnys".

2011 Sep 17
1
Re: Wine 1.3.11 and Micorsoft Money Sunset Edition
...st, the dialog box on each page load; Solution: use winetricks ie8 instead of ie6 2nd, the app not closing on exit. Solution: adapt the bash script below to your needs: #!/bin/bash mkfifo mnyfifo || exit; trap 'rm mnyfifo' EXIT if [[ $1 = "" ]]; then WINEPREFIX=/home/bencahill/.wine_mnys/ stdbuf -oL wine "C:\\Program Files\\Microsoft Money Plus\\MNYCoreFiles\\msmoney.exe" > mnyfifo 2>&1 & pid=$! while read -r line; do [[ $line = "fixme:wininet:InternetSetOptionW Option INTERNET_OPTION_RESET_URLCACHE_SESSION: STUB" ]] && kill $pid; done <...