How to start a service using cmd To Start a service using Command Prompt ( CMD ) Launch command prompt from start menu or type CMD in Run and then press enter Now start your desired service using the Syntax: NET START ServiceName Example: Starting windows installer service using NET command Type NET START MSISERVER To stop the desired service from command prompt: Type NET STOP SERVICENAME SC: Service Control The SC command can be used in a similar way to Start, Query, Stop a Service in Windows Example: Starting windows installer service using SC command Type SC START MSISERVER To stop the desired service Type SC STOP SERVICENAME and press Enter As you see i'm checking the service using SC QUERY MSISERVER to check the status of the Service You can checkout other switches and what they do by typing SC /?
How to uninstall applications from safemode When programs or drivers get corrupted and make windows unstable or unable to boot, we try uninstalling the software from safemode but safe mode won’t allow you to uninstall applications like msi based installers. Go to safemode and log into your user account Open Regedit (start > run > regedit) Navigate to the key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SafeBoot\Minimal Right click on the Minimal key in the left pane, choose New > Key then name it MSISERVER In the right pane, double click on the default , and give it the value Service Close Regedit and Start the service using Command Prompt (CMD) NET START MSISERVER And try uninstalling the software applications. Alternate method: Enabling MSISERVER from command prompt: Copy and paste strings in the command prompt REG ADD HKLM\SYSTEM\CurrentControlSet\Contr...
Comments
Post a Comment
Your thoughts on my Blog!