F5F Stay Refreshed Software General Software Does this software exist?

Does this software exist?

Does this software exist?

J
Jelmerro
Member
202
02-01-2023, 10:45 AM
#1
I'm working on streamlining my PC setup and cutting down the clutter. I'm frustrated with having 50 programs doing different jobs, each needing its own app. I'm looking for a single solution that handles everything—like a one-stop shop. Right now, all these needs are separate apps on my old system, and I don't want to reinstall them on my new PC. Would anyone suggest a program that covers:

- Full hardware details (model, CPU/GPU, RAM, etc.)
- Real-time temperature monitoring (including charts)
- HDD scanning and diagnostics (and repair options)
- Benchmark testing for upgrades or comparisons

That would really simplify things!
J
Jelmerro
02-01-2023, 10:45 AM #1

I'm working on streamlining my PC setup and cutting down the clutter. I'm frustrated with having 50 programs doing different jobs, each needing its own app. I'm looking for a single solution that handles everything—like a one-stop shop. Right now, all these needs are separate apps on my old system, and I don't want to reinstall them on my new PC. Would anyone suggest a program that covers:

- Full hardware details (model, CPU/GPU, RAM, etc.)
- Real-time temperature monitoring (including charts)
- HDD scanning and diagnostics (and repair options)
- Benchmark testing for upgrades or comparisons

That would really simplify things!

P
PisulasRule
Senior Member
676
02-20-2023, 08:20 PM
#2
Does it really mean you're exhausted from managing fifty programs?
You mention four specific tasks.
What issues could arise if there were four programs—one per task? Would that be excessive?
If you insist on just one program, chances are it doesn't exist.
P
PisulasRule
02-20-2023, 08:20 PM #2

Does it really mean you're exhausted from managing fifty programs?
You mention four specific tasks.
What issues could arise if there were four programs—one per task? Would that be excessive?
If you insist on just one program, chances are it doesn't exist.

M
maximum215
Junior Member
49
03-09-2023, 09:01 AM
#3
There is no single application for all these tools.
M
maximum215
03-09-2023, 09:01 AM #3

There is no single application for all these tools.

L
Lord_Hase
Junior Member
17
03-14-2023, 07:21 PM
#4
I'm tired of needing multiple appliances and want a single device that performs all of them poorly.
L
Lord_Hase
03-14-2023, 07:21 PM #4

I'm tired of needing multiple appliances and want a single device that performs all of them poorly.

B
Bluefire1507
Junior Member
13
03-15-2023, 06:08 AM
#5
Isn't this referred to as a spouse? Personally, I'm considering it...
B
Bluefire1507
03-15-2023, 06:08 AM #5

Isn't this referred to as a spouse? Personally, I'm considering it...

C
Cracra
Member
79
03-20-2023, 08:27 AM
#6
No such software exists
C
Cracra
03-20-2023, 08:27 AM #6

No such software exists

N
noah1277
Junior Member
45
03-20-2023, 11:10 AM
#7
Actually there are probably 3 or 4 programs that will provide 80% of the information you wish to monitor or capture.
Some already listed in previous posts.
I do like BelArc Advisor - free version - for occasional snapshots. Nice overall summary of any given system but not always quite up to date.
However, to have even more control and independence from 3rd party programs and apps I recommend Powershell. Microsoft, free.
And many third party apps, utilities, etc. are often just some user friendly shell that may be running Windows DOS/Powershell commands in the background anyway.
Powershell:
For the most part, I am now using Powershell "Get" cmdlets to extract and present system information.
"Get's" do not change anything and I can often customize the cmdlet to some extent when warranted.
As a starter I suggest "Get-Disk". However there are other related disk cmdlets that can be used as well.
https://dannyda.com/2022/07/17/how-...ta...to-use-po/
However, to really get into things CIM and WMI can be very useful.
Put into scripts you can further customize what you wish to observe.
You mentioned memory:
FYI:
https://shellgeek.com/powershell-get-memory-usage/
Try
Get-WmiObject WIN32_PROCESS | Sort-Object -Property ws -Descending | Select-Object -first 10 ProcessID,Name,WS
In many cases you can easily copy any cmdlet or script for that matter and paste into the PS> prompt.
= = = =
Key is to determine your requirements with respect to monitoring any given system.
Again, it is very likely that there are a few simple cmdlets that will quickly and easily provide what you wish to know. Plus you can pipe the results to a file or printer or filter into another Powershell cmdlet.
And you can customize and control most of it. Actually quite fun sometimes. Especially when a one liner Get provides exactly what is required.
Just be, as you always should be doing anyway,sure to keep your backups up to date. Especially if you start trying to apply Powershell to change things.
Versus a basic Get- to simple look at something.
N
noah1277
03-20-2023, 11:10 AM #7

Actually there are probably 3 or 4 programs that will provide 80% of the information you wish to monitor or capture.
Some already listed in previous posts.
I do like BelArc Advisor - free version - for occasional snapshots. Nice overall summary of any given system but not always quite up to date.
However, to have even more control and independence from 3rd party programs and apps I recommend Powershell. Microsoft, free.
And many third party apps, utilities, etc. are often just some user friendly shell that may be running Windows DOS/Powershell commands in the background anyway.
Powershell:
For the most part, I am now using Powershell "Get" cmdlets to extract and present system information.
"Get's" do not change anything and I can often customize the cmdlet to some extent when warranted.
As a starter I suggest "Get-Disk". However there are other related disk cmdlets that can be used as well.
https://dannyda.com/2022/07/17/how-...ta...to-use-po/
However, to really get into things CIM and WMI can be very useful.
Put into scripts you can further customize what you wish to observe.
You mentioned memory:
FYI:
https://shellgeek.com/powershell-get-memory-usage/
Try
Get-WmiObject WIN32_PROCESS | Sort-Object -Property ws -Descending | Select-Object -first 10 ProcessID,Name,WS
In many cases you can easily copy any cmdlet or script for that matter and paste into the PS> prompt.
= = = =
Key is to determine your requirements with respect to monitoring any given system.
Again, it is very likely that there are a few simple cmdlets that will quickly and easily provide what you wish to know. Plus you can pipe the results to a file or printer or filter into another Powershell cmdlet.
And you can customize and control most of it. Actually quite fun sometimes. Especially when a one liner Get provides exactly what is required.
Just be, as you always should be doing anyway,sure to keep your backups up to date. Especially if you start trying to apply Powershell to change things.
Versus a basic Get- to simple look at something.