Down and Dirty no picture Blog for today..
Recently I was working a complex XenDesktop 7.6 implementation at a large customer. The project ended up with Windows 7 VDI's launching XenApp hosted applications. The VDI was really a landing pad, and a way to browse both the network and the internet.
Everything appeared to work well once we got that beast of Single Sign On working correctly (oh Web Interface how I miss you, and your simple single check box for so many things) . Excel files, Doc files, etc all redirected nicely..
That is it all worked nicely till we noticed that .docx did not have the correct icon. For whatever reason Wordpad is the default handler, and Citrix can't seem to trump that setting out of the box. In previous versions ( IMA versions) we could decide who would win in this situation, local apps or hosted apps. As of this writing that appears to no longer be the case. We independently verified that this happens at least in one other lab environment that I had no part in building. So it isn't a personal process issue.
The user can of course right click the app and choose "open with" and hosted Word would be offered but that was not something we wanted to have each user go through.
What we did was to create a couple of Reg tweaks on the VDI:
Set user choice for .docx to Word
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.docx\UserChoice]
"Progid"="Dazzle.Word 2013.docx.1"
To fix .docx icon appearance
Windows Registry Editor Version 5.00
[-HKEY_CLASSES_ROOT\docxfile]
[-HKEY_CLASSES_ROOT\SystemFileAssociations\.docx]
At the Customer they are pushing these settings in group policy as part of the user config. I hope this helps.
Mike-