To stop a single service you can use the Powershell "Stop-Service command.
stop-service "Archive Full Text Index Service" -force
To stop all the services with a script copy the following into a new text file and name with a ".ps1" file extension.
## Start script to stop all Archive Manager Services
$services = Get-WmiObject Win32_Service
foreach ($line in $services) {
$service = $line.displayname
$status = $line.state
$startup = $line.startmode
if ($service -like "Archive Manager*") {
if (($status -eq "Running") -and ($startup -eq "Auto")) {
write-host $service" needs to be stopped. Stopping it now."
stop-service $service -force
}
}
}
foreach ($line in $services) {
$service = $line.displayname
$status = $line.state
$startup = $line.startmode
if ($service -like "Archive Manager*") {
get-service $service
}
}
Read-Host "Press Enter to Exit"
##End script to stop services.
Right click on the script and select run with powershell.