How to use PowerShell to stop/start all ION services in Power Monitoring Expert
Issue
The PME Windows services need to be restarted without having to individually stop and start each one.
Product Line
Power Monitoring Expert 9.0
Power Monitoring Expert 2020
Power Monitoring Expert 2021
Power Monitoring Expert 2022
Power Monitoring Expert 2023
Power Monitoring Expert 2024
Environment:
Windows Services
Windows PowerShell
Resolution:
1. Go to the Windows Start Menu and search "Windows PowerShell"
2. Right-click on Windows PowerShell > Run as Administrator
3. Run the following command to stop all ION services:
Get-Service -DisplayName ION* | Stop-Service -Force
4. Run the following command to start all required ION services:
Get-Service -DisplayName ION* | Where-Object { $_.StartType -like 'Automatic*' } | Start-Service
Udgivet til: Schneider Electric Danmark

