Detailed below is a procedure that will manually kill the service
- Click the Start menu button
- In the search bar type 'Run' then press Enter on your keyboard
- In the 'Open' bar type 'services.msc' then press Enter on your keyboard
- Look for YOUR Sellerdeck Synchronization service
- Once you have found your Sellerdeck Synchronization service, right click on it and select 'Properties'
- Identify its 'Service name' then make a note of this for later.
- Select 'OK'
- Close the 'Services' window.
- Click the Start menu button
- In the search bar type 'CMD' then right click on the CMD program that appears in the list and select 'Run as Administrator'
- In this black window type: -
Replace '[servicename]' with the name you made a note of earlier.Code:sc queryex "servicename"
- Identify the 'PID' for your Synchronization service and make a note of this.
- In the same command prompt now type:-
Replace '[pid number]' with the number you make a note in the previous step.Code:taskkill /pid [pid number] /f
- Press Enter on your keyboard
Both commands should look something like this:
Code:
sc queryex "SellerDeckSyncServerV18"
Code:
taskkill /pid 2712 /f