Posted On July 18, 2022

How to Disable Disk Checking on Windows Bootup

kimconnect 0 comments
blog.KimConnect.com >> Windows >> How to Disable Disk Checking on Windows Bootup

Run CMD or PowerShell as Administrator

Issue this command to exclude checking of Systems volume

chkntfs /x c:

To exclude other volumes, simply rerun the above command in this format

chkntfs /x {driveLetter}:

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Setting Windows Security Auditing via Command Line

Please be advised that the follow auditpol cmdlet would be overridden by Group Policies in…

Puppet Client Server Lab Setup

Server # Setup client machine name sudo vim /etc/hosts ## Insert this line ## xx.xx.xx.xx…

PowerShell: Install Apps On List of Computers

[string[]]$computers=@( 'SERVER01', 'SERVER02', 'SERVER03' ) [string]$chocoAppName='notepad2' [version]$minVersion='4.2.25.20160422' $results=[hashtable]@{} foreach ($computer in $computers){ $result=invoke-command -computer $computer…