kernalix7--winpodx
3e779be6f3
CI / lint (push) Failing after 13m4s
CI / test (3.11, ubuntu-latest) (push) Failing after 2m4s
CI / test (3.13, ubuntu-latest) (push) Successful in 13m30s
CI / test (3.14, ubuntu-latest) (push) Successful in 17m21s
CI / test (3.12, ubuntu-latest) (push) Successful in 17m55s
CI / discover-apps-ps (push) Successful in 1m56s
CI / test (3.9, ubuntu-latest) (push) Successful in 13m17s
CI / test (3.10, ubuntu-latest) (push) Successful in 26m21s
CI / audit (push) Successful in 13m38s
Deploy site / deploy (push) Has been cancelled
CI / test (3.14, ubuntu-24.04-arm) (push) Has been cancelled
13 行
628 B
PowerShell
13 行
628 B
PowerShell
# SPDX-License-Identifier: MIT
|
|
# winpodx debloat: Windows Search indexing service.
|
|
#
|
|
# HIGH RISK item -- this is the *indexing* side of search, not the
|
|
# Cortana/Bing web result side (web_search.ps1). With WSearch off,
|
|
# Start menu app launches still work, but Start menu file search
|
|
# becomes file-system-walk slow. Keep on if you live in Start menu
|
|
# search; turn off if you live in alt-tab + File Explorer.
|
|
|
|
Write-Host "[search_indexing] Stopping + disabling WSearch service..."
|
|
Stop-Service -Name "WSearch" -Force -ErrorAction SilentlyContinue
|
|
Set-Service -Name "WSearch" -StartupType Disabled -ErrorAction SilentlyContinue
|