Win 端的神器,你们都用哪些?我自用 AHK、PowerToys、ShareX 等

2022-04-07 23:01:28 +08:00
 ALLROBOT

这些宝藏效率软件,实在挺难留心的,也许只有去 Github 搜 awesome xxx 才能有一番收获

网上的软件站包罗万象,各种简单的工具挺全,但实在没啥欲望下载来,工具效率不咋地,又没啥扩展能力

日常用的 Gitsicle 、everything 、ffpmeg 、ShareX 、snipaste 、PowerToys 、AutoHotKe 、XYplorer 等等,我都不知道我用了多少个软件,反正一个个挺好用的🤣,效率蹭蹭往上涨,左边的表情我是安装 PowerToys ,看了说明才知道 win10 支持按win+;弹出符号列表的

😅

uTools ,本论坛的 IMGURL 推广贴看到 OP 声称支持 ShareX 和 uTools 上传服务,我只用过 ShareX ,没听说 uTools ,起了好奇心搜下就搜到一款高效率工具了。。。

AHK 啥,一款键盘神器,捕获 windwos 事件并且执行自定义脚本

everything ,提供的指令能很好搜文件,支持云端存储文件目录等等

XYplorer ,Upus 之类的文件资源管理器,使用体验比 win 原生好用些.....

兄弟萌,来推荐你们常用的效率神器吧

12302 次点击
所在节点    程序员
90 条回复
alluofuyo
2022-04-08 01:43:43 +08:00
@AlexShui 以前用 Listary 打开软件,现在发现 Windows+S 键更快,更好
sugarsalt
2022-04-08 01:45:17 +08:00
WindowGrid ,按网格排布窗口
shijingshijing
2022-04-08 03:27:21 +08:00
Agent Ransack
open classic shell
7+ Taskbar Tweaker

Win 7 之后还想继续畅快运行 Windows 的三剑客
LeslieLeung
2022-04-08 05:22:35 +08:00
@Tanix2 #7 试试用 capslock+wasd 做方向键 简直不要太爽
C02TobNClov1Dz56
2022-04-08 09:05:48 +08:00
@caqiko AHK 我是用来在任意文件夹下按 ctrl+F 打开 everything 搜索,而且还要定位到当前目录。
C02TobNClov1Dz56
2022-04-08 09:06:21 +08:00
#SingleInstance Force

#NoTrayIcon ;Delete this line if you want the tray icon to be visible.
EverythingPath := "Everything.exe" ;If your everything.exe isn't here, fix that. Keep the quotes.
MyUsername := "chengyq" ;Go to %userprofile% and change this to the title of that window. Keep the quotes.
MyRecycleBin := "回收站" ;Go to your Recycle Bin and change this to the title of that window. Keep the quotes.
MyThisPC := "此电脑" ;Go to your This PC and change this to the title of that window. Keep the quotes.
MyDownloads := "下载"
MyVideos := "视频"
MyDocuments := "文档"
MyPictures := "图片"
MyMusic := "音乐"
MyDesktop := "桌面"
MyThreeDObject := "3D 对象"

;You can delete below blocks if you don't want the features. Replace ^F with F3 if you are using that instead.

;BLOCK 1 - DESKTOP
#IfWinActive, ahk_class WorkerW
^F::
RunPath := "-p ""%UserProfile%" . "\" . "Desktop" . "\"""
Run, %EverythingPath% %RunPath%
Return

#IfWinActive, ahk_class Progman
^F::
RunPath := "-p ""%UserProfile%" . "\" . "Desktop" . "\"""
Run, %EverythingPath% %RunPath%
Return


;BLOCK 2 - TASKBARS
#IfWinActive, ahk_class Shell_TrayWnd
^F::
Run, %EverythingPath%
Return

#IfWinActive, ahk_class Shell_SecondaryTrayWnd
^F::
Run, %EverythingPath%
Return


;BLOCK 3 - EXPLORER WINDOW
#IfWinActive, ahk_class CabinetWClass
^F::
ControlGetText, RunPath, ToolbarWindow323, A
RunPath := SubStr(RunPath, 5)
isnotauserfolder := ":\"
IfNotInString, RunPath, %isnotauserfolder%
{
if (RunPath == MyThisPC)
{
RunPath := ""
} else if (RunPath == MyUsername) {
RunPath := "-p ""%UserProfile%"""
} else if (RunPath == MyRecycleBin) {
RunPath := "-s ""\$RECYCLE.BIN """
} else if (RunPath == MyDownloads) {
RunPath := "-p ""%UserProfile%" . "\" . "Downloads" . "\"""
} else if (RunPath == MyVideos) {
RunPath := "-p ""%UserProfile%" . "\" . "Videos" . "\"""
} else if (RunPath == MyDocuments) {
RunPath := "-p ""%UserProfile%" . "\" . "Documents" . "\"""
} else if (RunPath == MyPictures) {
RunPath := "-p ""%UserProfile%" . "\" . "Pictures" . "\"""
} else if (RunPath == MyMusic) {
RunPath := "-p ""%UserProfile%" . "\" . "Music" . "\"""
} else if (RunPath == MyDesktop) {
RunPath := "-p ""%UserProfile%" . "\" . "Desktop" . "\"""
} else if (RunPath == MyThreeDObject) {
RunPath := "-p ""%UserProfile%" . "\" . "3D Objects" . "\"""
} else {
RunPath := "-p ""%UserProfile%" . "\" . RunPath . "\"""
}
} else {
RunPath := "-p """ . RunPath . """"
}
Run, %EverythingPath% %RunPath%
Return

;#If
C02TobNClov1Dz56
2022-04-08 09:06:55 +08:00
代码缩进没了,用这个吧
https://paste.org.cn/6zmAwsaq7z
AlexShui
2022-04-08 09:37:13 +08:00
@gam2046 这个功能虽然是自带的,但我几乎没用过,能不能记录我常用软件?输入前两个字母就打开软件?例如,打开微信输入 wx 回车。打开 Charles 输入 ch 回车。( Chrome 是一直放在任务栏,不会使用 utools 打开)
AlexShui
2022-04-08 09:38:08 +08:00
@alluofuyo 能不能记录我常用软件?输入前两个字母就打开软件?例如,打开微信输入 wx 回车。打开 Charles 输入 ch 回车。( Chrome 是一直放在任务栏,不会使用 utools 打开
Vincent103
2022-04-08 09:39:33 +08:00
1.虫洞——电脑控制手机
2.ZoomIt——演示必备辅助软件
3.之前 win10 以下的系统还用个 wizmouse ,win10 之后感觉没必要了
ALLROBOT
2022-04-08 09:44:13 +08:00
xtreme1
2022-04-08 09:44:39 +08:00
listary/wox(powertoys run 是继承自 wox)/utools 这类工具都用过不短时间.
真的能提高效率么, 我觉得其实也没有..
现在还是回归系统自带了.
brucmao
2022-04-08 09:58:30 +08:00
totalcommander 文件管理软件,完爆 XYplorer
WGestures2 全局手势
wedfds
2022-04-08 10:03:22 +08:00
FileLocator Pro
cmdOptionKana
2022-04-08 10:19:00 +08:00
Total Commander 有些功能确实蛮好的,比如文件夹对比,批量改名。

另外上面有人提到 FastCopy 也是我常备的小软件,虽然使用频率很低,但复制大量文件时没它心里不踏实。
ye4241
2022-04-08 10:19:33 +08:00
我用 AutoIt 替代 AHK 的,当时 AHK 的句柄相关获取复用真的奇葩,弄了半天没搞定,转 AutoIt ,几分钟脚本就写完了。
0x49
2022-04-08 10:28:16 +08:00
yucongo
2022-04-08 10:30:31 +08:00
xplorer2
xzm1006
2022-04-08 10:36:28 +08:00
Quick StartUp ,Windows 启动管理工具,我主要是把不常用的程序设定往后延迟启动,比如 1 分钟后启动,3 分钟后启动,这样开机不会卡,不过到 windows11 好像不起作用了,希望推荐个同类的软件
Just1n
2022-04-08 10:50:02 +08:00

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://ex.noerr.eu.org/t/845584

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX