Change "WebView2 Manager" to app name in Windows 11 Task Manager (Tauri v2) #15522
-
|
I'm new to Tauri. I've seen a few posts on here [1] [#1849] and the net where people post screenshots of their Windows Task Manager, and it shows their app name instead of "WebView2 Manager". I've tried everything, but I just can't get this to work. Here I've scaffolded a brand new app with
There is also this process, which from what I understand is the Tauri/Rust process.
Is this still possible on v2, on Windows 11? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
I think there are two different things being shown here. The my-app2 process is the actual Tauri/Rust application process, and that one should use your app metadata/name. The WebView2 Manager entries are child processes created by the Microsoft Edge WebView2 runtime. Those are not normal Tauri processes that directly use shortDescription, so changing build.shortDescription is unlikely to rename them in Task Manager. From what I understand, Windows Task Manager sometimes groups WebView2 child processes under the parent app name, but that behavior depends on how Windows/WebView2 attributes the child process to the host app. Apps like Teams may also use additional WebView2/Windows integration that a default Tauri app does not expose in the same way. So I would not expect shortDescription to control this. That field is more about package/installer metadata, not the display name of the WebView2 runtime child processes. The useful question for Tauri v2 is probably whether Tauri currently exposes any Windows/WebView2 setting that influences Task Manager process attribution/group naming. If not, this may simply be a platform/runtime limitation rather than a missing config value. So my read is:
|
Beta Was this translation helpful? Give feedback.
-
|
Thanks for opening the issue and for linking the discussion there. For future readers, I think the current conclusion is:
If that matches your understanding too, marking this discussion as answered would make the conclusion easier for others to find. |
Beta Was this translation helpful? Give feedback.


Thanks for opening the issue and for linking the discussion there.
For future readers, I think the current conclusion is:
If that matches your understanding too, marking this discussion as answered would make the conclusion easier for others to find.