如何配置Windows 10索引的脚本?

时间:2016-08-18 21:04:12

标签: windows powershell

Windows搜索基于Windows索引设置(如下所示)。

我需要制作一个powershell脚本(所以这里的所有人都可以运行脚本来配置),以:

  • 将appro dir struct添加到索引位置列表
  • 设置Visual Studio文件类型列表以索引文件内容

这样的剧本会是什么样的?

enter image description here enter image description here

1 个答案:

答案 0 :(得分:1)

似乎可以通过注册表添加和更改文件类型。

要添加新的文件类型并使用“纯文本过滤器”将其设置为“属性和文件内容”,请在以下位置创建一个密钥:Computer \ HKEY_CLASSES_ROOT [.extensionYouWantToAdd] \ PersistentHandler

将(默认)值设置为

类型:REG_RZ,数据:{5E941D80-BF96-11CD-B579-08002B30BFEB}

我不确定,但是我敢怀疑GUID指定应使用纯文本过滤器。

我想也可以用类似的方式更改索引位置。

我通过手动添加新文件类型,然后搜索注册表并查找所做的更改来解决此问题。我已经确认这项工作可行,并且还发现了推荐相同技术的这篇文章:https://www.itprotoday.com/windows-78/how-can-i-include-specific-file-type-file-system-search-under-windows-xp

对于我来说,我将通过其他方法来编辑注册表,但是似乎也可以通过Powershell来实现,如下所示:https://blog.netwrix.com/2018/09/11/how-to-get-edit-create-and-delete-registry-keys-with-powershell/

更改注册表后,您将需要告诉索引重新生成。 (覆盖在这里:How to rebuild Windows Search Index by using PowerShell?