There are a number of threads throughout the internet about the xubuntu/xfce/xrdp issue where tab/autocomplete doesn't work in a remote session, and most eventually point back to this page for the solution: http://codebangers.com/?p=134.
CodeBangers suggest using the GUI, but here is the same solution sone in the terminal:
~$ cp .config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml \
.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml.bak
~$ sed -i -e 's/<property name="\<Super\>Tab" type="string" value="switch_window_key"\/>/<property name="\<Super\>Tab" type="empty"\/>/' \
.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml
The problem is, this only fixes the issue for the current user. My question is two fold:
How do I fix this automatically for NEW users, so it works for them at first login (similar to updated the default user in windows)?
How do I fix this for multiple EXISTING users?
Thank you for your assistance.