KB00028 - Hide all stickies from WinBatch

David Cole from Texas provides this WinBatch code to hide all stickies, which run whether any stickies currently exist or not, and will not show those which are already hidden:

; hide Stickies if present and not already hidden if WinExist("ASticky") == @True   if WinState("ASticky") <> @HIDDEN     SendKey("{*LWIN}S")   endif endif