An open API service indexing awesome lists of open source software.

https://github.com/ironmansoftware/searchindex

Search Index cmdlet example.
https://github.com/ironmansoftware/searchindex

Last synced: 5 months ago
JSON representation

Search Index cmdlet example.

Awesome Lists containing this project

README

        

# Search Index Cmdlet Example

This repository is an example of a cmdlet library for the Windows Search Index.

## Building

You can use .NET Core 3.0 or later to build this repository.

```powershell
dotnet publish
```

## Usage

You can use this library by importing the `Microsoft.Search.Index.dll` and `searchindex.dll`.

```powershell
Import-Module .\Microsoft.Search.Index.dll
Import-Module .\searchindex.dll

Get-SearchIndexStatus
```