pokerLife / wiki

开发手册、心得体会、常用网址、学习教程、常见问题梳理,持续更新中
https://pokerlife.github.io/wiki/
13 stars 7 forks source link

Windows使用技巧整理 #80

Open pokerLife opened 5 years ago

pokerLife commented 5 years ago

目录结构

pokerLife commented 5 years ago

💯 Windows10开启卓越性能

打开PowerShell(管理员模式):Win+X,选择 image 输入如下命令:

powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61

现有电源方案:

电源方案:381b4222-f694-41f0-9685-ff5bb260df2e(平衡)

电源方案:8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c(高性能)

电源方案:a1841308-3541-4fab-bc81-f71556f20b4a(节电器)

电源方案:e9a42b02-d5df-448d-aa00-03f14749eb61(终极性能)

pokerLife commented 5 years ago

🎲 Windows10家庭版的功能中没有Hyper-V的解决方法

将下面的内容复制到编辑器或者记事本当中

pushd "%~dp0"
dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt
for /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i"
del hyper-v.txt
Dism /online /enable-feature /featurename:Microsoft-Hyper-V-All /LimitAccess /ALL

进行保存,保存为Hyper-V.cmd

在系统桌面上,我们找到并右键点击【Hyper-V.cmd】文件图标,在右键菜单中点击:以管理员身份运行(A)

然后弹出一个 用户帐户控制 – Windows命令处理程序 对话框,我们点击:是

紧接着进行Windows命令处理,我们等待处理完成以后 在最末处输入:Y,电脑自动重启,进行配置更新。注意:不能关闭计算机

配置更新重启完成以后,我们去控制面板、所有控制面板项、程序和功能,点击启用或关闭Windows功能,就会发现我们已经有了Hyper-v功能:

image

pokerLife commented 4 years ago

📦 快速提取ppt中的图片、视频资源

image

image

pokerLife commented 4 years ago

🤙 批量提取文件夹内文件名

  1. 新建一个.bat文件输入DIR . /B >LIST.TXT
  2. 然后新建一个txt文件命名为list(注意windows下不区分大小写)
  3. 运行.bat
pokerLife commented 4 years ago

🌮 生成文件夹目录

进入顶层文件夹,在地址栏里面输入cmd,使用dos命令:

tree /f >文件夹目录.txt

如果出现拒绝访问的情况需要更改文件夹访问权限。