Out of boredm, I wrote a program that puts WoW into the tray bar when you minimize it, and shows the window again when you click the WoW icon in the tray.
Have WoW running, then run this program to run it.
Written in AutoIt
Code:
#Region
#AutoIt3Wrapper_Run_Obfuscator=y
#AutoIt3Wrapper_Icon=wow.ico
#EndRegion
#NoTrayIcon
#include <Constants.au3>
Local $title = "World of Warcraft"
AutoItSetOption ("TrayMenuMode", 1)
While 1
$state = WinGetState ($title)
Select
Case $state = 23
_HideWowWindow()
EndSelect
If TrayGetMsg() = $TRAY_EVENT_PRIMARYDOWN Then
_ShowWowWindow()
EndIf
If Not ProcessExists ("Wow.exe") Then
Exit 0
EndIf
WEnd
Func _HideWowWindow()
WinSetState ($title, "", @SW_HIDE)
TraySetState (1)
EndFunc
Func _ShowWowWindow()
WinSetState ($title, "", @SW_SHOW)
TraySetState (2)
WinActivate ($title)
WinWaitActive ($title)
EndFunc