Sponsored: The first 100 people to go to blinkist.com/ThioJoe get unlimited access for 1 week to try it out! You’ll also get 25% off if you want the full membership.
I swear ThioJoe made a 180 in his youtube career. I still remember a couple years back when he only made scammy content and was despised by a lot of people. It's genuinly great to see him making ACTUALLY useful content, and in a straight to the point fashion. Props to him!
The "CPU at Startup" time in the task manager is just talking about CPU time, it doesn't necessarily mean how long it took for the program to start up, but rather how long the CPU was working on that task, which usually goes outside of the computer's actual startup time
50 yr old IT guy here and I never had a program slip a "start on boot" program into Task Scheduler......until today. Thank you for helping me find that and for all the other useful info in this video.
@@wohao_gaster7434 mine is like 3 seconds on a hard drive, because i only have my undervolting software (ThrottleStop) and Intelligent Standby List Cleaner open on startup
2:05 those aren't thousand delimiters, they are commas. It says it takes 258ms of cpu time on startup plus change. That's not real world time that's how many clock cycles it uses divided the clock speed. Cpu times is measured in microseconds and thus task manager shows decimal ms
First, remember that numeric magnitude calculations are *completely* independent of any units of measure that we humans decide to attribute to them. While we don't want to convert units of time to units of distance, we can surely convert milliseconds to minutes or hours. 😃The column with ThioJoe's long startup rascal is labeled with the ISO designation for milliseconds and there's no reason to doubt that. So, we have 258,842 milliseconds of CPU elapsed time as recorded by the startup logger. Note that the magnitude is simply a number: (2x10^5) + (5x10^4) + (8 x 10^3) + (8 x 10^2) + (4 x 10^1) + (2 x 10^0) (200,000 + 50,000 + 8,000 + 800 + 40 + 2) 258,842 Looks good, so now we can attach our units to this number: 258,842 ms. Sure, we could do the conversions in our heads, but it doesn't look too bad written out with the standard keyboard and not Wolfram symbols: (258,858 ms) x (1 sec / 1000 ms) = (259 sec) x (1 min / 60 sec) = (4.4 min) x (1 hr / 60 min) = 0.073 hr OK, that's how you do this part. For these CPU measurements, we just wanted the relative CPU elapsed times for all the processes in order to compare the values with other values in our startup task survey. But if you want to examine how we measure CPU timings, these are dependent upon a fast natural oscillator, such as a crystal excited by a small amount of electric current. Atomic clocks aboard fleets of GPS satellites use the incredibly accurate and stable cesium atomic clocks whose oscillation frequencies are produced when cesium atoms are excited using photon beams at certain frequencies. It seems clear that the next major breakthrough in CPU and bus architecture will switch from using electric current from electrons, which have mass, to massless photons that move across some kind of glass fiber bus architecture. We're approaching the limits of how small we can make transistors that require copper and electrons--they're fast, but not as close to light speed as massless photons over fiber optics. Regardless, that's a completely separate issue from how we measure the usage of CPU instructions by code. I've actually built synthetic benchmark programs for the US EPA's National Computer Center headquarters in Research Triangle Park, NC. A little context for those unfamiliar with this area. The RTP is located equidistant from Duke University, UNC Chapel Hill and North Carolina State University. These benchmarks were later modified and used in the EPA's 10 regional office Computing Centers around the US, of which Washington DC was considered Regional Computing Center One. The point was to develop models that reflected the kinds of workloads the different EPA Program Offices used (e.g., Air and Radiation, Water and Aquifers, Permit Compliance, and the rescue heroes in the HazMat suits from Superfund). Anyway, we had other modeling software from vendors as well but the objective was to connect increases in work that the Offices understood to hardware and software that we understood, to budgets which everyone understood. After a few years of refining the process, the Congressional Committees responsible for Agency budget approval saw that we didn't guestimate but nailed our requirements without the silly games assuming padding by us and chopping by them. That really made everyone's job easier and a lot more fun. One unexpected result was the referrals to other organizations who needed help getting up to speed in this area. Man did we get loaned out to a bunch of places with three acronyms. Didn't get paid much extra for this but damn the work was fun. This kind of modeling requires understanding the instruction distribution profiles of the specific programs driving the majority of the overall system workload growth (not to mention memory usage patterns, I/O usage, interrupts to the operating system kernel, etc.). There's no point in buying an awd, hybrid 850 HP Porsche that can whip an 1100 HP RWD engine-only MacLaren in lap times around Laguna Seca Raceway if what you need is a truck with 1000 lb-ft of low RPM torque that can pull a house off its foundation. 😃 But the problem with these deep CPU measurements is that they require custom hardware probes to record these events occurring at incredible speeds--often concurrently on different processors, especially without affecting the performance of what you're trying to measure. It's not much different than trying to catch quantum events at the atomic level; the light wavelengths short enough to reflect off an atomic nucleus proton or neutron, much less a much smaller electron, have frequencies in the X-Ray or even Gamma Ray range--and they will definitely affect their targets, even when using stream of individual photons. So, it's not an easy or inexpensive task to accomplish. That said, it's often a good strategy to use simpler software monitors to record process CPU active or elapsed wall clock time. Real world time. 😃 Sometimes you just don't need the kind of detail folks think you might, but rather the general relationships and idiosyncrasies of a particular system. Also don't forget that the advertised performance specs of the CPUs that the major vendors use is a bit like the automobile industry's advertised brake horsepower and torque numbers. It's not that they are bad or useless numbers. But all auto makers measure the power output of their engines or motors on an idealized test dyno when the powerplant isn't even in a car. Well, imagine testing it after the cars are assembled. So, I understand why they test samples this way or they'd never move as much product. If purchase a car and then modify it, of course there is no need to remove stuff to test it. So, you rent some time on a different measurement device that records the power where the rubber hits the dyno. That's really all you need to learn--did my changes make it to the drive wheels. Now, what the CPU manufacturers measure is the two sides of the same coin: oscillations per second in Hertz, and the reciprocal number, which is called the cycle time per unit of time. The second measurement is often thought of as the shortest theoretical period of time in which a CPU can execute an instruction that takes only one CPU cycle to complete. LOL, the Planck CPU time. 😃 Thus, if we measure the most number of stable CPU cycles per second in Hertz units to be 5.0 Gigahertz, this is equivalent to 5.0 billion CPU cycles per second. That could be considered the greatest number of instructions possible in one second. However, most instructions take more than one instruction cycle, some as many as 10 to 20 CPU cycles. Branch prediction cache logic, data caches, multiple pipelines, super pipelines and all sorts of nifty things can increase throughput. Still the number is useful. Knowing that our CPU can execute at 5 Gigahertz or 5.0 billion cycles/second, we use the reciprocal value to determine the CPU has a cycle time of 0.2 nanoseconds per cycle. 5.0 gigahertz 5,000,000,000 cycles/sec CPU cycle time = 1 sec / 5,000,000,000 cycles = 0.0000000002 sec/cycle = 0.2 ns/cycle That's how you do this part. Cheers
i know engagement in your channel is dropped when you started giving priority to quality educational content instead of clickbait garbage videos, but we educated audience is with you all the time.
I want to extend my heartfelt gratitude for your invaluable assistance in navigating the intricacies of Windows 11. Your expertise in disabling startup programs has significantly streamlined my system's performance, saving both time and frustration. Your patience and clear instructions made the process seamless, empowering me with newfound knowledge. Your dedication to ensuring my technological experience is smooth and efficient is truly commendable. I'm immensely grateful for your support and guidance. Your professionalism and skill have made a world of difference. Thank you for your outstanding service.❤
For the VirusTotal scan feature, it doesn't mean much, typically malicious services/startup programs use other files to run its malicious behaviour. I would recommend to also manually analyze the files in the folder the service/startup program is in and also in its parent and child folders (mainly .dll and .exe files)
A truck load of information of which I will have to come back to for how to do reference. Very helpful for checking system when for some reason it has slowed in performance. Thanks Joe.
When you install some programs/applications, they will add themselves to the startup folder. Also, some but not all have an option in the program settings to stop it from opening at Windows start up
7:18 ye, for example TeamViewer service starts up automatically for some reason, even though the program itself is not allowed to startup automatically. And I have to keep changing that to manual on each update
Autoruns (along with some other excellent tools) was made by Mark Mark Russinovich when he was working in I believe Winternals then Microsoft bought WInternals and therefore become the owners of Autoruns and the entire sysinternals toolkit. Also Microsoft has a weird ability to mess up good things they are involved in.
Thanks ThioJoe. Can you do a video on getting rid of all the temporary and installation files, cabs and folders etc that take up so much space but hide in hidden folders and/or folders/files with long alphanumeric names (even after clearing cache, disk cleanup, browser history deletion)? Oh and another one on properly configuring firewalls (open ports etc)?
Thanks for this video thio, this was the reason that while my pc used only 2gb ram after boot, my lap used 4gb ram. Dell background apps were eating memory which I was unable to find even in services.msc menu
An important thing to know about Startup apps: The Startup Settings page Windows 11 shows you defaults to running apps located in C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup. While this works, it runs the original .EXE file without any command line arguments. If you want Windows 11 to start up a Shortcut with its own command line options, you need to put that Shortcut in your User Account's AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup folder.
Well that explains why Discord on my Cisco computer kept on opening, when the computer was starting up. I just went into the Discord settings to disable start on startup.
well TJ i am sure that there are people out there that know what you are saying. i have no idea what you are talking about. but i will keep watching and maybe learn something. keep it up.
Can anyone help me out? I installed UltraViewer from it website, nothing special. But I don't want it to startup with windows10 so I uncheck the box in UltraViewer settings and also in task manager. But it still autostarts every time I turn on my computer
"For the Internet Explorer, this is pretty much obsolete. I don't really know if someone still uses that." I've never felt so offended by something I 100% agree with. lol
For me: NO Windows not only gets bigger by the stupid user. It will become bigger and bigger by Microsoft patches. I have a good example: My daughters laptop - strictly used for office and browsing. She absolutely avoided loading programs since it was so sludgy (due to rotating hard drive). I tried to clean the disk as sorrow as possible. The windows directory was some around 45GB. Then I installed a SSD. MCT stick, loading some drivers, installing old windows, some tools - ready to work: Windows dir was some below 10 - 16GB. If you are able to do something against (without complete new installation) - let us hear.
I don't know how You do it but Your videos are always helpful and somehow you know when I have a problem you will come with a solution to that very same problem like you were a mind reader. You're awesome!
That taskmgr context menu... Big shoutout. I just love these context menus popping out of nowhere... Right-click on the Run dialog to see what I'm talking about. And if you want to go to shell:::{437ff9c0-a07f-4fa0-af80-84b6c6440a16} ("Command folder"), you can Invoke icon size commands if you wish to. Not that it does something...
Question: Windows 10 Pro: on every bootup, even after my desktop icons fill the screen, the boot is still not obviously complete because there is a tiny blue circle rotating near or at the mouse pointer. That little circle comes and goes intermittently until it finally stops for good. At that point (for example) your “connect” to online will STAY, and other operations will work better. I would like it if a pop up would appear, say in mid screen, saying “bootup is complete.” This has to be a 3rd party job I think, but it’d still be nice. On my XP machines, clicking “status” under the network (or connectivity “antenna” icon) shows a “disable” option even though at bootup on my system it is already disabled. A little white square appears on the taskbar near that icon, and DISAPPEARS, when the computer is fully booted. Clicking status then says “ENABLE” like it should have in the first place, and I know there will be no more waiting for the boot actions to finish. (That’s just to give you an example in XP, of a way to determine what I am looking for in WIN10.)
Do you know of any tools or profiles that can reset my Windows Services settings to a common default as I have run a few 'optimizers' that may have done a few too many opt-ings. I know that I can do your 'In-Place' Windows restore, which may be my best solution, but wanted to know if there was such a 'Services-Resetting' tool that might be available. Thanks for all of your great content, Ken.
"... but don't actually change anything here or you might [brick your[ computer , I'm just mentioning it ..." yeah, right . Good luck with all of this !
Thio can you make a video on does windows 11 makes your pc slower in all (Boot time, app opening time etc.) (On a device which meets the minimum requirements for windows 11)
One thing i really like in Windows. I can type in the search bar any program in english and it will open up, even if i dont now how its properly called in German :D
iam using window 10 from 2020 my pc Build currenlty my CPU usage is 100% without do anything and i check Task Mnager nothing is working on backgriund its has been 1 week ago i got 100% CPU usage and aslo iam confuse what shoud i do right now for fix it its Shoud i Reinstal Window ? or else if i reinstall window shoud i reinstal aslo my gpu drivers? Thank You
How can I change a start up program to start with admin rights? I've tried checking the Admin togle in properties and adding the shortcut in the startup folder, but the program don't open at start up
Thanks for the tip on on Autoruns! It helped me find a driver that was loading that I could not see otherwise and remove it! Tricky Asus install of Asus System Control Interface that I wanted gone but could not figure out how to uninstall it permanently until Autoruns showed this hidden driver.
I loved watching Mark's malware hunting but you should know its not just malware hunting you can use the tools to figure out all kind of problems with your PC
Speaking of which, I noticed something while using Safe Mode. We all know that clean boot involves disable start-up program in task manager and non-Microsoft program in msconfig but in Safe Mode, most of Microsoft stopped working. It is believe that the computer can work well by disable them, right? What if we disable all the stopped Mirosoft program in msconfig, along software from Task Manager, and boot it normally, it will be a Clean Boot?
Which Windows is it that allows you to add columns to the startup list in the task manager? Even when started as administrator there is no such option in Windows 10 Home.
I once removed some malware from a client's computer consisting of 3 different .cmd files in a restricted TEMP folder. The first two were filled with 1mb and 3mb of Chinese characters while the last had ~200kb of what looked like executable code stuffed into a .cmd file with a few lines of Chinese at the top. They were being blocked from accessing the OS thanks to a security solution I'd installed years prior. In this folder they should not have permission to do much of anything... Couldn't find them in autoruns either. How the heck did they start? I ran Process Monitor to watch the filesystem, then terminated the batch files. They didn't restart themselves. So I double clicked them. Nothing. I dragged a file onto them. Nope. Tried to drag them onto eachother. Still nope. I renamed them. Nope. Then I went up one level and single-clicked the folder containing the batch files. The malware immediately sprang to life. What...? I terminated them and tried again. Same result. The scripts would launch any time I accessed or modified their containing folder. _Somehow._ I remain baffled by this crazy black magic.
Sponsored: The first 100 people to go to blinkist.com/ThioJoe get unlimited access for 1 week to try it out! You’ll also get 25% off if you want the full membership.
Early again
@@bork7430 cool
3rd reply
The steam thing which you say takes 4 minutes is 4 sec since it is 258 ms
You're creative keep going✨✨✨✨✨..
Sender:your brother (Baraa) from Palestine
🇵🇸🇺🇲
I love how he just randomly started giving actual helpful information and didnt tell anybody
When did he stop doing the joke videos haha. I just remember when he used to do that
He did make an announcement video about it tho
he did announce it a while ago
Like 3 years ago
He's been a legit tech channel for a while. This channel is basically "learn tech stuff with Thio Joe."
Also i don't know why it says 2100 seconds bios time, it definitely doesn't take that long
Steam really takes a while to start, Epic Games launcher is faster !
No likes? Here's one for u haha
@@pythondrink second is mine xD
Installing update i guess🤔
14th likeeeee btw why is he a member of his own channel?
I swear ThioJoe made a 180 in his youtube career. I still remember a couple years back when he only made scammy content and was despised by a lot of people. It's genuinly great to see him making ACTUALLY useful content, and in a straight to the point fashion. Props to him!
You know its a wholesome day when Thio uploads
The "CPU at Startup" time in the task manager is just talking about CPU time, it doesn't necessarily mean how long it took for the program to start up, but rather how long the CPU was working on that task, which usually goes outside of the computer's actual startup time
50 yr old IT guy here and I never had a program slip a "start on boot" program into Task Scheduler......until today. Thank you for helping me find that and for all the other useful info in this video.
Yay I love thiojoe videos, especially long ones. I cant wait to watch it
same
And when he uploads yesterday and today
Me too!
Yes, really love the in-depth long form he's been uploading.
same thing for me
Another quality and well-detailed content. You deserve more subscribers 🙂
last bios time: 2000 seconds, whoa you got some slow startup
Yea idk why it said that. I just looked again and this time it says 45 seconds
@@ThioJoe that’s still pretty slow
@@ThioJoe yeh mines like 9.7 secs. You on a hard drive?
@@pyreouss Mine was 5 minutes, after updating it's less but it's still long and every time I log in it automatically opens the OOBE(PC login)
@@wohao_gaster7434 mine is like 3 seconds on a hard drive, because i only have my undervolting software (ThrottleStop) and Intelligent Standby List Cleaner open on startup
2:05 those aren't thousand delimiters, they are commas. It says it takes 258ms of cpu time on startup plus change. That's not real world time that's how many clock cycles it uses divided the clock speed. Cpu times is measured in microseconds and thus task manager shows decimal ms
It is thousand delimiter. Lol at the 2.4 MB on the left side.
First, remember that numeric magnitude calculations are *completely* independent of any units of measure that we humans decide to attribute to them. While we don't want to convert units of time to units of distance, we can surely convert milliseconds to minutes or hours. 😃The column with ThioJoe's long startup rascal is labeled with the ISO designation for milliseconds and there's no reason to doubt that. So, we have 258,842 milliseconds of CPU elapsed time as recorded by the startup logger. Note that the magnitude is simply a number:
(2x10^5) + (5x10^4) + (8 x 10^3) + (8 x 10^2) + (4 x 10^1) + (2 x 10^0) (200,000 + 50,000 + 8,000 + 800 + 40 + 2) 258,842
Looks good, so now we can attach our units to this number: 258,842 ms.
Sure, we could do the conversions in our heads, but it doesn't look too bad written out with the standard keyboard and not Wolfram symbols:
(258,858 ms) x (1 sec / 1000 ms) = (259 sec) x (1 min / 60 sec) = (4.4 min) x (1 hr / 60 min) = 0.073 hr OK, that's how you do this part.
For these CPU measurements, we just wanted the relative CPU elapsed times for all the processes in order to compare the values with other values in our startup task survey. But if you want to examine how we measure CPU timings, these are dependent upon a fast natural oscillator, such as a crystal excited by a small amount of electric current. Atomic clocks aboard fleets of GPS satellites use the incredibly accurate and stable cesium atomic clocks whose oscillation frequencies are produced when cesium atoms are excited using photon beams at certain frequencies. It seems clear that the next major breakthrough in CPU and bus architecture will switch from using electric current from electrons, which have mass, to massless photons that move across some kind of glass fiber bus architecture. We're approaching the limits of how small we can make transistors that require copper and electrons--they're fast, but not as close to light speed as massless photons over fiber optics.
Regardless, that's a completely separate issue from how we measure the usage of CPU instructions by code. I've actually built synthetic benchmark programs for the US EPA's National Computer Center headquarters in Research Triangle Park, NC. A little context for those unfamiliar with this area. The RTP is located equidistant from Duke University, UNC Chapel Hill and North Carolina State University. These benchmarks were later modified and used in the EPA's 10 regional office Computing Centers around the US, of which Washington DC was considered Regional Computing Center One. The point was to develop models that reflected the kinds of workloads the different EPA Program Offices used (e.g., Air and Radiation, Water and Aquifers, Permit Compliance, and the rescue heroes in the HazMat suits from Superfund).
Anyway, we had other modeling software from vendors as well but the objective was to connect increases in work that the Offices understood to hardware and software that we understood, to budgets which everyone understood. After a few years of refining the process, the Congressional Committees responsible for Agency budget approval saw that we didn't guestimate but nailed our requirements without the silly games assuming padding by us and chopping by them. That really made everyone's job easier and a lot more fun. One unexpected result was the referrals to other organizations who needed help getting up to speed in this area. Man did we get loaned out to a bunch of places with three acronyms. Didn't get paid much extra for this but damn the work was fun.
This kind of modeling requires understanding the instruction distribution profiles of the specific programs driving the majority of the overall system workload growth (not to mention memory usage patterns, I/O usage, interrupts to the operating system kernel, etc.). There's no point in buying an awd, hybrid 850 HP Porsche that can whip an 1100 HP RWD engine-only MacLaren in lap times around Laguna Seca Raceway if what you need is a truck with 1000 lb-ft of low RPM torque that can pull a house off its foundation. 😃 But the problem with these deep CPU measurements is that they require custom hardware probes to record these events occurring at incredible speeds--often concurrently on different processors, especially without affecting the performance of what you're trying to measure. It's not much different than trying to catch quantum events at the atomic level; the light wavelengths short enough to reflect off an atomic nucleus proton or neutron, much less a much smaller electron, have frequencies in the X-Ray or even Gamma Ray range--and they will definitely affect their targets, even when using stream of individual photons. So, it's not an easy or inexpensive task to accomplish.
That said, it's often a good strategy to use simpler software monitors to record process CPU active or elapsed wall clock time. Real world time. 😃 Sometimes you just don't need the kind of detail folks think you might, but rather the general relationships and idiosyncrasies of a particular system. Also don't forget that the advertised performance specs of the CPUs that the major vendors use is a bit like the automobile industry's advertised brake horsepower and torque numbers. It's not that they are bad or useless numbers. But all auto makers measure the power output of their engines or motors on an idealized test dyno when the powerplant isn't even in a car. Well, imagine testing it after the cars are assembled. So, I understand why they test samples this way or they'd never move as much product. If purchase a car and then modify it, of course there is no need to remove stuff to test it. So, you rent some time on a different measurement device that records the power where the rubber hits the dyno. That's really all you need to learn--did my changes make it to the drive wheels.
Now, what the CPU manufacturers measure is the two sides of the same coin: oscillations per second in Hertz, and the reciprocal number, which is called the cycle time per unit of time. The second measurement is often thought of as the shortest theoretical period of time in which a CPU can execute an instruction that takes only one CPU cycle to complete. LOL, the Planck CPU time. 😃
Thus, if we measure the most number of stable CPU cycles per second in Hertz units to be 5.0 Gigahertz, this is equivalent to 5.0 billion CPU cycles per second. That could be considered the greatest number of instructions possible in one second. However, most instructions take more than one instruction cycle, some as many as 10 to 20 CPU cycles. Branch prediction cache logic, data caches, multiple pipelines, super pipelines and all sorts of nifty things can increase throughput. Still the number is useful. Knowing that our CPU can execute at 5 Gigahertz or 5.0 billion cycles/second, we use the reciprocal value to determine the CPU has a cycle time of 0.2 nanoseconds per cycle.
5.0 gigahertz 5,000,000,000 cycles/sec
CPU cycle time = 1 sec / 5,000,000,000 cycles = 0.0000000002 sec/cycle = 0.2 ns/cycle
That's how you do this part.
Cheers
i know engagement in your channel is dropped when you started giving priority to quality educational content instead of clickbait garbage videos, but we educated audience is with you all the time.
this channel is the best tech channel in terms of knowledge thiojoe provides
I want to extend my heartfelt gratitude for your invaluable assistance in navigating the intricacies of Windows 11. Your expertise in disabling startup programs has significantly streamlined my system's performance, saving both time and frustration. Your patience and clear instructions made the process seamless, empowering me with newfound knowledge. Your dedication to ensuring my technological experience is smooth and efficient is truly commendable. I'm immensely grateful for your support and guidance. Your professionalism and skill have made a world of difference. Thank you for your outstanding service.❤
For the VirusTotal scan feature, it doesn't mean much, typically malicious services/startup programs use other files to run its malicious behaviour. I would recommend to also manually analyze the files in the folder the service/startup program is in and also in its parent and child folders (mainly .dll and .exe files)
A truck load of information of which I will have to come back to for how to do reference. Very helpful for checking system when for some reason it has slowed in
performance. Thanks Joe.
When you install some programs/applications, they will add themselves to the startup folder. Also, some but not all have an option in the program settings to stop it from opening at Windows start up
This was a very useful video.
I really like the direction you are taking the channel, Thio.
Keep it up!
You are the man!! This is invaluable when a computer is slow. Thanks for the content, keep it up!
Thank you ThioJoe for making great sources into understanding the complexities of the windows operating system.
This is really good for removing any potential viruses hidden in your computer!! Thank you
This is QUALITY CONTENT! 🔥
Strongly agree. The type of information that makes the internet worthwhile.
Second comment woot woot
7:18 ye, for example TeamViewer service starts up automatically for some reason, even though the program itself is not allowed to startup automatically. And I have to keep changing that to manual on each update
"Truly Outstaning Message" in the chapters section is legit helpful! XD
"......on the "innernet........"" (??)
Yes, I'm not sure where D's and T's go.....
That "stock photo searched" is really awesome. Keep it up!
Autoruns (along with some other excellent tools) was made by Mark
Mark Russinovich when he was working in I believe Winternals then Microsoft bought WInternals and therefore become the owners of Autoruns and the entire sysinternals toolkit. Also Microsoft has a weird ability to mess up good things they are involved in.
At Least they ran minecraft well
@@kowhaifan1249 some what well
@@kowhaifan1249 yes and no
Perhaps the most useful video ever posted to TH-cam!!!!
Thanks ThioJoe.
Can you do a video on getting rid of all the temporary and installation files, cabs and folders etc that take up so much space but hide in hidden folders and/or folders/files with long alphanumeric names (even after clearing cache, disk cleanup, browser history deletion)? Oh and another one on properly configuring firewalls (open ports etc)?
Dude just get a program to do that for you.
Yes solve first issue: ccleaner
solve second issue: adgaurd
You are the best ThioJoe now my laptop is not slow anymore , although I have 8 gb ram !
0:51 last bios time 2143 seconds wtf? I know the comment Thio himself made about it but that is literally 35 minutes holy sh**!
This was very helpful. It helped me remove a shortcut in the start-up folder added by an app update with no option to remove it in the app settings.
You make a lot of sensible videos....things we really can us. TY
Thanks man, this answers a lot of questions. Really helpful.
1:01 wtf why is last BIOS time showing 2143.8 Sec where most of computer is 4-8 sec , Is something wrong on your computer ?
Thanks for this video thio, this was the reason that while my pc used only 2gb ram after boot, my lap used 4gb ram.
Dell background apps were eating memory which I was unable to find even in services.msc menu
damn, this method actually lowered my laptop BIOS time from 13.8s to 8.2s. thank you!
An important thing to know about Startup apps: The Startup Settings page Windows 11 shows you defaults to running apps located in C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup. While this works, it runs the original .EXE file without any command line arguments. If you want Windows 11 to start up a Shortcut with its own command line options, you need to put that Shortcut in your User Account's AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup folder.
Well that explains why Discord on my Cisco computer kept on opening, when the computer was starting up. I just went into the Discord settings to disable start on startup.
It looks like Thio is changing from been a little kid posting pranks and finally he giving some useful information..!!
U just helped me so much thank u joe
Thank you!! got rid of so many unidentify files/folders and cant relocate files(possible virus) thanks to you and AUTO RUN
ahh thankyou so much brother. i only use the task manager and task scheduler for managing startup apps but now I'll check all of them..
well TJ i am sure that there are people out there that know what you are saying. i have no idea what you are talking about. but i will keep watching and maybe learn something. keep it up.
17:05 threatening Airdrop 3 with the delete option to assert dominance 😂👍🏼
Very useful video, thanks mate
:O THE COMMAND LINE SECTION IN TASK MANAGER! THANK YOU!
That’s helpful. Using windows for ages I was not aware about the details available in the task manager
Can anyone help me out? I installed UltraViewer from it website, nothing special. But I don't want it to startup with windows10 so I uncheck the box in UltraViewer settings and also in task manager. But it still autostarts every time I turn on my computer
You are a genius ThioJoe. Thanks a lot!
This is great stuff. I particularly liked the pointer to the sysinternals live update folder.
Have you ever done a presentation on sysinternals?
Quality content. Not enough views.
You can reverse autoruns with a bootable usb drive for most entries, a decent boot usb diag disk, or backup registry first.
Wow, have not used Sysinternal sense my desktop support days. Thanks for sharing
Great video 👍
Thx for the heart (edits remove the heart)
Thanks! Very informative.
Maybe the Steam time is from starting games which do usually take a while to load.
Literally just looked this up to help disable Origin Web Helper Service and thats the example you use LOL Talk about providence!
You forgot GPO based startup: HKCU (or HKLM)\software\microsoft\windows\currentversion\policies\explorer
un
Thio joe knows aloat about windows....he's like a windows developer
You are an awesome person. So humble and so helpful!
thx man i cant find some startup softwares on startup list of msconfig
"For the Internet Explorer, this is pretty much obsolete. I don't really know if someone still uses that."
I've never felt so offended by something I 100% agree with. lol
Even the pages tell you to update the browser🤣
Can i ever say: "Now i know everything about Windows!" ?
For me: NO Windows not only gets bigger by the stupid user. It will become bigger and bigger by Microsoft patches.
I have a good example: My daughters laptop - strictly used for office and browsing. She absolutely avoided loading programs since it was so sludgy (due to rotating hard drive). I tried to clean the disk as sorrow as possible. The windows directory was some around 45GB.
Then I installed a SSD. MCT stick, loading some drivers, installing old windows, some tools - ready to work: Windows dir was some below 10 - 16GB.
If you are able to do something against (without complete new installation) - let us hear.
This is a very informative video! Thank you.
Disable all of it and You're basically yeeted
last BIOS time: 2143.8 seconds....lmao
I really needed this one.
I don't know how You do it but Your videos are always helpful and somehow you know when I have a problem you will come with a solution to that very same problem like you were a mind reader. You're awesome!
listening to this while cleaning my room, ill tell you when its clean
That taskmgr context menu... Big shoutout. I just love these context menus popping out of nowhere... Right-click on the Run dialog to see what I'm talking about.
And if you want to go to shell:::{437ff9c0-a07f-4fa0-af80-84b6c6440a16} ("Command folder"), you can Invoke icon size commands if you wish to. Not that it does something...
A very detailed video which is actually useful.
Question: Windows 10 Pro: on every bootup, even after my desktop icons fill the screen, the boot is still not obviously complete because there is a tiny blue circle rotating near or at the mouse pointer. That little circle comes and goes intermittently until it finally stops for good. At that point (for example) your “connect” to online will STAY, and other operations will work better. I would like it if a pop up would appear, say in mid screen, saying “bootup is complete.” This has to be a 3rd party job I think, but it’d still be nice. On my XP machines, clicking “status” under the network (or connectivity “antenna” icon) shows a “disable” option even though at bootup on my system it is already disabled. A little white square appears on the taskbar near that icon, and DISAPPEARS, when the computer is fully booted. Clicking status then says “ENABLE” like it should have in the first place, and I know there will be no more waiting for the boot actions to finish. (That’s just to give you an example in XP, of a way to determine what I am looking for in WIN10.)
this video is actually very helpful, thanks
Do you know of any tools or profiles that can reset my Windows Services settings to a common default as I have run a few 'optimizers' that may have done a few too many opt-ings. I know that I can do your 'In-Place' Windows restore, which may be my best solution, but wanted to know if there was such a 'Services-Resetting' tool that might be available. Thanks for all of your great content, Ken.
Helpful!
Amazing video! Congratulations!
"... but don't actually change anything here or you might [brick your[ computer , I'm just mentioning it ..." yeah, right .
Good luck with all of this !
Thio can you make a video on does windows 11 makes your pc slower in all (Boot time, app opening time etc.)
(On a device which meets the minimum requirements for windows 11)
Thank you so much for this!!
Brilliant, Thanks Joe
One thing i really like in Windows. I can type in the search bar any program in english and it will open up, even if i dont now how its properly called in German :D
Stunning 👍
iam using window 10 from 2020 my pc Build currenlty my CPU usage is 100% without do anything and i check Task Mnager nothing is working on backgriund its has been 1 week ago i got 100% CPU usage and aslo iam confuse what shoud i do right now for fix it its Shoud i Reinstal Window ? or else if i reinstall window shoud i reinstal aslo my gpu drivers? Thank You
sir you should run a debloating script
you can find that on chris titus tech channel
How can I change a start up program to start with admin rights? I've tried checking the Admin togle in properties and adding the shortcut in the startup folder, but the program don't open at start up
tons of thanks...very useful video.. Cheers
You're creative keep going✨✨✨✨✨..
Sender:your brother (Baraa) from Palestine
🇵🇸🇺🇲
takbir..
What thiojoe has a brother is he annoying
I love how the stock video guy at the beginning is clearly saying: "Mann!" in german
Nope
Saying Shit or Scheiße
Thanks for the tip on on Autoruns! It helped me find a driver that was loading that I could not see otherwise and remove it! Tricky Asus install of Asus System Control Interface that I wanted gone but could not figure out how to uninstall it permanently until Autoruns showed this hidden driver.
Dangerous prank idea: bat file in startup that shuts down your pc. No time delay and its almost impossible to fix
I see nzbget, pia backblaze and Google fs... Hmmm interesting setup for media serving
I loved watching Mark's malware hunting but you should know its not just malware hunting you can use the tools to figure out all kind of problems with your PC
2:03 - Those are milliseconds, not seconds, so not over 4 minutes but almost 0.26 seconds.
Speaking of which, I noticed something while using Safe Mode. We all know that clean boot involves disable start-up program in task manager and non-Microsoft program in msconfig but in Safe Mode, most of Microsoft stopped working. It is believe that the computer can work well by disable them, right? What if we disable all the stopped Mirosoft program in msconfig, along software from Task Manager, and boot it normally, it will be a Clean Boot?
Which Windows is it that allows you to add columns to the startup list in the task manager? Even when started as administrator there is no such option in Windows 10 Home.
It must be a limitation of Home. I'm running Win 10 Pro and have the option for more columns.
@@fffrrraannkk I use windows home and I have all the options
Yay a new upload!
I once removed some malware from a client's computer consisting of 3 different .cmd files in a restricted TEMP folder. The first two were filled with 1mb and 3mb of Chinese characters while the last had ~200kb of what looked like executable code stuffed into a .cmd file with a few lines of Chinese at the top. They were being blocked from accessing the OS thanks to a security solution I'd installed years prior. In this folder they should not have permission to do much of anything... Couldn't find them in autoruns either. How the heck did they start?
I ran Process Monitor to watch the filesystem, then terminated the batch files. They didn't restart themselves. So I double clicked them. Nothing. I dragged a file onto them. Nope. Tried to drag them onto eachother. Still nope. I renamed them. Nope.
Then I went up one level and single-clicked the folder containing the batch files. The malware immediately sprang to life. What...? I terminated them and tried again. Same result.
The scripts would launch any time I accessed or modified their containing folder. _Somehow._ I remain baffled by this crazy black magic.
Great video!
QUESTION: Whats that CMD that pops up real quick then disappears when i start my pc?
thiojoe: steam starts at around 2000 seconds on startup
me: waiting for asteroid to run 8 years after startup