Wie lade ich Startprogramme auf verschiedene Task Views?

666
user3108268

Wenn Sie unter Windows 10 mit der rechten Maustaste auf die Taskleiste klicken und das Kontrollkästchen Show Task View buttonTask-Ansichten links unten neben der Schaltfläche Start aktiviert, klicken Sie auf das Symbol.

Damit können Sie Ihre geöffneten Programme so anordnen, dass sie in einer anderen Aufgabenansicht angezeigt werden. Standardmäßig gibt es drei davon.

Wie wählen Sie in welcher Taskansicht Startup-Programme aus, die Sie in Ihrem Taskplaner haben?

Ich möchte zB Mozilla Firefox in Task View 1 starten, aber Thunderbird in Task View 2 beim Windows-Systemstart.

2
@ McDonald's Startup-Ordner startet aus unbekannten Gründen nicht die Hälfte der Programme. Und wenn ja, wie können Sie festlegen, dass es in verschiedenen Taskansichten gestartet wird? user3108268 vor 6 Jahren 0

2 Antworten auf die Frage

2
lx07

Sie können nicht angeben, für welche virtuellen Desktop-Programme standardmäßig Windows 10 geöffnet ist, Sie können jedoch eine Drittanbieteranwendung wie vdesk verwenden

Für Ihr Beispiel könnten Sie eine Batchdatei schreiben

vdesk 1 firefox.exe vdesk 2 thunderbird.exe 

Durch Ausführen dieser Stapeldatei werden die angegebenen Programme auf dem von Ihnen definierten virtuellen Desktop geöffnet.

Sie können diese Batchdatei so planen, dass sie bei der Anmeldung mit dem Taskplaner ausgeführt wird, oder sie einem der verschiedenen Startorte hinzufügen, wie in der Verknüpfung beschrieben.

wählte dies der anderen Antwort wegen der Einfachheit des Skripts. user3108268 vor 6 Jahren 0
2
Pimp Juice IT

AutoIT - Start Programs on Specific Virtual Desktops with Task View

You can download and use the free AutoIT application and utilize the Send() and Run() functions to emulate the correlated key strokes to execute specific programs in particular virtual desktops via the Task View Windows 10 functionality.

Since you say "by default there's three of them", I tested and based the below AutoIT sample script with that being the case on my system creating three Virtual Desktops (below screen shot).

enter image description here


Sample Script

You can simply use this logic and compile it to an executable file and then that executable file can be run at user login after ensuring the desktop is full loaded and the three Virtual Desktops exist.

You do not need to install AutoIT on any Windows machines the compiled executable executes by the way. I never install AutoIT and always use the portable version. The compiled executable files just run when executed on other systems with nothing else being needed typically.

Send("#") Sleep(200) Send("^#") Sleep(200) Send("") Sleep(200) Run("C:\Program Files (x86)\Mozilla Firefox\firefox.exe") Sleep(2000) Send("#") Sleep(200) Send("^#") Sleep(200) Send("^#") Sleep(200) Send("") Sleep(200) Run("C:\Program Files (x86)\Mozilla Thunderbird\thunderbird.exe") Sleep(1000) 

AutoIT Script Logic Clarification

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.

enter image description here


Further Resources