1

I have an Elan touchpad on my notebook. Sadly the driver does not support the new "task view" feature, only executing external programs.

I already found out: it's not possible to send the WIN key via vbs and also this solution suggested

Set objShell = CreateObject("Shell.Application")
objShell.WindowSwitcher

does not work anymore. Same goes with the rundll32 solution.

I DON'T want to install 3rd party thingies.
So, is there solution to this?

quadronom
  • 652
  • 1
  • 5
  • 15

1 Answers1

0

If you include () after windowswitcher it worked for me. On 7 it worked fine without, but I suppose 10 is a bit more picky:

Set objShell = CreateObject("Shell.Application")
objShell.WindowSwitcher()
Bendy
  • 3,506
  • 6
  • 40
  • 71