Skip navigation

JSI Tip 10033. How can I start a disabled Messenger service from the Windows Server 2003 command-line?

To start a DISABLED Messenger service on Windows Server 2003, either type the following commands, pressing Enter after each line:

CD /D %SystemRoot%\system32
sc.exe config Messenger start= auto
net.exe start Messenger
You can also run the StartMessenger.bat file, which contains:
@echo off
%SystemRoot%\system32\sc.exe config Messenger start= auto
%SystemRoot%\system32\net.exe start Messenger



Hide comments

Comments

  • Allowed HTML tags: <em> <strong> <blockquote> <br> <p>

Plain text

  • No HTML tags allowed.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Lines and paragraphs break automatically.
Publish