https://www.voidtools.com/support/everything/searching/

打开多个everything进程

https://www.voidtools.com/support/everything/multiple_instances/

Multiple Instances

By default there is only one instance of Everything.

When you run Everything.exe it will check for an existing instance. If an existing instance is found the command line options are sent and processed by the existing instance. If no existing instance is found a new one is created.

To run multiple instances of Everything use Named instances.

Named instances

By default Everything uses the unnamed instance.

Assign unique names to Everything instances to use multiple instances.

There can only be one instance for each unique name.

To assign a name to the instance:

Use the -instance command line option to specify the instance name when starting Everything.exe.

For example:

Everything.exe -instance "ETP Server"

Named instances use unique settings and data.

For example, the named instanced "ETP Server" will use Everything-ETP SERVER.ini as the settings file.

The name of the instance is located in the Everything search window
caption and in the tooltip when hovering over the tray icon with the
cursor.

在指定文件夹中进行搜索

比如想要在E:\GitHub\KerryJiang\SuperSocket-dotnetcore文件夹中搜索log4net

log4net E:\GitHub\KerryJiang\SuperSocket-dotnetcore

如果路径中带有空格的话,需要加双引号

SE_Point_File_mapping (1).xls "D:\ChuckLu\Installation packages"

右键菜单中增加everything

忽略配置

搜到不到sql文件或者vsdx文件

确保搜索的是everything,而不是document或audio之类的

仅搜索文件夹名字

folder:"red gate"

end with

endwith:<text> Filenames (including extension) ending with text.

通过正则来实现start with 和end with的组合

regex:^al.exe$

folder:regex:^powershell$

随机推荐

  1. Android 微信分享不出去?四步搞定!

    现在做的项目中集成了友盟分享,产品要求集成微信.朋友圈.QQ.QQ空间.短信这几个分享平台.按照友盟的文档集成一切都很顺利,集成成功以后测试QQ.QQ空间.短信都没有问题,唯独微信和朋友圈一直分享不出 ...

  2. C# windform自定义控件的属性小知识

    word中的加粗变斜之类的一直让我以为是button,直到我接触了自定义控件,才发现实现这种机能最好的是CheckBox,然后我们在做一个系统的时候,这种控件有可能要用好多次,总不能在用一次的时候,就 ...

  3. html——标签选择器

    交集选择器:标签+类(ID)选择器{属性:值:}.即要满足使用了某个标签,还要满足使用了类(id)选择器. <!DOCTYPE html> <html> <head> ...

  4. SQL基本操作——COVERT

    CONVERT() 函数是把日期转换为新数据类型的通用函数.CONVERT() 函数可以用不同的格式显示日期/时间数据. --语法 CONVERT(data_type(length),data_to_ ...

  5. 如何利用Flashback Query 恢复误删除的数据

    网上有很多关于数据回复的文章,这里整理一篇供大家参考,希望能帮助的大家! 推荐一家即时通讯云服务商:www.yun2win.com,功能包含im即时通讯.实时音视频.电子白板.屏幕共享的多种融合通讯云 ...

  6. 1.CentOS安装Redis

    首要条件:安装VMware,在虚拟机中安装CentOS. 第一次接触CentOS的开发者最好是在虚拟机手动一步步进行安装,并且系统环境选择开发环境,这样可以避免后期自己要安装诸多运行库. 安装步骤: ...

  7. IOS7升级攻略

    1) Select the main view, set the background color to black (or whatever color you want the status ba ...

  8. 一步一步教你用IntelliJ IDEA 搭建SSM框架(2)——配置mybatis-geneator

    我们要搭建整个SSM框架,所以要继续上篇文章没有完成的工作,下面配置mybatis-geneator,自动生成mybatis代码. 在上篇文章中的pom.xml的配置文件中已经加了mybatis-ge ...

  9. zabbix实现163邮件报警

    Zabbix 邮件报警 电脑登录网易邮箱配置,把自己的授权码看一下,并写入配置文件 server端安装配置邮件服务器 [root@server ~]# yum -y install mailx dos ...

  10. CF176E Archaeology(set用法提示)

    题目大意: 给一棵树,每次激活或熄灭一个点,每次问这些点都联通起来所需的最小总边权 分析: 若根据dfs序给所有点排序,为$v1,v2,v3....vk$,那么答案就是$(dis(v1,v2)+dis ...