Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mawosoft/WindowsSearchManager
Powershell module for managing Windows Search.
https://github.com/mawosoft/WindowsSearchManager
powershell psmodule search searchapi searchmanager windows wsearch
Last synced: 1 day ago
JSON representation
Powershell module for managing Windows Search.
- Host: GitHub
- URL: https://github.com/mawosoft/WindowsSearchManager
- Owner: mawosoft
- License: mit
- Created: 2023-01-25T17:35:56.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-09-15T09:19:49.000Z (about 2 months ago)
- Last Synced: 2024-09-15T12:04:21.222Z (about 2 months ago)
- Topics: powershell, psmodule, search, searchapi, searchmanager, windows, wsearch
- Language: C#
- Homepage: https://mawosoft.github.io/WindowsSearchManager/
- Size: 1.7 MB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Windows Search Manager
[![PSGallery](https://img.shields.io/powershellgallery/v/WindowsSearchManager.svg?logo=powershell&label=PSGallery&color=orange&logoColor=white)](https://www.powershellgallery.com/packages/WindowsSearchManager/)
[![CI/CD](https://github.com/mawosoft/WindowsSearchManager/actions/workflows/ci.yml/badge.svg)](https://github.com/mawosoft/WindowsSearchManager/actions/workflows/ci.yml)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)Powershell module for managing Windows Search. With WindowsSearchManager you can:
- Manage global Windows Search settings across catalogs
- Manage individual search catalogs (content indexes)
- Manage search roots (content stores)
- Manage search rules (what is and what isn't indexed)To learn more, see the [Documentation](https://mawosoft.github.io/WindowsSearchManager/).
## Installation
You can install WindowsSearchManager from the PowerShell Gallery.
```powershell
Install-Module -Name WindowsSearchManager
```### CI Feed
To install the latest build from the [CI feed](https://dev.azure.com/mawosoft-de/public/_packaging?_a=feed&feed=public):
```powershell
Register-PSRepository -Name mawosoft-nightly -SourceLocation https://pkgs.dev.azure.com/mawosoft-de/public/_packaging/public/nuget/v2/
Install-Module -Name WindowsSearchManager -Repository mawosoft-nightly -AllowPrerelease -Force
```