#!/bin/sh
echo "Running in NT environment..."
export WINDOWS_VERSION="winxp"

[ -z "$WINEDLLOVERRIDES" ] || WINEDLLOVERRIDES="${WINEDLLOVERRIDES};"

export WINEDLLOVERRIDES="${WINEDLLOVERRIDES}ole32,rpcrt4,oleaut32,olecnv32,olethk32,olepro32,msi,msiexec.exe=b"

wine "$@"
