Blackberry Powershell script to retart services
HeroPsycho
Inactive Imported Users Posts: 1,940
Wrote me first PowerShell script. It recycles Blackberry Services in the proper order according to Blackberry support docs. Enjoy!
Get-Service Blackberry* | Stop-Service
Start-Service "Blackberry Router"
Start-Service "Blackberry Dispatcher"
Start-Service "Blackberry Controller"
Get-Service Blackberry* -Exclude "Blackberry Database Consistency Service" | Where-Object {$_.Status -eq "Stopped"} | Start-Service
Get-Service Blackberry* | Stop-Service
Start-Service "Blackberry Router"
Start-Service "Blackberry Dispatcher"
Start-Service "Blackberry Controller"
Get-Service Blackberry* -Exclude "Blackberry Database Consistency Service" | Where-Object {$_.Status -eq "Stopped"} | Start-Service
Good luck to all!
Comments
-
astorrs Member Posts: 3,139 ■■■■■■□□□□HeroPsycho wrote:Wrote me first PowerShell script. It recycles Blackberry Services in the proper order according to Blackberry support docs. Enjoy!
Get-Service Blackberry* | Stop-Service
Start-Service "Blackberry Router"
Start-Service "Blackberry Dispatcher"
Start-Service "Blackberry Controller"
Get-Service Blackberry* -Exclude "Blackberry Database Consistency Service" | Where-Object {$_.Status -eq "Stopped"} | Start-Service -
dynamik Banned Posts: 12,312 ■■■■■■■■■□So you explicitly started those services in the middle because they need to be started in a specific order? Then the last line starts all the others (except from the consistency service) because the order of those doesn't matter? I'm haven't really delved into Powershell, and I'm not familiar with Blackberry services. I'm just trying to figure out what's going on
-
HeroPsycho Inactive Imported Users Posts: 1,940dynamik wrote:So you explicitly started those services in the middle because they need to be started in a specific order? Then the last line starts all the others (except from the consistency service) because the order of those doesn't matter? I'm haven't really delved into Powershell, and I'm not familiar with Blackberry services. I'm just trying to figure out what's going on
Aye, matey! YAAAAAAAAAAAAAAAAAAAAAAAAR!Good luck to all!