Home Common Problem What to do if system thread restarts indefinitely

What to do if system thread restarts indefinitely

Jan 13, 2020 pm 05:02 PM
system thread infinite restart

What to do if system thread restarts indefinitely

Cause of the problem: This problem may be caused by 4K alignment, NTFS, and compact. The two newly configured servers happen to be For 4Kn disks, compact is a method used by Microsoft to compress files. Some key driver files cannot be used normally after being compressed, resulting in a blue screen at boot.

What to do if system thread restarts indefinitely

Solution:

#1. Enter the RECOVERY environment (press F8 on boot to select Repair Computer, Advanced Options menu, open command prompt symbol)

2. Enter: c:\windows\system32\compact.exe /U c:\windows\system32\drivers\*.sys

3. It will prompt how much has been decompressed. file, check whether the file that reported the error is included in the decompression list, and you can enter the system after restarting.

4. Open the command prompt (administrator) and enter:

fsutil behavior set DisableCompression 1
Copy after login

5. This problem will not occur after restarting.

For more FAQ, please visit the PHP Chinese website.

The above is the detailed content of What to do if system thread restarts indefinitely. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Java documentation interpretation: Usage analysis of the currentTimeMillis() method of the System class Java documentation interpretation: Usage analysis of the currentTimeMillis() method of the System class Nov 03, 2023 am 09:30 AM

Java document interpretation: Usage analysis of the currentTimeMillis() method of the System class, specific code examples are required. In Java programming, the System class is a very important class, which encapsulates some properties and operations related to the system. Among them, the currentTimeMillis method is a very commonly used method in the System class. This article will explain the method in detail and provide code examples. 1. Overview of currentTimeMillis method

What are the differences between Runnable and Thread in Java? What are the differences between Runnable and Thread in Java? May 07, 2023 pm 05:19 PM

There are two ways to implement multi-threading in Java, one is to inherit the Thread class, and the other is to implement the Runnable interface; the Thread class is defined in the java.lang package. As long as a class inherits the Thread class and overrides the run() method in this class, it can implement multi-threaded operations. However, a class can only inherit one parent class, which is a limitation of this method. Let’s look at an example: packageorg.thread.demo;classMyThreadextendsThread{privateStringname;publicMyThread(Stringname){super();this

Start a new thread using java's Thread.start() function Start a new thread using java's Thread.start() function Jul 24, 2023 pm 11:01 PM

Use Java's Thread.start() function to start a new thread. In Java, we can use multi-threading to execute multiple tasks concurrently. Java provides the Thread class to create and manage threads. The start() function in the Thread class is used to start a new thread and execute the code in the run() method of the thread. Code example: publicclassMyThreadextendsThread{@Overr

How does Thread generate an interface in java? How does Thread generate an interface in java? May 17, 2023 pm 12:49 PM

In java, when it comes to threads, Thread is essential. A thread is a lighter scheduled executor than a process. Why use threads? By using threads, you can separate resource allocation and execution scheduling in operating system processes. Each thread can not only share process resources (memory address, file I/O, etc.), but can also be scheduled independently (thread is the basic unit of CPU scheduling). Note 1. Thread is the most important class for making threads, and the word itself also represents thread. 2. The Thread class implements the Runnable interface. Instance publicclassThreadDemoextendsThread{publicvoidrun(){for(inti=0

Win10 blue screen error: System service exception Win10 blue screen error: System service exception Dec 29, 2023 pm 04:04 PM

The win10 system is a very easy-to-use and highly intelligent system. Its strong compatibility can ensure that the system will basically not have any problems during normal use. However, as people continue to use the win10 system, sometimes the system will also have problems. The problem of Win10 booting blue screen termination code SystemServiceException. Today I will bring you the solution to Win10 booting Blue Screen termination code SystemServiceException. If you need it, please download it quickly. Solution to win10systemserviceexception blue screen: Method 1: 1. Use Windows key + R to open Run and enter “contr

What is the computer system? What is the computer system? Feb 22, 2023 am 10:25 AM

The computer system is a relatively common system process. You will often see system when viewing the process. This process simply means the computer system; however, if the system.exe process appears on the computer, it needs to be deleted in time. , this is a file generated by a Trojan horse virus. There is no exe suffix behind the real system.

What should I do if win7 is ready to be equipped with windows infinite restart? Win7 is ready to be equipped with windows infinite restart. What should I do if win7 is ready to be equipped with windows infinite restart? Win7 is ready to be equipped with windows infinite restart. Jul 12, 2023 pm 07:29 PM

Many win7 users have encountered the situation where the computer shows that it is ready to configure Windows and then restarts indefinitely. What should they do? You first restart the computer, press F8 to enter safe mode, then open Control Panel, click Uninstall under the program, then view more installed updates, and then load the latest online files in the opening interface. Once done, just restart the computer and return to normal mode. What to do if win7 is equipped with windows infinite restart: 1. Restart the operating system and use the F8 key to enter the security center of the operating system. 2. After entering the method, you will enter the control panel of the operating system and search for uninstallation. 3. Check for installed upgrades. 4. Open and then proceed

Overview of Thread threads in C# Overview of Thread threads in C# Feb 18, 2024 am 11:20 AM

Introduction to Thread in C#, specific code examples are required. In C#, Thread (thread) is an independent execution path for executing code. By using threads, we can execute multiple tasks in parallel and improve the performance and responsiveness of the program. This article will introduce the basic concepts, usage and related code examples of Thread threads in C#. 1. The basic concept of threads Threads are the basic execution units in the operating system. In C#, the Thread class is the primary tool for creating and manipulating threads. Threads can