batch file - activate task view programmatically windows 10 -


is there way activate task view programmatically in windows 10?

there way activate flip3d programmatically in win7 using following copied vbscript sendkeys ctrl+lwin+tab?

createobject("wscript.shell").run "rundll32 dwmapi #105" 

i want make .vbs or .bat file activates windows 10 task view.

ok found way c#

  1. install visual studio
  2. install nuget http://docs.nuget.org/consume/installing-nuget
  3. file > new project
  4. name taskview
  5. visual c# > console application
  6. file > save all
  7. tools > nuget package manager > package manager console
  8. type "install-package inputsimulator" in package manager console window
  9. paste following text in taskview.cs window

    using system; using system.collections.generic; using system.linq; using system.text; using system.threading.tasks; using windowsinput.native;// importante  namespace taskview {     class program     {         static void main(string[] args)         {             windowsinput.inputsimulator kb = new windowsinput.inputsimulator();             kb.keyboard.modifiedkeystroke(virtualkeycode.lwin, virtualkeycode.tab);             console.read();// keep console window open         }     } } 
  10. change dropdown debug in release

  11. build > build solution
  12. build > build taskview

it should in: documents\visual studio 2015\projects\taskview\taskview\bin\release\taskview.exe


Comments

Popular posts from this blog

qt - Using float or double for own QML classes -

Create Outlook appointment via C# .Net -

ios - Swift Array Resetting Itself -