Hi Mark A Gregory,
Regarding your issue, I'd like to provide some details in a fairly comprehensive explanation, I hope you don't mind reading this long.
Windows can't natively launch Task Manager directly into the Performance-Summary view. Task Manager still refuses command-line arguments for targeting specific tabs. You must recreate the state indirectly.
If you want this to load at logon without manual clicks, you need an automation layer that can simulate the UI. AutoHotkey remains the only stable option. The old mouse-keyboard recorders were just early wrappers around the same principle.
Create a small AutoHotkey script that waits for the shell to finish loading, launches Task Manager, switches it to Performance, collapses to Summary view, and locks its window state. The script must target controls by class and name rather than raw coordinates to avoid breakage on DPI changes. After you verify the sequence works, place the compiled script in the user Startup folder so Windows executes it at sign-in.
PowerToys cannot handle this because it doesn't provide UI automation hooks. Task Manager provides no API for tab selection. UI automation is the only viable path.
I hope my ideas can be some of your help. It's really appreciated of you to accept the answer if you find it useful. Should you have any questions, feel free to leave a message.
VP