Warning This article contains information about editing the namespace. Before you edit the namespace, verify that you have a backup copy that you can restore if a problem occurs. If you edit the namespace incorrectly, you can cause serious problems that may require you to reinstall any product that uses the namespace. Microsoft cannot guarantee that problems that result if you incorrectly edit the namespace can be solved. Edit the namespace at your own risk.
To change the maximum fast-forward/rewind rate, follow these steps:
- Stop Windows Media Services by running the following command at a command prompt:
net stop wmserver
- Change to the following folder where the namespace file is located:
%SystemRoot%\system32\windows media\server
- In Notepad, open the ServerNamespace.xml file.
- Locate the Other node in the namespace.
- Add the following text under the Other node:
<node name="MaxPlayRate" opcode="create" type="int32" value="0x5" />
The value that is specified in the MaxPlayRate node limits the maximum fast-forward or rewind rate that the server will use. In this example, this value limits the server to a rate that is five times the typical rate of play. - Save and then close the ServerNamespace.xml file.
- Start Windows Media Services by running the following command at a command prompt:
net start wmserver
The following code describes the changes that were made to the ServerNamespace.xml file:
<node name="Other" opcode="create">
<node name="MaxPlayRate" opcode="create" type="int32" value="0x5" />
...
</node> <!-- Other -->