Find which devices are End of Support

Is there a way to show devices that have passed the End of Support date?

Yes - there are several ways to find this information within SNTC.   We refer to this information as LDOS "Last Day of Support".
One way to do this is to generate a report called the "Contract Management Report (CMR)".  In this report, there is a sheet that is called LDOS.  The LDOS sheet will tell you all the devices that are past LDOS.
If you need help generating a CMR report, please see the how-to-videos.
http://www.cisco.com/E-Learning/bulk/subscribed/SNTC_Portal_How_To/index_wrappper_PHT.htm
Bobby

Similar Messages

  • How to find which devices are still using affected domain controller

    Hi Everyone,
    We have a 5 Domain controller's in a Site. And we are going to decommisson one of our affected DC in a site.
    Can you please let me know how to find  the log files to see which devices are still using this domain controller.
    Regards,
    Neel kamal
    Neel kamal

    Neel,
    From strictly an Active Directory perspective, there is nothing special you need to do to decommission a domain controller in a site.  There are many processes that automatically balance out and recreate connections as needed without any user intervention. 
    The DC Locator process will automatically direct clients to active domain controllers, there is nothing you need to do here. 
    What you need to be concerned with are things like the following:
    DNS - Are you running AD integrated DNS and is the DC you are decommissioning hosting that roll - if so, is it the ONLY DC in the
    site that is running DNS?  You'll need at least one in the site.
    DHCP server - Is the DC you are demoting a DHCP server?  You'll need to account for that.
    Global Catalog - Is the DC you are demoting a Global Catalog server?  You'll need at least one in the site.
    File Shares - Is the DC hosting any files shares?  You'll need to move those and make sure you redirect your clients.
    Was this DC a set as a Preferred Bridgehead Server?  You'll need to undo that first.
    Those are the big ones that come to mind.  Decommissioning a DC is easy if you have prepared properly.  The others that have replied have offered some great advice which you should follow.  Do your homework and you should be fine.
    Hope that helps
    Gary
    Gary G. Gray
     MCP, MCTS, MCITP, MCT Alumni
    Please remember to mark the replies as answers if they are helpful.
    This posting is provided AS-IS with no warranties or guarantees and confers no rights.

  • Which Devices Are Receiving My iMessages?

    Does anyone know if there's a way to see how many (or which) devices are receiving your iMessage messages? For example, if I am [email protected], I'd like to know if there are other devices (aside from my own) receiving messages. Is this something Apple can tell me, if I can't find this using the iOS/Mac UIs?
    The reason I ask is I had a friend who's dad started receiving all of his messages addressed to his email. And he never enabled Messages on his Dad's phone for his own email, just at some point used the App Store.
    Thanks!

    Sign out of Messages and reset your phone. Press and hold the Home and Sleep buttons simultaneously until the Apple logo appears. Let go of the buttons and let the device restart. Then sign back in to Messages. Use the Settings app to check if the phone number can now be selected.
    Settings > Messages > Send and Receive

  • How can i determine which devices are used at the moment?

    Hi all,
    I am designing an interface with LabVIEW for uing agilent devices. My work colleagues will use this interface.  I want to determine which devices are used at the moment and if I determine used device, i will add automatically device names to interface's main vi. So all my work colleagues can see on the program which devices are used by another colleague. This devices are connected with GPIB. İ want to learn is there any function on Instrument I/O palette.
    Thanks,
    Omer
    Solved!
    Go to Solution.

    Hi Omer,
    so those devices are connected to the PC with a GPIB connection. Will your collegues run several DAQ programs at the same time?
    GPIB-devices being controlled by PC don't have a "in use"-signal. They wait for commands, execute them and send an answer. When you start to control them using two programs they may respond to both programs, mixing up settings/measurement values and so on.
    That being said: In MAX you can see all devices connected to your GPIB port. You could scan the GPIB port using VISA commands in your program. You might even try to access a certain device by it's VISA alias. I really don't know if you will get a "device nopt available" error message when that VISA alias is in use by a different program - but you might do a quick test on your own…
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • How can i see which devices are connected to my wireless network?

    how can i see which devices are connected to my wireless network?

    Login to your router and view the DHCP clients.

  • My MacBook Air is in a support profile for one of my Apple IDs while all my other devices are in a support profile for a different one of my Apple IDs; how can I combine under one?

    My MacBook Air is in a support profile for one of my Apple IDs while all my other devices are in a support profile for a different one of my Apple IDs; how can I combine under one?

    Actually, this can be done without merging Apple IDs, as I found just by trying this out: I went into the support profile for the Apple ID that had only my Mac listed. I then chose to disassociate the Mac from that Apple ID. I signed out and signed in using my other Apple ID (the one with all my other Apple devices). I chose to add/register a new device, entered my Mac's serial number, and now it is associated with all my other Apple devices under a single Apple ID. No merger of Apple IDs required.

  • How to find which datasource are using  tables AFRU ,CAUFV and AUFM

    *how to find which datasource are using  tables AFRU ,CAUFV and AUFM*

    Hi,
    You can enter your table names in SE11 transaction and click "Display" and again click "Where -Used-List". Then it will show all the places where these tables are used(Datasources)
    Hope this helps.....
    Regards,
    SUman

  • Way to find which tables are being accessed

    Hi Guys
    I have a large database and i want to find which tables are not being accessed (even select) from a specific period of time. is there any way to find out . I am using oracke 10g release 1
    Regards
    Khurana
    Edited by: Khurana on Sep 8, 2009 4:29 PM

    select sp.object_owner,sp.object_name,
    (select sql_text from v$sqlarea sa
    where sa.address = sp.address
    and sa.hash_value =sp.hash_value) sqltext,
    (select executions from v$sqlarea sa
    where sa.address = sp.address
    and sa.hash_value =sp.hash_value) no_of_full_scans,
    (select lpad(nvl(trim(to_char(num_rows)),' '),15,' ')||' | '||lpad(nvl(trim(to_char(blocks)),' '),15,' ')||' | '||buffer_pool
    from dba_tables where table_name = sp.object_name
    and owner = sp.object_owner) "rows|blocks|pool"
    from v$sql_plan sp
    where operation='TABLE ACCESS'
    and object_owner IN ('YOUR_USER_NAME')
    order by 1,2
    It will tell you that currently "OBJECT_NAME" is being accessed; but i think it is for full table scan.
    Source:http://www.oracle.com/technology/oramag/code/tips2005/032105.html
    Regards
    Girish Sharma

  • HR   how to find which personal area belongs to which country

    HR
    how to find which personal area belongs to which country
    thank you,
    Regards,
    Jagrut Bharatkumar shukla

    Hi,
        You can use the table T001P for finding that  for eg.,
    <b>Select molga from t001p where werks = 'Your Personnel area code'.</b>
    Thanks
    Yogesh

  • Where can I find which Infotypes are configured? (transaction)

    hi experts!
    I need to know if there are any transaction where I can find which Infotypes are configured in a system landscape.
    can somebody help me?
    Thanks in advance!

    Hi,
    Infotypes are configured using transaction PM01, you can check in this transaction
    Regards,
    Shrinivas

  • How to use dvb to find which blocks are corrupted?

    hi
    how to use dvb to find which blocks are corrupted?
    and how to repair it from two days back user managed back up when database is in no archive log mode?
    rgrds
    Edited by: new2appsdba on Jul 30, 2010 9:50 PM

    Hi,
    Please see these documents.
    Note: 434013.1 - HOW TO TROUBLESHOOT AND RESOLVE an ORA-1110
    Note: 352907.1 - Script To Run DBV On All Datafiles Of the Database
    Note: 836658.1 - Identify the corruption extension using RMAN/DBV/ANALYZE etc
    Note: 35512.1 - DBVERIFY - Database file Verification Utility (7.3.2 - 10.2)
    Note: 403747.1 - FAQ: Physical Corruption
    Note: 28814.1 - Handling Oracle Block Corruptions in Oracle7/8/8i/9i/10g/11g
    Thanks,
    Hussein

  • How to find which drivers are missing?

    My laptop model no is Hp Pavillion dv6 1337tx. Someday ago I installed Windows 7 32 bit OS and also installed all drivers from the HP site. Still in the device manager I can see som drivers are missing. What can those be and how can I identify those missing drivers and solve this problem?
    I am attaching a screenshot of the device manager showing some drivers are missing.
    This question was solved.
    View Solution.

    Your image has not yet been approved by a moderator.
    Determining what the devices are is a one at a time process. On each unknown device or device without drivers, right click on the device and select properties. In the properties window select the Details tab and  hardware ids in the property  dropdown. Post the PCI\VEN string as seen in the following image for each device here in your post.  Once that is done we can let you know what the device is.
    This is where the drivers for your notebook are located.  Do you know  which chipset is installed?
    Best regards,
    erico
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • Mifi 4620L - how do I determine which devices are using my data?

    I Have a couple kids connecting to our Mifi4620 and we keep going over our 20gb data limitation.  How can I find out what devices are using data and when as we. As how much so I can track down my high data usage culprit?

    I have made several comments on another forum about my high data usage.  The forum name is "HIGH DATA USUAGE being used". One thing I have found effective in my trouble shooting is to make sure all devices are off and will not auto connect to the WiFi.
    1. Turn on the WiFi and make a log of everything that you do and with a time.
    2. turn on only one device and do what ever you want to use that device for. (ALL other devices off}
    3. Wait about 5 minutes when finished and then turn the MiFi off.
    4. Wait 5 to 10 minutes before turning the MiFi back on to make sure all data got registered.
    5. Do these steps for each device and keep a log of sites visited and what was done on each device.
    6. Log into your Verizon account and go to data then down nearer the bottom there is a box where you can select a device. Select the router phone number and it will give you a detailed listing of data usage and times.  The time in the listing is the time the session started and will add all data used until the MiFi session is ended.  If nothing is connected it will check about about every 160 minutes ( 2 hrs. 45 minutes) you will see a small data usage.  If something is connected you will see data usage every totaled every 6 hours (approximately). By turning the MiFi off you can stop the 6 hour totaling and only total the session up to that time. Of course you have to wait long enough for their computers to get the total data usage.  At one time I would have to wait 3 to 4 days for some of these to show up but recently it shows up within a couple of hours and has always been updated over night. I have been downloading the detail usage since every morning since August.  I made an excel spread sheet that will total on a daily basis the total data used for a day when I do a copy of my download and paste it into my spreadsheet.
    I hope this helps although you might want to read the other forum,  You are not alone with a problem.  I hope you can solve your problem and if you would not mind posting a reply to me as to what you find if you can solve your problem. I thought my problem was solved but it is back and I have run out of ideas as to what else I can check or change. Today I went to Sprint store and can switch to one of their plans and save $18.00 per month but the problem with that is that the Sprint connection is not quite as good where I live.

  • How do i see which devices are connected to my airport router

    How do I see which wi fi devices are hooked up to my router?  Also, my Verizon Network Extender is not working with my new airport express router?  How do I get it to work?  My system and GPS lights are red on the extender.

    How do I see which wi fi devices are hooked up to my route
    Open AirPort Utility
    Hold down the option key on your Mac while you double click on the AirPort icon
    Click on each wireless device displayed for more info about that device
    Also, my Verizon Network Extender is not working with my new airport express router?
    Apple uses proprietary settings for their "extend" feature on their routers, so it would be extremely unlikely that a device from another manufacturer would be compatible for this purpose.

  • HT4910 how can i find what devices are sync to my laptop as mine is saying 5 i dont no why

    how can i find what devies are synced with my computer as in itunes says 5 i dont have 5

    That information is not available.
    De-authorizing Computers (contributed by user John Galt)
    You can de-authorize individual computers, but only by using those computers. The only other option is to "de-authorize all" from your iTunes account.
      1. Open iTunes on a computer
      2. From the Store menu, select "View my Account..."
      3. Sign in with your Apple ID and password.
      4. Under "Computer Authorizations" select "De-authorize All".
      5. Authorize each computer you still have, as you may require.
    You may only do this once per year.
    After you "de-authorize all" your authorized computers, re-authorize each one as required.
    If you have de-authorized all computers and need to do it again, but your year has not elapsed, then contact: Apple - Support - iTunes - Contact Us.
    For more information on authorization and de-authorization: iTunes Store- Authorize or deauthorize your Mac or PC.

Maybe you are looking for

  • How do I determine what type of Solaris installation I have ?

    I'm runnig "SunOS PSP 5.8 Generic_108528-13 sun4u sparc SUNW,Sun-Fire-480R" but I would like to determine the type of Solaris installation I have....do I have a a "development" installation ? Do I have all the SUNW developer packages ? Also what are

  • Errrror in sender JDBC channel  in rwb

    hi forum, in a JDBC to XI scenario, the sender JDBC channel, in rwb, shows error: Status: RED Short Log: Adapter has not provided any information for this channel Error information:  Exception: Channel with status unknown or Not Registered pls help,

  • Is there a maximum PDF size for ios? can handle 2GB?

    I'm creating a very huge pdf file, aprox 2GB can it be viewer in an ipad or iphone?. Can it be viewer from an Android tablet? TnkU

  • Running oracle form shortcuts

    How can i call an oracle form thru its short cut? I require this b'se i need to remove MDI window from some forms and MDI mdi window removal can be done in short cut target using 'useSDI'.Any other method available for removing MDI window through pro

  • Migration of business view

    I am migrating my content from 6.5 to BO XI or from DEV->UAT. If i only want to migrate BusinessViews and its related content what options i need to choose in Import Wizard? Thanks nirav