Windows使用问题

windows管理员权限删除文件依然删除不掉

电脑在开机状态下按shift键,选择重启,开机进入高级选项模式,进入命令行模式,使用命令删除此类文件
rd /s /q 文件夹
del /F /S /Q 文件夹

电脑开机外置键盘无法使用
进入设备管理器发现键盘下的PC/AT 增强型PS/2键盘驱动为感叹号
打开注册表,此时键盘无法使用,那就进入C盘Windows文件下双击regedit.exe文件打开注册表,依次进入HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E96B-E325-11CE-BFC1-08002BE10318}
删除UpperFilters项
在设备管理器下的键盘选项里删除PC/AT 增强型PS/2键盘
卸载此设备,重新启动。
此时安装驱动会提示错误代码10,该设备无法启动。

接着修改注册表:HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E96B-E325-11CE-BFC1-08002BE10318}
添加字符串UpperFilters项,内容为kbdclass
卸载设备,重新启动。
重新启动后问题得以解决。

彻底清理C盘垃圾文件

在桌面新建一个txt文本,将下面的代码复制过去,另存为.bat文件,右键以管理员身份运行即可

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@echo off
echo Cleaning junk files,please waiting......
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
del /f /s /q %systemdrive%\*.log
del /f /s /q %systemdrive%\*.gid
del /f /s /q %systemdrive%\*.chk
del /f /s /q %systemdrive%\*.old
del /f /s /q %systemdrive%\recycled\*.*
del /f /s /q %windir%\*.bak
del /f /s /q %windir%\prefetch\*.*
rd /s /q %windir%\temp & md %windir%\temp
del /f /q %userprofile%\cookies\*.*
del /f /q %userprofile%\recent\*.*
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
del /f /s /q "%userprofile%\recent\*.*"
echo Clean up completed!
echo. & pause