快速打开方式
win+r 输入 powershell
shift+鼠标右键
目录操作命令
pwd 显示当前目录路径
mkdir 创建空目录
rmdir 删除目录
cd 切换目录
ls 显示目录列表
文件操作命令
new-item 创建文件
rm 删除文件
mv移动
cat 全部显示文件内容
more 逐页显示
Fluent Terminal安装设置
Fluent Terminal 是利用原生 Windows 10 最新的 UWP 技术打造而成,它是专属于 Windows 平台,利用 UWP 技术打造的颜值超高的终端模拟器。其响应速度仅稍逊于自带的默认 PowerShell 终端。值得推荐。??
Fluent Terminal 在 GitHub 上面开源,项目地址在:。我们需要从 下载安装它。
解压之后,我们得到如下的文件目录:
安装 Fluent Terminal
右键点击 Install.ps1
,选择使用 PowerShell 运行,之后按照提示操作即可安装成功。
添加到右键菜单
添加鼠标右键菜单 新建文本,将以下脚本复制到文本中,另存为Install.bat,双击打开Install.bat即可
reg add "HKCU\Software\Classes\Directory\shell\Open Fluent Terminal here\command" /d "\"%LOCALAPPDATA%\Microsoft\WindowsApps\flute.exe\" new \"%%1\"" /f
?
reg add "HKCU\Software\Classes\Directory\Background\shell\Open Fluent Terminal here\command" /d "\"%LOCALAPPDATA%\Microsoft\WindowsApps\flute.exe\" new \"%%V\"" /f
?
reg add "HKCU\Software\Classes\LibraryFolder\Background\shell\Open Fluent Terminal here\command" /d "\"%LOCALAPPDATA%\Microsoft\WindowsApps\flute.exe\" new \"%%V\"" /f
删除鼠标右键菜单 操作同上,另存为Uninstall.bat,命令如下:
reg delete "HKCU\Software\Classes\Directory\shell\Open Fluent Terminal here" /f
?
reg delete "HKCU\Software\Classes\Directory\Background\shell\Open Fluent Terminal here" /f
?
reg delete "HKCU\Software\Classes\LibraryFolder\Background\shell\Open Fluent Terminal here" /f
其中Open Fluent Terminal here 是右键显示文字,如果出现中文乱码,regedit 打开注册表编辑器 ,复制路径修改即 可
参考文章
[?] https://sspai.com/post/52868#! 告别 Windows 终端的难看难用,从改造 PowerShell 的外观开始