I used the following shell script for installation. It contains a lot of extra stuff that can be used to debug whatever you are doing. Note that there are two methods; the MSI installation is relevant only for DNS8 Professional, which is the one that I used. Installation is tricky and you might have to try it many times--and in between install Internet Explorer 6 or Windows Installer Service, which you may or may not already have installed. Post in the forum if you are having trouble
#!/bin/bash cx=cxoffice cddrive=M options="--winver win2k --cx-log $HOME/.cxoffice/dotwine/fake_windows/Windows/Temp/dns8.log" msilog="C:\\\\Windows\\\\Temp\\\\dns8-msi.log" # WINEDEBUG=class+channel,-channel,... #WINEDEBUG=+all,-relay #WINEDEBUG=warn+heap #WINEDEBUG=heap # classes #trace, fixme, warn, err # channels #accel adpcm advapi animate aspi atom avicap avifile bidi bitblt bitmap cabinet capi caret cdrom cfgmgr32 class clipboard clipping combo comboex comm commctrl commdlg computername console crtdll crypt curses cursor d3d d3d_shader d3d_surface datetime dc ddeml ddraw ddraw_fps ddraw_geom ddraw_tex debugstr devenum dialog dinput dll dma dmband dmcompos dmfile dmfiledat dmime dmloader dmscript dmstyle dmsynth dmusic dosfs dosmem dplay dplayx dpnhpast driver dsound dsound3d edit enhmetafile environ event eventlog exec file fixup font fps g711 gdi global glu graphics header heap hook hotkey icmp icon imagehlp imagelist imm int int21 int31 io ipaddress iphlpapi jack joystick key keyboard listbox listview loaddll local mapi mci mcianim mciavi mcicda mcimidi mciwave mdi menu menubuilder message metafile midi mmaux mmio mmsys mmtime module monthcal mpeg3 mpr msacm msdmo msg mshtml msi msimg32 msisys msrle32 msvcrt msvideo mswsock nativefont netapi32 netbios nls nonclient ntdll odbc ole oledlg olerelay opengl pager palette pidl powermgnt print process profile progress propsheet psapi psdrv qcap quartz ras rebar reg region relay resource richedit rundll32 sblaster scroll seh selector server setupapi shdocvw shell shlctrl snmpapi snoop sound static statusbar storage stress string syscolor system tab tape tapi task text thread thunk tid timer toolbar toolhelp tooltips trackbar treeview ttydrv twain typelib uninstaller updown urlmon uxtheme ver virtual vxd wave wc_font win win32 wineboot winecfg wineconsole wine_d3d winevdm wing winhelp wininet winmm winsock winspool wintab wintab32 wnet x11drv x11settings xdnd xrandr xrender xvidmode set -v -u -x # regular install #/opt/$cx/bin/wine $options --cx-app $cddrive:\\\\setup.exe /v /V"SERIALNUMBER=XXXXX-XXX-XXXX-XXXX-XX" /V"WEBREGISTRATION=0" # msi install /opt/$cx/bin/wine $options --cx-app "C:\\\\Windows\\\\System\\\\msiexec.exe" /i "$cddrive:\\\\Dragon NaturallySpeaking 8.msi" /l*v "$msilog" SERIALNUMBER=XXXXX-XXX-XXXX-XXXX-XX WEBREGISTRATION=0
I hope that's right. If you have problems, please post in the forums. Oh, and in place of that XXXX stuff you should put your serial number so that you don't have to type it every time.