FTD recording in the scenario of CMF

Afternoon everyone,

I have a project, involves a unit of FMC and I will join about 14 5506 x (image FTD) to the server.  So sites that will receive the x 5506 with FTD image, they just don't have a basic internet connection, no vpn tunnel, etc..

So, with how should this information, I go about registering 5506 x on the server of the CMF?  I mean, to make all the 5506 x configurations, you need to register to the CSP.  But, before I have send the 5506 x on the remote site, I need to get the following configuration below configured on the x 5506.

Basic configuration of x 5506:

-outside of the dhcp setroute interface

-inside of the static IP address

-PAT

-no access not allowed entering

Ideas: to register beforehand the x 5506, interface management with it being local on the site where the CMF.  Do my configurations on the x 5506.  To ship the x 5506 outside, she gets the setroute dhcp, static inside the IP address is configured, PAT, etc. everyone has internet in-house.  Someone local to this site, would have to inform me of what is their public IP address, I could ssh outside the image of x 5506 FTD, remove add command configuration manager (like the previous command could do refers to a private IP address and of course would not find the DFT at this point because no VPN tunnel) MPLS etc.) and re - configure configuration Manager add using the NAT ID to the public IP address that would be nat'd to another physical location to the CSP.

Below, CME, join the 5506 x using its own external public IP address and array policies.

:) I think it will work?  is there a better way to go about this?

Thank you! -Tony

For the moment, we need to have some equipment to low prices on the website of management who can offer connectivity to the management for the branch FTD interface. This can be any device capable of VPN.

We also have a few instructions wiring for local staff.

Then when we lost the connection to the branch of the DFT we ask residents to connect FTD in the small VPN device, so we can configure branch FTD

Tags: Cisco Security

Similar Questions

  • Display problems of some records in the distribution manager

    I use the Distributed System Manager to communicate with my Sierra Instruments MFC. Most of the time, I am able to read the values of its MODBUS registers. However, there are certain records that the DSM does not seem to be able to read correctly.

    In the 1st screenshot, I show a case of work.

    Note the displayed values 400043 by 400045 records are the decimal equivalent characters ASCII coded 16-bit (hex) and when combined give the serial number of the CMF. So in my current example:

    400043 = 12598 == 0 x 3136 == "16".

    400044 = 13620 == 0 x 3534 == '54.

    400045 = 13624 == 0 x 3538 == '58.

    Serial No. = 165458

    Registers 400047 400051 through each contain 16-bit ASCII encoded characters when combined give the ID of the tag of the CMF. However, when I read the 1st of these registers, then I get an error that also live by reading all the previous registers (I dunno why...), as shown below:

    I know that the info for the ID of the tag is there as it appears in the GUI of the Sierra Instrument:

    Any ideas?


  • Overview and details of the records in the same mixing ratio

    Hello, on the bottom I need to mix the results in the summary table and the records in the table of details in the same report.

    To create the scenario:
    CREATE TABLE ALPHA
    (
    ALPHA_ID     NUMBER,
    ALPHA_NR     NUMBER,
    ALPHA_TOTCT     NUMBER,
    ALPHA_FUND     NUMBER
    
    );
    
    ALTER TABLE ALPHA ADD (
         CONSTRAINT ALPHA_PK PRIMARY KEY (ALPHA_ID));
    ALTER TABLE ALPHA ADD (
         CONSTRAINT ALPHA_NR_UNI UNIQUE (ALPHA_NR));
    
    
    INSERT INTO ALPHA(ALPHA_ID, ALPHA_NR)
    VALUES( 1, 7 );
    INSERT INTO ALPHA(ALPHA_ID, ALPHA_NR)
    VALUES( 2, 11 );
    INSERT INTO ALPHA(ALPHA_ID, ALPHA_NR)
    VALUES( 3, 15 );
    INSERT INTO ALPHA(ALPHA_ID, ALPHA_NR)
    VALUES( 4, 17 );
    
    CREATE TABLE HIST
    (
    HIST_ID     NUMBER,
    HIST_NR NUMBER,
    HIST_ALPHA_NR NUMBER,
    HIST_CT          NUMBER,
    HIST_VAL     NUMBER,
    HIST_DATE     DATE
    
    );
    
    ALTER TABLE HIST ADD (
         CONSTRAINT HIST_PK PRIMARY KEY (HIST_ID));
    ALTER TABLE HIST ADD (
         CONSTRAINT HIST_NR_UNI UNIQUE (HIST_NR));
    ALTER TABLE HIST ADD (
         CONSTRAINT HIST_ALPHA_NR_FK FOREIGN KEY (HIST_ALPHA_NR) REFERENCES ALPHA ( ALPHA_NR ) );
    
    TRUNCATE TABLE HIST;
    
    INSERT INTO HIST( HIST_ID ,HIST_NR ,HIST_ALPHA_NR ,HIST_CT ,HIST_VAL ,HIST_DATE )
    VALUES ( 1 ,1    ,7 ,1 ,10 , TO_DATE('01.02.2009' , 'dd.mm.yyyy' ) );
    INSERT INTO HIST( HIST_ID ,HIST_NR ,HIST_ALPHA_NR ,HIST_CT ,HIST_VAL ,HIST_DATE )
    VALUES ( 2 ,6    ,7 ,1 ,10 , TO_DATE('01.05.2009' , 'dd.mm.yyyy' ) );
    INSERT INTO HIST( HIST_ID ,HIST_NR ,HIST_ALPHA_NR ,HIST_CT ,HIST_VAL ,HIST_DATE )
    VALUES ( 3 ,3    ,7 ,3 ,30 , TO_DATE('01.02.2010' , 'dd.mm.yyyy' ) );
    
    
    INSERT INTO HIST( HIST_ID ,HIST_NR ,HIST_ALPHA_NR ,HIST_CT ,HIST_VAL ,HIST_DATE )
    VALUES ( 4 ,4    ,11 ,1 ,10 , TO_DATE('01.03.2009' , 'dd.mm.yyyy' ) );
    INSERT INTO HIST( HIST_ID ,HIST_NR ,HIST_ALPHA_NR ,HIST_CT ,HIST_VAL ,HIST_DATE )
    VALUES ( 5 ,5    ,11 ,-2 ,-20 , TO_DATE('01.06.2010' , 'dd.mm.yyyy' ) );
    INSERT INTO HIST( HIST_ID ,HIST_NR ,HIST_ALPHA_NR ,HIST_CT ,HIST_VAL ,HIST_DATE )
    VALUES ( 6 ,8    ,11 ,1 ,10 , TO_DATE('01.02.2011' , 'dd.mm.yyyy' ) );
    
    INSERT INTO HIST( HIST_ID ,HIST_NR ,HIST_ALPHA_NR ,HIST_CT ,HIST_VAL ,HIST_DATE )
    VALUES ( 7 ,2    ,15 ,2 ,20 , TO_DATE('01.03.2009' , 'dd.mm.yyyy' ) );
    INSERT INTO HIST( HIST_ID ,HIST_NR ,HIST_ALPHA_NR ,HIST_CT ,HIST_VAL ,HIST_DATE )
    VALUES ( 8 ,7    ,15 ,5 ,50 , TO_DATE('01.06.2010' , 'dd.mm.yyyy' ) );
    INSERT INTO HIST( HIST_ID ,HIST_NR ,HIST_ALPHA_NR ,HIST_CT ,HIST_VAL ,HIST_DATE )
    VALUES ( 9 ,9    ,15 ,-4 ,-40 , TO_DATE('01.02.2011' , 'dd.mm.yyyy' ) );
    
    INSERT INTO HIST( HIST_ID ,HIST_NR ,HIST_ALPHA_NR ,HIST_CT ,HIST_VAL ,HIST_DATE )
    VALUES ( 10 ,10    ,17 ,1 ,10 , TO_DATE('01.03.2011' , 'dd.mm.yyyy' ) );
    To update the summary table, I used a view
    CREATE OR REPLACE VIEW HIST_AGG ( HIST_ALPHA_NR,  TOT_CT  , TOT_VAL )
    AS
    SELECT HIST_ALPHA_NR
    ,SUM ( NVL(HIST_CT, 0 ) ) TOT_CT
    ,SUM( NVL(HIST_VAL, 0) )  TOT_VAL
    
    FROM HIST
    GROUP BY HIST_ALPHA_NR;
    
    
    DECLARE
    
    CURSOR cur
    IS
    SELECT
    HIST_ALPHA_NR
    ,TOT_CT
    ,TOT_VAL
    FROM HIST_AGG
    ;
    
    BEGIN
    FOR rec IN cur
    LOOP
    
         UPDATE ALPHA
         SET ALPHA_TOTCT = rec.TOT_CT
         , ALPHA_FUND  = rec.TOT_VAL
         WHERE ALPHA_NR = rec.HIST_ALPHA_NR;
    
    END LOOP;
    
    END;
    First report should the line overview Alpha tracked table of all the detail records of
    HIST table and for each alpha_nr. At the end of report total overview
    alpha of the table.
    "SUMMARY";"ALPHA_NR";"ALPHA_TOTCT";"ALPHA_FUND";
    ;;;;
    ;7;5;50;
    ;7;1;10;01.02.2009
    ;7;1;10;01.05.2009
    ;7;3;30;
    ;11;0;0;
    ;11;1;10;01.03.2009
    ;11;-2;-20;01.06.2010
    ;11;1;10;01.02.2011
    ;15;3;30;
    ;15;2;20;01.03.2009
    ;15;5;50;01.06.2010
    ;15;-4;-40;01.02.2011
    ;17;1;10;
    ;17;1;10;01.03.2011
    "TOTAL_ALPHA_NR";4;9;90;
    Second report should display the overview by period (year), but the timeline
    for example the year 2009 begins from the year 2010. At the end of each year a summary for
    the current state.
    "YEAR";"ALPHA_NR";"ALPHA_TOTCT";"ALPHA_FUND"
    ;;;
    2009;7;0;0
    ;11;0;0
    ;15;0;0
    ;17;0;0
    "Total 2009";4;0;0
    2010;7;2;20
    ;11;1;10
    ;15;2;20
    ;17;0;0
    "Total 2010";4;5;50
    2011;7;5;50
    ;11;-1;-10
    ;15;7;70
    ;17;0;0
    "Total 2011";4;11;110
    2012;7;5;50
    ;11;0;0
    ;15;3;30
    ;17;1;10
    "Total 2012";4;9;90

    Hello

    wucis wrote:
    I now use this selection

    ...
    FROM       hist        h
    ,       alpha        a
    WHERE       h.hist_alpha_nr (+)     = a.alpha_nr
    AND       a.active          = 'Y'
    AND a.alpha_nr >=  NVL ( NULL  , 1 )
    AND a.alpha_nr <=  NVL ( NULL  , 10000 )
    AND a.alpha_date >= NVL ( TO_DATE( '02.01.2008'  , 'dd.mm.yyyy' ) , '01.01.2000' )
    --AND h.hist_date  >= NVL ( TO_DATE( NULL  , 'dd.mm.yyyy' ) , '01.01.2000' )
    --AND h.hist_date <= NVL ( TO_DATE( NULL  , 'dd.mm.yyyy' ) , '02.02.2222')
    ...
    

    The problem is now, if I limit the query about the h.hist_date, the lines disappear when there is no entry in HIST for this ALPHA_NR,
    in particular the line with alpha_nr = 12 disappears.

    When you use the old notation join, outer join, whenever a column of a table is marked with the + sign, then all the conditions in the WHERE clause that references the same table need a sign +. Otherwise, the effect is identical to an inner join.
    Using the old syntax, you must say something like:

    ...
    FROM       hist        h
    ,       alpha        a
    WHERE       h.hist_alpha_nr (+)     = a.alpha_nr
    AND       a.active          = 'Y'
    AND        a.alpha_nr          >=  1
    AND        a.alpha_nr           <=  10000
    AND        a.alpha_date           >=  TO_DATE ('01.01.2000', 'dd.mm.yyyy')
    AND        h.hist_date (+)     >=  TO_DATE ('01.01.2000', 'dd.mm.yyyy')
    AND       h.hist_date (+)     <=  TO_DATE ('02.02.2222', 'dd.mm.yyyy')
    ...
    

    Notice the + sign in the last 2 lines, after the columns in this table of reference h. I find the ANSI join syntax much more clear in this case.

    How you use NVL makes no sense. NVL (NULL, x) returns x, no matter what x is.
    What you trying to do? Perhaps you meant

    AND        NVL (a.alpha_nr, 1)          >=  1
    
  • Need for the records at the beginning of bookmarks

    In Internet Explorer My Favorites (favorite) were all records at the beginning of the list. When I moved them to Foxfire, records are mixed in alphabetical order with the rest of the list. Who defeated the purpose folders! (I had folders for easy access to my most used Favorites!) How can I update the files at the beginning of the list. I can't drag, there are too many!

    Hi Jay - Tee to open the library section bookmarks dialog box, you can either:

    • Press Ctrl + Shift + b
    • Use the menu: bookmarks > show all bookmarks

    However, there is a shortcut: could you try the following:

    Open the side panel of bookmarks using Ctrl + b

    Right click "Bookmarks Menu"

    Choose sort by name

    For me, this brings all records upwards, in alpha order, then the bookmark on this main level, in alpha order.

    A little luck?

  • Make the midi recording when the track is not selected

    Hi, asking for my friend and will try and find a solution when I get home, but...

    My friend (using logic 9.1.8) made some record with about 12 actors/singers alive. I suggested to him that he must save the midi for keyboard player (who is also the composer of all parts) as well as the audio just to give them some flexibility later. It is a great keyboard player and uses its own external keyboard. (i.e. not logic instrument). All the other singers/actors are all audio.

    So it is easy to implement but as such sessions can become a little hectic and although the midi for keyboard track is in record mode, the midi does not record unless the track is selected on the left. Sometimes, in the madness of him the entire midi track remains not selected and if the midi data does not get saved. Is it possible to routing in the environment where the midi will get recorded although the midi track is not selected? Don't forget, the midi track is always made armed.

    Thank you very much

    Looks like you entered only followed for the targeted track has allowed...

    This picture isn't in X 9 - but it's the same setting...

    Make sure that this is not the case-

  • Toshiba 39L4353RB 7.1.56.36.01.1 TimeShift and record on the issues.

    Hello.

    I have Toshiba 39L4353RB with the last aviable f/o 7.1.56.36.01.1 for this model.
    There are no options for TimeShift and recording in the Menu.

    I chose countries Germany, DVB - C (digital TV) CAM module.
    I insert USB HDD, but it there was not all the settings in the Time-Shifting Menu.

    (1) was this option disabled in f/w 7.1.56.36.01.1?

    (2) can I put 39L4353RB manually (by usb flash) for the latest f/w 7.1.90.34.01.1 (another country for L4353 code) to allow the TimeShift?

    You reset the TV after the update of the firmware?
    If this is not the case, first of all do!

    TO use the Time Shift you must go through the configuration of the recording.
    You must choose the HARD disk and partition you want to save.

    What is described in the manual user 51 page-> [Toshiba 39 L manual 4353 | http://www.toshiba-om.net/LCD/PDF/English/L4353-323950-English.pdf]

  • Retrieve the records of the RD-XV47KF HARD drive

    In recent years, I have used my RD-XV47KF recorder without problems, mainly for recording of TV movies.

    Yesterday when I checked my last record on the HARD drive, I saw that it was present in the list of records, but he was the only one and desperately, I realized that all my previous registered films precious disappeared from this list, as if they had been deleted before from the HARD drive.

    Yet I am totally sure of have not controlled the HARD drive by mistake the clearing process.
    Memory, a particular thing happened before this last record, namely the locked recorder itself is not not able to complete a finalized DVD and I had to unplug-> connect the power supply cable to get out of this locked condition. Yet this should not have caused to erase the HARD drive.

    Although the manual States that clear documents cannot be recovered, as these previous records were not deleted on purpose, but apparently by a strange bad

    I wish one could help me to suggest how I could restore the previous state of my folder list, giving me access to my precious previous recorded films.

    Sorry mate. It is a Toshiba * laptop * user-to-user forum.
    Don t think that there are people who would be able to help you with video recorder RD-XV47KF.

  • Help, please! Problem with QuickTime audio recording of the iPod?

    Before you start: I one day 32 GB 6th gen (newest) iPod Touch and uses a MacBook Pro with OS X Yosemite 10.10.5 early 2015. QuickTime Player is Version 10.4 (833.7).

    I have an iOS game and you want to record a video of my game using QuickTime. I want to record is just two things: the screen of my iPod (to show the gameplay of course) and iPod audio (to listen to the music of the gameplay, sound effects, etc.). I play with headphones plugged into my iPod, so, naturally, I want to listen to the game and have the video recording, the audio of game as well.

    Unfortunately, a problem arises however. I insert my iPod in my computer, ready to start game and the headphones plugged into the iPod. I open QuickTime, then click on "file > new Movie Recording. From the drop-down list next to the button REC / I click on "camera > iPod of [my] Touch" and "micro >" of [my] iPod Touch '.» Immediately I can't hear my headphones... ! However the emulation screen iPod appears perfectly on my MacBook.

    If I press the record button when even just to see what happens. I recorded about 20 seconds of the game and click on stop. Pretty funny his returned to my headphones right when I stopped recording! Nevertheless, I plugged my iPod headphones on my MacBook and played the video I just recorded. The 20-second video has audio PERFECT, everything in the video went extremely smooth and no audio/visual of all issues.

    I wanted to keep trying, then instead of having already my headphones for my iPod, I tried to open QuickTime with my headphones unplugged; and then plugged my iPod after QT has been opened. The emulation screen FROZEN unlock and then when I unplugged the headphones. Unplug and plug in any again gave the same results. I waited a few minutes later headphones, then plugged back in. Surprisingly, I could finally hear audio and emulation of the screen has not frozen, but when I pressed on the record, the record got stuck on "0:00"- and when I pressed the stop button, it gave me an error message saying "unable to save" try save again. " I tried everything several times for a few hours and nothing has changed. Is there something I'm missing... ?

    (TL; DR) so I have to ask. Why play video recording of my iPod QuickTime audio perfectly, but when recording, I don't hear any audio through the headphones of my iPod at all? Audio output when recording is stopped.

    Sorry for the long message and thank you very much for reading and any help!

    Why play video recording of my iPod QuickTime audio perfectly, but when recording, I don't hear any audio through the headphones of my iPod at all? Audio output when recording is stopped.

    Your recording QT X settings say the iPod Touch to divert temporarily the iPod Touch audio pipeline (normally sent to the internal speaker/headphone port) to the Lightning-USB connector to connect to the application of QT X reader when recording. When the registration process is complete, the iPod Touch will automatically reconnect the audio pipeline diverted to the internal speaker/headphone port.

  • My iCloud and shared calendars has stopped working in MS Outlook today.  They worked yesterday.  Now, I get the error message "cannot open this series of records.  The information store cannot be opened?  I tried the fix standard support.

    My iCloud and shared calendars has stopped working in MS Outlook today.  They worked yesterday.  Now, I get the error message "cannot open this series of records.  The information store cannot be opened?  I tried the fix standard support.

    Same thing here.  Looks like Windows did an automatic update during the night, and now nothing iCloud associated work (calendars, contacts, etc.)

    I also noticed that the error message: "could not load file or Assembly ' MOM." Implementation ' or one of its dependencies.  The system cannot find the specified file. "It started after restarting the Windows Update as well.  I imagine that the two are related in the same problem to iCloud.

  • Can someone send the default drive (D: Lenovo) who have the record of the driver? Lenovo y510p

    Can someone send default player (Lenovo D who have the record of the driver?) Lenovo y510p

    I just deleted :')

    Anyone can he share for me?

    I thank...

    You can click the link for support on this page and go to the driver & downloads.

    You will find all the drivers for your laptop, just search with Y510p.

  • Record to the file of the measurement at will

    Hello.

    I'm new to LabView and so far it has been easy enough to learn this software. I like really I. I use a USB-1208FS MCC to measure signals from the real world and enjoy to LabVIEW.

    The thing is I want to be able to save to a file of measure at will. That said, when I press the Start button, it will start measuring but DO NOT save data to the file measure until I touched another button, a "record" button This is when I want to save the data. Is it possible to implement in LabVIEW? Because as soon as I start sampling that he recorded in the file of measures.

    Should which functions I use? I'd appreciate any help.

    Thank you!

    Pretty simple with a case statement.

    I recommend you:

    3-hour course

    6 hour course

  • Unexpected behavior with the Option "record in the result.

    Hello

    I have unexpected behavior with the Option "record in the result.

    I have a few steps in the subsequence 'X', this subsequence passes a Boolean parameter. According to the value of the parameter I change the "Recorgind results" Option to report it or not. The thing is that if 'result Recorgind' set at race time I modofy by changing the value of Step.ResultRecordingOption to "Enable" and "Disable", the step is not reported until the same sous-suite 'X' is called for the second time (without changing the parameter passed).

    For example: (Preconditon: result Recorgind Option of all value sous-suite x are defined as Disable)

    1 CallSubsequenceX(Parameter: Enable)

    2 CallSubsequenceX(Parameter: Enable)

    3 CallSubsequenceX(Parameter: Disable)

    4 CallSubsequenceX(Parameter: Disable)

    Expected result:

    1. measures have been reported.

    2. measures have been reported.

    3. measures have not been reported.

    4. measures have not been reported.

    Result:

    1. measures would not same value Step.ResultRecordingOption has been changed to 'enable '. (Not Ok)

    2. measures have been reported. (Ok)

    3. measures reported same value Step.ResultRecordingOption has been changed to 'disable '. (Not Ok)

    4. measures have not been reported. (Ok)

    I use TestStand 2013 (5.1.0.226)

    Thanks in advance.

    -Josymar.

    Hi josymar_guzman,

    I just review the sequence and indeed we´re experience unexpected behavior with the Step.ResultRecordingOption callback. By a reason when you run the callback in the expression before each step section, the statement runs only until the next sequence is called, which is not what we want.

    To avoid this, you can place a statement before each step of the sequence, so you can change the State of the Option "record result" for the sequence running (and it is only the following). You can try something like this

    where the expression of the statement will be the recall "RunState.NextStep.ResultRecordingOption is YourCondition". With this, we guarantee that the results of the next step will be saved or not. I also remove the expression in the expression prior to each step section, because the condition is now on the statement before each step.

    I tried and it works fine. I´ll set the sequence that you share with me, with the changes. I hope this will help you and solve your problem.

  • How to insert the file between the records in the database file

    Hi, I'm working on the project in which I need reading / writing of .mdb file. I am able to write data to the file, but I am not able to write data between two records. It's that I have to insert a few lines of data between the records in the file.

    Can someone tell me how to do? I really stuck with this problem.

    vaibhav

    Thank you
    In fact it was the problem with version 8.5.
    When I installed 8.5.1 it solved.

  • I want to copy a picture of the paint and paste it into an email. System always told me that it records to the Clipboard.

    original title: Clipboard

    I want to copy a picture of the paint and paste it into an email.  System always told me that it records to the Clipboard.  Where can I get this Clipboard so that I can paste the photo?   Thank you.

    Hello

    CTRL + C copies to the Clipboard.

    CTRL + V paste it from the Clipboard.

    These FREE utilities will help in the use of the Clipboard.

    InsideClipBoard - free - whenever you have something to copy to the Clipboard to paste in another
    application, the copied data is saved in several formats. The main application of Windows Clipboard
    only display the basic Clipboard, like text and bitmaps formats, but only displays the list of all formats
    which are stored in the Clipboard. InsideClipboard is a small utility that displays the binary content of all
    formats that are currently stored in the Clipboard and allow to save the content of specific format
    in a binary file.
    http://www.NirSoft.NET/utils/inside_clipboard.html

    Another useful utility free allowing you to clear the Clipboard.

    ClipBoard Viewer - free - look inside your Windows Clipboard. See what your favorite
    ask, in four different (TXT, BMP, WMF and DIB) data format. This handy tool can also
    Clears the Clipboard. New version 2.0: now go to the Windows system tray! http://www.KarenWare.com/PowerTools/ptclpvue.asp

    I hope this helps and happy holidays!

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle=""><- mark="" twain="" said="" it="">

  • When you save the playlist, error - "Windows Media Player has encountered a problem during the creation or recording of the reading list.".

    When I try to save a playlist, I get an error message "Windows Media Player has encountered a problem during the creation or recording of the reading list.".

    Hello

    • Will there be any changes made prior to this issue?
    • What version of Windows are you using?

    Step 1: I recommend to run the Windows Media Player settings Troubleshooter and check.

    http://Windows.Microsoft.com/en-us/Windows7/open-the-Windows-Media-Player-settings-Troubleshooter

    Step 2: If the problem is to uninstall and reinstall Windows Media Player. Here's how.

    Uninstalling and reinstalling Windows Media Player:

    (A) uninstall Windows Media Player:

    a. go to start and in the search type 'Turn Windows has or not'.

    b. click on "Turn Windows features on or off".

    c. find multimedia and uncheck the brand in the face of Windows Media Player.

    d. restart the computer

    (B) reinstall Windows Media Player:

    a. go to start and in the search type 'Turn Windows has or not'.

    b. click on "Turn Windows features on or off".

    c. find the multimedia functions and place a check mark in front of the Windows Media Player.

    d. restart the computer.

    For more information, see the article below:

    http://Windows.Microsoft.com/en-us/Windows7/turn-Windows-features-on-or-off

Maybe you are looking for