this post was submitted on 07 Jun 2024
1189 points (97.8% liked)
linuxmemes
21178 readers
750 users here now
Hint: :q!
Sister communities:
- LemmyMemes: Memes
- LemmyShitpost: Anything and everything goes.
- RISA: Star Trek memes and shitposts
Community rules (click to expand)
1. Follow the site-wide rules
- Instance-wide TOS: https://legal.lemmy.world/tos/
- Lemmy code of conduct: https://join-lemmy.org/docs/code_of_conduct.html
2. Be civil
- Understand the difference between a joke and an insult.
- Do not harrass or attack members of the community for any reason.
- Leave remarks of "peasantry" to the PCMR community. If you dislike an OS/service/application, attack the thing you dislike, not the individuals who use it. Some people may not have a choice.
- Bigotry will not be tolerated.
- These rules are somewhat loosened when the subject is a public figure. Still, do not attack their person or incite harrassment.
3. Post Linux-related content
- Including Unix and BSD.
- Non-Linux content is acceptable as long as it makes a reference to Linux. For example, the poorly made mockery of
sudo
in Windows. - No porn. Even if you watch it on a Linux machine.
4. No recent reposts
- Everybody uses Arch btw, can't quit Vim, and wants to interject for a moment. You can stop now.
Please report posts and comments that break these rules!
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
"Don't turn off" is the worst kind of status message.
When it eventually hangs for various reasons, you actually do need to turn off your pc for it to complete or to let it roll back in an error state.
When "just hang in there" is still present on the third day you'll start wondering why you bought that piece of furniture and won't mind the consequences of turning it off.
What should it say instead?
Console output with status of the current operation, including error and warning messages
Not to defend Windows too much in a Linux community, but you can turn on verbose status messages for the screens you see during startup, shutdown, login and log off. It’s a setting that can either be turned on with the local or domain group policy, or by registry key.
Still though, it’s not as detailed as full console output, but is definitely more helpful than just telling you to wait.
Source please. I need this as I am forced to use Windows for work. Where is the registry key I need to change mlord
In group policy (local or domain):
Computer Configuration > Administrative Templates > System > Display highly detailed status messages
Also make sure that this policy is not set or set to disabled:
Computer Configuration > Administrative Templates > System > Remove Boot / Shutdown / Logon / Logoff status messages
Instead of using local group policy you could use the registry:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System
"VerboseStatus"=dword:00000001
If you do it through registry, make sure this key is either non-existant or set to 0.
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System
“DisableStatusMessages”
Thanks. That should also be fairly easy to automate. Might set it up as a powershell script so I have it on every Windows pc I am forced to use. Much appreciated kind stranger