How To Show Details Tab Automatically In Task Manager

pepanee

New Member
Member
Messages
224
Hello, so the topic title is pretty much straight forward. When I open the Task Manager (Ctrl+Shift+Esc), it opens to the Processes tab initially. The problem is that I don't use this tab at all, I click on the Details tab to the right, since I'm more familiar with that. I would like to automatically open the Details tab every time I open the Task Manager. What can I do? Also, rearranging those tabs would be perfect.
(Microsoft should allow you to modify stuff like this easily and simply to best suit you and your work for best productivity. We're in 2016. Someone mention that to them please.)

Thanks
 

My Computer

System One

  • OS
    Windows 8.1 Professional (64-Bit)
    Computer type
    PC/Desktop
    System Manufacturer/Model
    Self Built
    CPU
    Intel Pentium GPU G2020 2.90GHz
    Motherboard
    P8B75-M - CSM
    Memory
    8.00 GB
    Graphics Card(s)
    Nvidia GeForce 8400GS
    Monitor(s) Displays
    ASUS VS247
    Screen Resolution
    1280 x 720
I could not find anything about command line switches or any other way of opening a particular tab on startup. You could use a macro, such as open Task Manager, wait until the window title appears, then click the mouse on the tab. It would be fairly easy in AutoHotkey.

Alternatively there are many free replacement task managers. One of them may have a switch or setting to start with a particular tab open. I would try the freeware sites. But I tried pressing alt D after task manager opened. Evidently there are no accelerator keys for the tabs. Maybe they felt watching for the key would slow down monitoring all the processes? I don't know.
 

My Computer

System One

  • OS
    Windows 8.0 x64
    Computer type
    Laptop
    System Manufacturer/Model
    Toshiba Satelite C55D-A Laptop
    CPU
    AMD EI 1200
    Memory
    4 gb DDR3
    Graphics Card(s)
    Raedon 340 MB dedicated Ram
    Monitor(s) Displays
    Built in
    Screen Resolution
    1366 x 768
    Hard Drives
    640 GB (spinner) Sata II
    Keyboard
    Built in
    Mouse
    Touch pad
Ok thanks for your advice
 

My Computer

System One

  • OS
    Windows 8.1 Professional (64-Bit)
    Computer type
    PC/Desktop
    System Manufacturer/Model
    Self Built
    CPU
    Intel Pentium GPU G2020 2.90GHz
    Motherboard
    P8B75-M - CSM
    Memory
    8.00 GB
    Graphics Card(s)
    Nvidia GeForce 8400GS
    Monitor(s) Displays
    ASUS VS247
    Screen Resolution
    1280 x 720
Automatically Open Windows Task Manager to the Details Tab

[FONT=&amp]The Windows Task Manager 'Details Tab' can be initially opened automatically, and easily, with this simple AutoHotkey script that I wrote
(.ahk code + compiled executable files attached).[/FONT]
Note that this script/exe must be 'Run as Administrator'
Code:
[FONT=&amp]Run Taskmgr.exe[/FONT]
[FONT=&amp]WinWait ahk_class TaskManagerWindow[/FONT]
[FONT=&amp]ControlClick SysTabControl321, ahk_class TaskManagerWindow[/FONT]
View attachment Task Manager (Details).zip
[FONT=&amp]Enjoy! -JT [/FONT];)
 

My Computer

System One

  • OS
    Windows 10
Back
Top