AutoIT - Iniciar programas em áreas de trabalho virtuais específicas com exibição de tarefas
Você pode baixar e usar o aplicativo gratuito AutoIT e utilizar o Enviar () e As funções Executar () para emular os toques de tecla correlacionados para executar programas específicos em desktops virtuais específicos por meio da Vista de Tarefa Funcionalidade Windows 10 .
Como você diz " por padrão, há três deles ", testei e baseei o AutoIT abaixo script de amostra, sendo esse o caso no meu sistema, criando três Desktops Virtuais (abaixo da captura de tela).
Scriptdeamostra
Vocêpodesimplesmenteusaressalógicaecompilá-laemumarquivoexecutávele,emseguida,essearquivoexecutávelpodeserexecutadonologindousuárioapósgarantirqueaáreadetrabalhoestácarregadaeexistemtrêsÁreasdetrabalhovirtuais.p>
Vocênãoprecisainstalar AutoIT em qualquer Windows
Send("#{TAB}")
Sleep(200)
Send("^#{LEFT 3}")
Sleep(200)
Send("{ENTER}")
Sleep(200)
Run("C:\Program Files (x86)\Mozilla Firefox\firefox.exe")
Sleep(2000)
Send("#{TAB}")
Sleep(200)
Send("^#{LEFT 3}")
Sleep(200)
Send("^#{RIGHT 1}")
Sleep(200)
Send("{ENTER}")
Sleep(200)
Run("C:\Program Files (x86)\Mozilla Thunderbird\thunderbird.exe")
Sleep(1000)
Esclarecimento da lógica de script AutoIT
See the screen shot with some notes on the logic but it's simply
emulating key strokes that would be pressed when three virtual
desktops exist already and ensures it's on Task View 1 and opens the
program you need it to open there and then it ensures it's on Task
View 2 and opens the program you need it to open there and it's really
as simple as that. I tested with Outlook rather than Thunderbird so that's why you see Outlook in the screen shot but not in the script logic so just change that accordingly for each run function for you need.
Mais recursos