Windows 10支持NTFS驱动器的透明压缩功能,也就是整个驱动器都是压缩格式,写入文件自动压缩以节约磁盘空间。
但是在启用压缩功能时,会提示需要Administrator权限:
How to enable the hidden Windows 10 administrator account
- 右击
Command Prompt
,然后选择run as administrator
- 输入并运行以下命令
net user administrator /active:yes
- 如果要激活guest账号,可以执行
net user guest /active:yes
- 此时已经激活了administrator账号,也就是可以使用administrator账号登陆,但是默认没有密码
- 强烈建议使用密码保护 administrator 账号
net user administrator *
在激活了administrator账号之后,使用administrator账号登陆,然后就可以进行磁盘压缩功能。
- 使用
Windows键+I
启动Settings
功能 - 点击
Accounts
- 点击
Family & other people
- 在
Other people
中选择用户账号,然后点击Change account type
- 在账号类型中选择
Administrator
- 最后点击
OK
- 使用
Windows键+X
启动Control Panel
功能 ...