21

I have disabled the service for the player but why is it enabled in the first place and how do I get rid of it? (Do not want to play media sharing at work)

happy_soil
  • 2,435
noesgard
  • 500

3 Answers3

9

From How To Disable Windows Media Player 12 Sharing :

  1. Go to Network and Sharing Center (found by clicking your wireless/Ethernet icon in your taskbar)
  2. Select Homegroup and Sharing Options
  3. Select Choose Media Streaming Options
  4. Click Block All
harrymc
  • 498,455
8

It's also possible to disable the media sharing from Services

  1. Click "Start" and select the "Control Panel."
  2. Go to "Administrative Tools" and open "Services."
  3. Find "Windows Media Player Network Sharing Service" and double-click on it.
  4. Click "Stop" under the "General" tab and then select "Ok.", or set the service to "Disabled".

http://www.ehow.com/how_7209048_disable-windows-media-player-sharing.html

Matthew Lock
  • 4,757
1

1.Open Notepad and Paste:

@echo off

sc config "WMPNetworkSvc" start= disabled

sc stop "WMPNetworkSvc"

pause

2.Save File (Example): _WMP_Sharing_Disable.bat

3.Right-Button => Run as Administrator

Marc
  • 11