Of course, there are many ways to forcibly delete, such as using some professional removal tools, or removed from the DOS interface, into safe mode to delete, etc., but for the folder with the point of the effect is not ideal. Let me introduce two methods for you:
One, run-enter cmd into command prompt mode, and then enter:
RD/S/q d:\123
Where the d:\123 for your folder name, this line means to delete the 123 folder under D disk
Second, the first method is more popular, if not solved, then use the following
@echo Offecho y[color= #0000ff]|cacls "%1"/g everyone:f 2>nul 1>nulcd/d "%1" for/f%%i in (' dir/b/a ') do Echo Y|cacls "%%i"/g everyone:f 2>nul 1>NULCD. Rd/s/q%1 2>nul 1>nul&&goto skiprd/s/q%1.\ 2>nul 1>nul:skipexit
Copy the above code and save it as a. bat suffix file, drag and drop the folder you want to delete.
Forcibly delete a folder with points