이 토론은 잠겼습니다.
ℭycaleo 2023년 6월 25일 오후 2시 13분
2
New client exe "-silent" / hidden startup (not autostart)
Howdy.

Steam made a new client version. Good for them - bad for me.

Older was better and the more older than the older was more better than the better older (website too). Looking forward to the next version. :steammocking: Perhaps they are bored, idk.

There are 2 annoying things I'm looking for a solution (2nd is just for optimization, not so important)

  1. I usually run steam with the game I want to play, no autorun at windows startup.
    Now steam starts in foreground, but I like to start steam minimized.
    It seems there is no option for defaulting it in the ui (anymore).
    Parameter "-silent" works fine, but only with a shortcut. I want it by default.
    My idea was a parameter in "HKEY_CURRENT_USER\SOFTWARE\Valve\Steam". SteamExe doesn't accept params. But maybe there's key for it? Or a list of possible keys somewhere?
    Or anybody got other solution?

  2. The memory usage of webhelper is under every sow (sorry). I just write this to be said. Even in background it's over 500mb. Maybe I leave chrome and google with steam from now. lol.
ℭycaleo 님이 마지막으로 수정; 2023년 6월 25일 오후 2시 17분
< >
21개 댓글 중 1-15개 표시
ℭycaleo 2023년 6월 25일 오후 4시 24분 
Well since I don't expect a other solution, I take the sledgehammer method:

HKEY_CLASSES_ROOT\steam\Shell\Open\Command
-> "C:\Program Files (x86)\Steam\Steam.exe" "-silent" -- "%1"

And removed write access to prevent steam to undo what I want.
Idk if this is correct concerning %1 param placeholder (which is steamappid or params or both), however it's working fine for me.
Kokoš25 2023년 6월 30일 오전 12시 12분 
FordPerfect님이 먼저 게시:
Well since I don't expect a other solution, I take the sledgehammer method:

HKEY_CLASSES_ROOT\steam\Shell\Open\Command
-> "C:\Program Files (x86)\Steam\Steam.exe" "-silent" -- "%1"

And removed write access to prevent steam to undo what I want.
Idk if this is correct concerning %1 param placeholder (which is steamappid or params or both), however it's working fine for me.

How do I remove write access?
Randy Goldsmith 2023년 6월 30일 오전 12시 19분 
ha
ℭycaleo 2023년 6월 30일 오후 4시 06분 
Kokoš25님이 먼저 게시:
FordPerfect님이 먼저 게시:
Well since I don't expect a other solution, I take the sledgehammer method:

HKEY_CLASSES_ROOT\steam\Shell\Open\Command
-> "C:\Program Files (x86)\Steam\Steam.exe" "-silent" -- "%1"

And removed write access to prevent steam to undo what I want.
Idk if this is correct concerning %1 param placeholder (which is steamappid or params or both), however it's working fine for me.

How do I remove write access?

Right click command key folder and select permissions. Then select advanced. Take over ownership with the user you start steam. Disable inheritance. Close advanced window. Select the same user of ownership and disable full access, read remains checked.
That's it. Steam doesn't care about ownership.

I read that it only works if you have the library active. Don't know if that's true. No desire to try.
ℭycaleo 님이 마지막으로 수정; 2023년 6월 30일 오후 4시 20분
Kokoš25 2023년 7월 1일 오전 6시 27분 
FordPerfect님이 먼저 게시:
Kokoš25님이 먼저 게시:

How do I remove write access?

Right click command key folder and select permissions. Then select advanced. Take over ownership with the user you start steam. Disable inheritance. Close advanced window. Select the same user of ownership and disable full access, read remains checked.
That's it. Steam doesn't care about ownership.

I read that it only works if you have the library active. Don't know if that's true. No desire to try.
Nope. It still opens it maximized. But when I put "-silent" it works. It doesn't wanna work when it's put in regedit.
Kokoš25 님이 마지막으로 수정; 2023년 7월 1일 오전 6시 30분
Sio_x 2023년 7월 1일 오전 11시 28분 
@FordPerfect It works. 😉
It's important you use all the " and disable the Full Access. "C:\Program Files (x86)\Steam\Steam.exe" "-silent" -- "%1"
Gunslinger 2023년 7월 10일 오전 6시 12분 
I am not sure if this is a valve change at all. It might be microsoft thats having fun with ut.
I change the "Steam" key in \HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run
From steam default: "D:\Program Files (x86)\Steam\steam.exe" -silent
To: "D:\Program Files (x86)\Steam\steam.exe" "-silent"
That is, I added "" around the -silent. That workes for me atleast.
Gunslinger 님이 마지막으로 수정; 2023년 7월 10일 오전 6시 16분
Elucidator 2023년 7월 10일 오전 8시 15분 
FordPerfect님이 먼저 게시:
  • The memory usage of webhelper is under every sow (sorry). I just write this to be said. Even in background it's over 500mb. Maybe I leave chrome and google with steam from now. lol.
[/olist]
(since it hasn't been discussed yet)
There isn't much you can do about the memory usage.
Every time they increase the Chromium Embedded Framework version, you're going to get a more bloated chrome, a more bloated node, etc.
nw.js and electron noticably suffer with this in file size and memory usage, and they don't improve that much performance wise.

What I also don't get is all the tracking and libraries that are included with these.
Every time you open up a chrome based app somewhere, there is a high chance another set of the same data about you is generated, in a folder called "User Data", never mind that this is your umpteenth chrome install.
with a few different launch flags, basically.

Maybe the option -vgui still works.
You could adjust a couple of settings in the js files or css files to reduce memory usage, but honestly Steam's dev team needs to work on it so that it by default doesn't consume a whole laptop worth of ram.

I guess there is a joke in there based on chromebooks.
Elucidator 님이 마지막으로 수정; 2023년 7월 10일 오전 8시 16분
ℭycaleo 2023년 7월 11일 오전 7시 54분 
Gunslinger님이 먼저 게시:
I am not sure if this is a valve change at all. It might be microsoft thats having fun with ut.
I change the "Steam" key in \HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run
From steam default: "D:\Program Files (x86)\Steam\steam.exe" -silent
To: "D:\Program Files (x86)\Steam\steam.exe" "-silent"
That is, I added "" around the -silent. That workes for me atleast.

FordPerfect님이 먼저 게시:
I usually run steam with the game I want to play, no autorun at windows startup.
This has nothing to do with windows. Passing params never changed and the app installer write keys to reg, not windows.


Elucidator님이 먼저 게시:
FordPerfect님이 먼저 게시:
  • The memory usage of webhelper is under every sow (sorry). I just write this to be said. Even in background it's over 500mb. Maybe I leave chrome and google with steam from now. lol.
[/olist]
(since it hasn't been discussed yet)
There isn't much you can do about the memory usage.
Every time they increase the Chromium Embedded Framework version, you're going to get a more bloated chrome, a more bloated node, etc.
nw.js and electron noticably suffer with this in file size and memory usage, and they don't improve that much performance wise.

What I also don't get is all the tracking and libraries that are included with these.
Every time you open up a chrome based app somewhere, there is a high chance another set of the same data about you is generated, in a folder called "User Data", never mind that this is your umpteenth chrome install.
with a few different launch flags, basically.

Maybe the option -vgui still works.
You could adjust a couple of settings in the js files or css files to reduce memory usage, but honestly Steam's dev team needs to work on it so that it by default doesn't consume a whole laptop worth of ram.

I guess there is a joke in there based on chromebooks.
Chrome was a good solution for the time where Internet Explorer shutdown. Also chrominum was ok for linux distributions. But now it seems to be sh.itty more and more. Every update, reporter tools have to be disabled.
The older you get, the less you like change (at least me) ;).
ℭycaleo 님이 마지막으로 수정; 2023년 7월 11일 오전 7시 57분
Phi3nix 2023년 7월 15일 오후 10시 15분 
My solution. Without playing with regedit.
1. Go to settings -> Interface and disable -> Run Steam when the computer starts.
2. Create a shortcut -> "E:\Steam\steam.exe" "-silent" -- "%1"
3. Press Run and open -> shell:startup
4. Move your new shiny shortcut to this folder.

Enjoy :-)
ℭycaleo 2023년 7월 15일 오후 10시 27분 
Phi3nix님이 먼저 게시:
My solution. Without playing with regedit.
1. Go to settings -> Interface and disable -> Run Steam when the computer starts.
2. Create a shortcut -> "E:\Steam\steam.exe" "-silent" -- "%1"
3. Press Run and open -> shell:startup
4. Move your new shiny shortcut to this folder.

Enjoy :-)

Shiny. Did you figure it out all by yourself?
Phi3nix 2023년 7월 17일 오전 3시 39분 
FordPerfect님이 먼저 게시:
Phi3nix님이 먼저 게시:
My solution. Without playing with regedit.
1. Go to settings -> Interface and disable -> Run Steam when the computer starts.
2. Create a shortcut -> "E:\Steam\steam.exe" "-silent" -- "%1"
3. Press Run and open -> shell:startup
4. Move your new shiny shortcut to this folder.

Enjoy :-)

Shiny. Did you figure it out all by yourself?

Yep... to many years of working as System Administrator :-)
delta14sierra 2023년 7월 19일 오전 6시 39분 
Cannot get this to work. I tried it as is. I tried removing the quotes (E:\Steam\steam.exe -silent %1). I tried setting it to start "Minimized," and setting it to "Run as Administrator."
delta14sierra 님이 마지막으로 수정; 2023년 7월 19일 오전 7시 21분
Phi3nix 2023년 7월 19일 오후 7시 48분 
delta14sierra님이 먼저 게시:
Cannot get this to work. I tried it as is. I tried removing the quotes (E:\Steam\steam.exe -silent %1). I tried setting it to start "Minimized," and setting it to "Run as Administrator."
Did you follow my manual?
My steam is installed on E drive. You have to change it. Did you disable Steam when the computer starts?

Luca
delta14sierra 2023년 7월 20일 오전 7시 35분 
My Steam is on D: which is reflected in the shortcut. I disabled Steam to launch under Settings > Interface. And Steam's start up location is set to "Library." The shortcut simply delays when Steam is launched during the Windows login process.
< >
21개 댓글 중 1-15개 표시
페이지당 표시 개수: 1530 50

게시된 날짜: 2023년 6월 25일 오후 2시 13분
게시글: 21