MIB value for username

In the LMS, the User tracking show the username as [email protected] for a user connected to a particular port on the switch. What is the MIB value to obtain this username value.
I would like to write a tcl script to add a description to each interface showing which user in connected to that switch interface.
Thanks in advance.

There is no MIB that produces this.  This information is provided by the UTLite executable which runs on the Windows clients, and sends UDP packets with username, IP, and MAC information from those clients to the Campus Manager server.
However, if you are using 802.1x, and your users are authenticating using a client supplicant, the username will be available in the dot1xAuthSessionUserName object from the switch to which the user directly connects.

Similar Messages

  • ACE MIB Value for Fail over

    Hi,
         May I know the MIB value ACE (Application Contril Engine )will be generating  while a fail over occurs. Is the value same for contetx fail over as well ??
    Regards
    Jithesh

    Hi,
    I think this is the error code your looking for;
    727012
    Error Message   %ACE-2-727012: HA: FT Group group ID changed state to NewState. Reason:
    reason str.
    Table 2-2 NewState Values and Descriptions
    NewState Value
    Description
    FSM_FT_STATE_INIT
    The initial state. Visible only when the configuration for the FT group exists but it is not in service.
    FSM_FT_STATE_ELECT
    After you enter the inservice command when you are configuring an FT group, the ACE enters the ELECT state. The redundancy state machine negotiates with its peer context in the FT group to determine the redundancy role (active or standby)
    FSM_FT_STATE_ACTIVE
    The active member of the FT group.
    FSM_FT_STATE_STANDBY_COLD
    This state can be entered if:
    •FT VLAN is down but the peer device is still alive.
    •Configuration or application state synchronization failure have occurred.
    FSM_FT_STATE_STANDBY_CONFIG
    The standby context is waiting to receive configuration information. Upon entering this state, the active context will be notified to send a copy of the running configuration.
    FSM_FT_STATE_STANDBY_BULK
    The standby context is waiting to receive state information. Upon entering this state, the active context will be notified to send a copy of the current states information for all applications.
    FSM_FT_STATE_STANDBY_HOT
    The standby context is ready to become active in a failover situation.
    Values returned for the reason str variable can be one of the following:
    •FSM_FT_EV_PEER_DOWN
    •FSM_FT_EV_PEER_FT_VLAN_DOWN
    •FSM_FT_EV_PEER_SOFT_RESET
    •FSM_FT_EV_STATE
    •FSM_FT_EV_TIMEOUT
    •FSM_FT_EV_CFG_SYNC_STATUS
    •FSM_FT_EV_BULK_SYNC_STATUS
    •FSM_FT_EV_COUP
    •FSM_FT_EV_RELINQUISH
    •FSM_FT_EV_TRACK_STATUS
    •FSM_FT_EV_UPDATE
    •FSM_FT_EV_ENABLE_INSERVICE
    •FSM_FT_EV_DISABLE_INSERVICE
    •FSM_FT_EV_SWITCHOVER
    •FSM_FT_EV_PEER_COMPATIBLE
    •FSM_FT_EV_MAINT_MODE_OFF
    •FSM_FT_EV_MAINT_MODE_PARTIAL
    •FSM_FT_EV_MAINT_MODE_FULL
    Check from the above ID onwards for more details around ft status.
    Cheers
    Scott

  • Error that "specify a value for variable posting period (single value entry

    hi
    My query is running testing fine in RSECADMIN under some username..but when i try and open it using analyzer (under same username) it gives me error that "specify a value for variable posting period (single value entry, mandatry)" it does'nt even asks to enter variable values and gives this error message.
    However the same query appears to be working fine under different username.
    plz advise.

    Hi Abhinav,
    Just do one thing compare the Roles of two different users for which Query is getting executed and not.
    Check the Object S_RFC.
    Compare the Objects detail for Both the Users.
    Please Assign points if useful.
    Regards,
    Rajdeep.

  • R/3- PI- webservice. Pass userid/password for Username Token from R/3

    Hello,
    We (SAP R/3) need to call Webservices from third party for which we are using SAP-PI system as the Middleware.
    The Password and ID for USERNAME TOKEN to be passed in the SOAP Header request needs to be sent through RFC in SAP R/3.
    The requirement is that SAP-PI should use this ID/password and prepare the USername Token in the SOAP Request header for the Webservice Call.
    Note: PI has AXIS framework installed on it.
    Can you please suggest as to what should be done? Request you to please provide the Custom Code / Detailed configuration etc. that is required to be done at the PI end.
    Note: I have searched the Forum but couldn't find anything a detailed information.
    Thanks & Regards,
    Abhishek Jolly

    XSLT-Mapping looks like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:output method="xml" indent="yes"/>
    <xsl:template match="/">
       <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:wsh="http://something/wsh">
         <soapenv:Header>
           <wsh:Context>
           <SessionId>
             <xsl:value-of select="/*[local-name()
    =MySoapFunction]/Parameters/Parameters
    [Scope[text()='XI'] and Name[text()='SessionID']]/Value"/>
          </SessionId>
         </wsh:Context>
        </soapenv:Header>
        <soapenv:Body>
         <wsh:MySoapFunction>
          <xsl:if test="count(./*[local-name()=MySoapFunction]/Parameters/Parameters)>1">
           <Parameters>
             <xsl:for-each select="./*[local-name()=MySoapFunction]/Parameters/Parameters">
               <xsl:if test="Scope!='XI'">
                 <Parameters>
                   <Scope><xsl:value-of select="Scope"/></Scope>
                   <Name><xsl:value-of select="Name"/></Name>
                   <Value><xsl:value-of select="Value"/></Value>
                  </Parameters>
                 </xsl:if>
               </xsl:for-each>
              </Parameters>
             </xsl:if>
           </wsh:MySoapFunction>
          </soapenv:Body>
    </soapenv:Envelope>
    I save XSLT to file.
    Input message that creates in XI and live only in BPM:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:MySoapFunction xmlns:ns0="http://something/wsh">
        <Parameters>
            <Parameters>
                <Scope>XI</Scope>
                <Name>SessionID</Name>
                <Value>0123456789</Value>
                </Parameters>
            <Parameters>
                <Scope>otherScope</Scope>
                <Name>someParam</Name>
                <Value>someValue</Value>
             </Parameters>
        </Parameters>
    </ns0:MySoapFunction>
    In BPM's SendStep this message is used.
    2) Create ZIP archive with this XSLT file (one archive can contains many XSLT programs). And Import ZIP it into XI. You can see this in Imported Archive and list of filenames of Archived Program in XI.

  • SAP BEX Analyzer Set values for variables

    Please help us out in sorting out this problem,
    We are automating BEx Analyzer for a Testing Project with Quick Test Professional (QTP) a functional automation tool uses VB script.
    Problem:
    There are 5 steps in automation
    Invoke BEx Application
    Log in to BEx server
    Run Query
    Set values for Variables for Query
    Display Report
    We are able to do 1,2,3 steps using BEx API functions and running BEx macros but we struck up with 4th step,
    1. Invoke BEx Application
    ‘Launch Excel
    Dim app
    Set app = createobject("Excel.Application")
    ‘Make it visible
    app.Visible = true
    ‘Attach add-in to Excel file
    app.Run ("'C:\Program Files\SAP\Business Explorer\BI\BExAnalyzer.xla'!SetStart")
    2. Log in to BEx server
    Login to Bex server
    Function logonToBW(app)
    Dim myConnection
    Dim logonToBW2
    On Error Resume Next
    logonToBW2 = True
    ' Create logon to system with following user and system details
    Set myConnection = app.Run ("'C:\Program Files\SAP\Business Explorer\BI\BExAnalyzer.xla'! SAPBEXgetConnection")
    With myConnection
    .client = "600"
    .User = "USERNAME"
    .Password = "Welcom123"
    .Language = "en"
    .systemnumber = "00"
    .System = "BWDCLNT600"
    .systemid = "BWD"
    .ApplicationServer = "156.158.7.161"
    .SAProuter = ""
    .Logon 0, true
         If .IsConnected = 0 Then
               .Logon 0, False
    If .IsConnected <> 1 Then
    MsgBox "Automatic logon failed. Please enter your username and password in the next screen ..."
    Exit Function
    End If
    End If
    End With
    ' Run connection query to see if connected
    app.Run ("'C:\Program Files\SAP\Business Explorer\BI\BExAnalyzer.xla'!SAPBEXinitConnection")
    logonToBW2 = True
    End Function
    3. Run a Query
    app.Run "'C:\Program Files\SAP\Business Explorer\BI\BExAnalyzer.xla'! runQuery", "ZZCCA3_M01_Q0003"
    Till here the script is running fine then the “Select values for Variables” window is displayed.
    This is where exactly we struck up; in this window we need to select values.
    Name of the Fields
         Field Name     Technical name of characteristic     Variable Name     Value
    1     Company Code                     0COMP_CODE     ZM_COMPCODE     1000
    2     Cost Center Hierarchy          0COSTCENTER     ZS_CCTRN     1000MDON
    3     Cost Center Node     0COSTCENTER     ZS_CCTRN     1000COP
    4     Cost Element          0COSTELEMENT     ZS_COELN     1000GDON_6999
    5     Fiscal Year     0FISCYEAR     0P_FYEAR     2007
    To select values for variables, we are trying below code but its giving an error,
    app.Run  "'C:\Program Files\SAP\Business Explorer\BI\BExAnalyzer.xla'!SAPBEXSetFilterValue", “1000”, "0COMP_CODE"
    app.Run  "'C:\Program Files\SAP\Business Explorer\BI\BExAnalyzer.xla'!SAPBEXSetFilterValue", “1000MDON”, " 0COSTCENTER "
    app.Run  "'C:\Program Files\SAP\Business Explorer\BI\BExAnalyzer.xla'!SAPBEXSetFilterValue", “1000COP”,  "0COSTCENTER"
    app.Run  "'C:\Program Files\SAP\Business Explorer\BI\BExAnalyzer.xla'!SAPBEXSetFilterValue", “1000GDON_6999”,  "0COSTELEMENT "
    app.Run  "'C:\Program Files\SAP\Business Explorer\BI\BExAnalyzer.xla'!SAPBEXSetFilterValue", “2007”,  " 0FISCYEAR"
    Any help highly appreciated, thanks in advance.

    Hi Reinhard,
    Pleas look at this:
    Passing a range to SAPBEX.XLA!SAPBEXSetFilterValue
    Best regards,
    Eugene

  • Properties Values for BI_JDBC_CONNECTOR against MSSQL.

    It's not clear for me how to set correct values for properties when a connector type BI_JDBC_CONNECTOR is created using MSSQL Server JDBC library. Due this condition test on "http://svsapsmp.excelsiorgama.com.ve:50100/TJdbc/servlet/TestJdbc" fails showing error "404 Not Found".
    Current values were set as follow:
    -- DriverName --
    Value: com.microsoft.sqlserver.jdbc.SQLServerDriver
    -- FixedCatalog --
    Value: KATALS
    -- FixedSchema --
    Value: dbo
    -- Password --
    Value: xxxxxxx
    -- URL --
    Value: jdbc:sqlserver://katals.excelsiorgama.com.ve;databaseName=KATALS
    -- UserName --
    Value: sa
    -- In aliases --
    KATALSDEV
    Notice that I've implemented Microsoft SQL Server 2005 JDBC Driver Version 1.0 (sqljdbc_1.0.809.102_enu.exe). This was successfully tested with a test datasource in VA (Server -> Services -> JDBC Connector)
    against same database.
    I've been supported by document "How to ... Configure UD Connect on the J2EE Server for JDBC Access to External Databases" and all preceding steps till this point has been configured successfully.
    Any workaround?

    The test URL has changed. It is now:
    http://[host]:[port]/TestJDBC_Web/TestJDBCPage.jsp

  • Sharepoint2013 Stop asking for UserName and Password

    Hi,
    I have Installed New sharePoint2013 Server , I face Issue that Sharepoint Site keep asking for UserName and Password aeach Time.
    I set as  windows authentication in both IIS and Central Administration ,
    and I configure The IE and I set Automatic Login with Current Username And Password and I put it in Trusted site  and nothing  change.
    I also have sharepoint 2010 server and when I configure it like above it
    stopped ask me for UserName and Password ,
    Can any one help me what maybe  the problem in SharePoint server2013.
    thank you,,,

    Hi,
    Try following these steps:
    Adding the site to Local Intranet Zone: 
    Navigate to Tools > Internet Options
    Under Security tab, navigate to Local Intranet > Sites > Advanced. Enter the URL of your SharePoint site and click Add. Uncheck theRequire server
    verification (https:) for all sites in this zone box and click Close
    Adding the entry to the Credentials Manager: 
    Go to Start > Run and type in control keymgr.dll to open the Windows key manager.
    Alternatevily: navigate to Contorl Panel > User Accounts > Manager Windows Credentials
    Select Add a generic credential
    Add your SharePoint site URL, login and password to the corresponding fields. If this entry already exists, edit it to have your login credentials. 
    Reboot the computer.
    If you are missing the Add button, you may want to modify Windows Registry to be able to save the password.
    Note: for editing Windows Registry, administrator rights are required. Editing Windows Registry is not safe and you will perform it at your own risk.
    In Windows, go to Start > Run and enter regedit.
    Navigate to HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Lsa\.
    Find the DisableDomainCreds entry. A value of 1 (enabled) will prevent you from saving new credentials. 
    Change the value to 0 and reboot. Now you should have the Add button available. Note that 0 is the default value.
    Also check the LmCompatibilityLevel entry. It should be set to 3, which is the default value. If you have another value, change it to 3. If it does not
    work with 3, then also try it with 2.
    Reboot the computer to apply changes.
    Ref: http://hosting.intermedia.net/support/kb/?id=1668
    If this helped you resolve your issue, please mark it Answered

  • Dynamically setting the values for the Adapter Configuration in BPEL

    We are configuring the JMS adapter to put into an MQ topic. For this we are giving all the values for the configuration parameters like
    Factory Properties.
    JMS connection Factory
    Transacted
    Destination Type
    Username
    Password
    Destination Name, etc...
    and we are able to produce message on the MQ.
    Our requirement is to dynamically pass the values for the above parameters from some configuraion files(other than oc4j-ra.xml), which will have value for each obove parameters.
    Any help on this is highly appreciated.
    Regards,
    Suman

    Re: JMS Properties setup
    this thread will explain how to do it.

  • New Imac. I get rid off login password from security and account and restart. Now it asks for username and password and it's not acepting anything. Any ideas?

    New Imac. I get rid off login password from security and accounts and restart. Now it asks for username and password and it's not acepting anything. Any ideas?

    First, reset your password as follows.
    Boot into Recovery by holding down the key combination command-R at startup. Release the keys when you see a gray screen with a spinning dial.
    When the OS X Utilities screen appears, select Utilities ▹ Terminal from the menu bar.
    In the Terminal window, type this:
    resetpassword
    That's one word with no spaces. Then press return. A Reset Password window opens.
    Select your boot volume if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Follow the prompts to reset the password. It's safest to choose a password that includes only the characters a-z, A-Z, and 0-9.
    Select  ▹ Restart from the menu bar.
    You should now be able to log in with the new password, but you won't be able to unlock the Keychain. If you've forgotten the Keychain password (which is ordinarily the same as your login password), there's no way to recover it. You’ll need to reset your keychain in the preferences of the Keychain Access application.
    If you're being prompted to authenticate when making changes to files inside your home folder, continue as follows.
    Back up all data now.
    This procedure will unlock all your user files (not system files) and reset their ownership and access-control lists to the default. If you've set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. If none of this is meaningful to you, you don't need to worry about it.
    Step 1
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Drag or copy — do not type — the following line into the Terminal window, then press return:
    sudo chflags -R nouchg,nouappnd ~ $TMPDIR.. ; sudo chown -R $UID:20 ~ $_ ; chmod -R -N ~ $_ 2> /dev/null
    Be sure to select the whole line by triple-clicking anywhere in it. You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning not to screw up. You don't need to post the warning. If you don’t have a login password, you’ll need to set one before you can run the command.
    The command will take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear, then quit Terminal.
    Step 2
    Boot into Recovery by holding down the key combination command-R at startup. Release the keys when you see a gray screen with a spinning dial.
    When the OS X Utilities screen appears, select Utilities ▹ Terminal from the menu bar. A text window opens.
    In the Terminal window, type this:
    resetpassword
    That's one word with no spaces. Then press return. A Reset Password window opens. You’re not going to reset a password.
    Select your boot volume if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select  ▹ Restart from the menu bar.

  • Dynamically setting the values for the Adapter Configuration

    We are configuring the JMS adapter to put into an MQ topic. For this we are giving all the values for the configuration parameters like
    Factory Properties.
    JMS connection Factory
    Transacted
    Destination Type
    Username
    Password
    Destination Name, etc...
    and we are able to produce message on the MQ.
    Our requirement to dynamically pass the values for the above parameters from some configuraion files(other that oc4j-ra.xml), which will have value for each obove parameters
    Any help on this is highly appreciated.

    Re: JMS Properties setup
    this thread will explain how to do it.

  • Warning: Could not find the customization level value for document

    Hi All,
    I am trying to upload the translation for one of the page at responsibility level.
    I am getting following warning when running the below command.
    java oracle.jrad.tools.trans.imp.XLIFFImporter $APPL_TOP/xmci/12.0.0/fr-CA/Translated/ARIACCTDETAILSPAGE.xlf -username apps -password apps -dbconnection "$AD_APPS_JDBC_URL"
    Warning: Could not find the customization level value for document "/oracle/apps/ar/irec/accountDetails/webui/customizations/responsibility/51688/ARIACCTDETAILSPAGE".
    The same is working fine if the translation is for some attribute at site or function level.
    Did anyone faced this kind of issue.
    Thanks,
    Anoop

    Anoop,
    I am sure you would have verified the responsibility id in the target instance is 51688(may be source instance your resp id is 51688 and in target it is different).
    Have a look at this below notes, it might help.
    1077267.1 - Unable To Move Resp Level OA Personalization From 1 Env To Another
    848851.1 - Attempting To Upload XML File Generates Error: Could not find the customization level value for document
    Thanks.
    With Regards,
    Kali.
    OSSI.

  • Driver class name value for SQL Server JDBC driver

    if i am using SQL Server JDBC driver to connect to DB using STRUTS DBCP
    what will be the value for the property="driverClassName"
    & value for property="url"
    eg., <data-source type="org.apache.commons.dbcp.BasicDataSource" >
    <set-property property="driverClassName" value="org.gjt.mm.mysql.Driver" />
    <set-property property="url" value="jdbc:mysql://10.1.0.8/omega4105" />
    <set-property property="username" value="iris"/>
    <set-property property="password" value="iris"/>
    </data-source>

    For SQL Server 2000
    com.microsoft.jdbc.sqlserver.SQLServerDriver
    For SQL Server 2005
    com.microsoft.sqlserver.jdbc.SQLServerDriver

  • What the Initial value for sy-tabix & sy-index

    Hi Folks
       I have a small doubt.
    What the Initial value for sy-tabix & sy-index?
    Can anyone please clarify me?
    Regards,
    Sree

    hi sree,
    both values are initialized to 0 before processing and after processing values are changed according to used scenarios.
    if helpful reward some points.
    with regards,
    suresh babu aluri.

  • Report on Open Items along with Qty & Value for LA confirmed items

    Hi,
    I would like to know a report of Open POs(No Goods receipt made) but LA confirmed Items along with Values(Amount)
    i.e
    List of confirmed,unsent items along with Values for plant wise or vendor wise or PO Number wise.
    Regards,
    Vengat

    Hi,
    Any other inputs?
    Our client's requirement is to know how many (Both Qty & Value) of items for the input LA confirmed(ASN received) but no GR Made
    Regards,
    Vengat

  • Error while reading UcdContext [trying to read / set application values for users]

    Hi,
    I am trying to write a program to store user selected values on NW7.3 Portal using "User Content Directory". I can see and read some code snippets on how to set and read the context but I am getting one error after another.
    The error message I am getting is
    "com.sapportals.portal.pcd.gl.PcdGlContext:service:[email protected]entClassLoader@84507ed@alive incompatible with interface com.sapportals.portal.pcd.gl.IPcdContext:sap.com/[email protected]der@f46d103@alive ". Code snippet is as given below at the end of the message.
    1) I tried different ways to have a lookup and always gave message as "look up not found" and for pcd:portal_content came up with above error.
    2) Once I read the UCD context, I would like to store some values based on user selection and store them. User may change the values whenever they like and I will be using the values for other purposes in another application.
    3) Has any one successful in setting and reading UCD Context in NW 7.3. Will it be possible to share such sample code as the code snippets at http://help.sap.com/saphelp_nw73ehp1/helpdata/en/4a/8e1bce28e24dd8abd9f4de05e5587d/content.htm are not much of use unless I am able to read the UCD.
    Thanks for your help!
    Regards,
    Raju
    TestingUCD is my test application and the following is code snippet
    InitialContext initialContext = null;
    IPcdContext pcdCtx;
    Hashtable env = new Hashtable();
    env.put(UCD_INITIAL_CONTEXT_FACTORY, UCD_INITIAL_CONTEXT_FACTORY);
    env.put(Context.SECURITY_PRINCIPAL, request.getUser());
    env.put(Constants.REQUESTED_ASPECT, IPcdAttribute.PERSISTENCY_ASPECT);
    try{
    initialContext = new InitialContext(env);
    //response.write("Before pcdCtx lookup");
    try {
    pcdCtx = (com.sapportals.portal.pcd.gl.PcdGlContext) initialContext.lookup("pcd:portal_content");
    } catch(Exception e){
    response.write("Some problem with lookup" + e.getMessage());

    Hi,
    There are quite few differences in the standard code snippet given by SAP Help on UCD and the once that you put above in the question.
    Below is standard snippet.
    Hashtable<Object, Object> env = new Hashtable<Object, Object>();
    env.put(Context.INITIAL_CONTEXT_FACTORY,
    IPcdContext.UCD_INITIAL_CONTEXT_FACTORY);
    env.put(Context.SECURITY_PRINCIPAL, user);
    InitialContext ctx = new InitialContext(env);
    pcdCtx =  (IPcdContext) ctx.lookup("");
    ============================
    Check the ones highlighted in BOLD and compare them in your code. In your code when ur doing initial lookup you are not using the Correct class type cast for the returned lookup object!
    Your code shows as below:
    pcdCtx = (com.sapportals.portal.pcd.gl.PcdGlContext) initialContext.lookup("pcd:portal_content");
    But may be it shd have been something like below:
    pcdCtx = (IPcdContext) initialContext.lookup("pcd:portal_content");
    Pls verify and hopefully this resolves your issues around look up.
    Thanks,
    Swapna Priya.

Maybe you are looking for

  • If someone logs into your account at the same time

    If someone on another computer logs into your account at the same time you are....and say you are in the middle of a conversation with someone, can the other person that logged in from a separate location see your conversation and video???

  • SQL performance difference in application an in SQL Server

    We are using Visual Studio 2010 and SQL Server 2012. We insert into the database using the stored procedure InsertData. When I timed in the program how long it takes to execute stored procedure InsertData, it takes more than 10 ms per insert. But, ou

  • Lumia 925 Black Update

    After Black update of my Lumia 925 Glance screen does not always display the Time , though it is  always on. Try to fix this bug. Soft reset couldn't solve the problem.

  • How can i creat a "book"

    i have microsoft office but i can figure out how to make a document where it takes an 8 1/2 by 11, landsape, print on both sides and make it into colums. if anybody could help me that would be great!

  • Error 25211. Failed to install performance counters while trying to remove a 2012 SP1 agent from system.

    I have a system that has the "Repair and Uninstall" options grayed out from the Management Server (2012 SP-1) and if I go to the system itself, I have tried repairing the Agent Installation (Does not work successfully) and I now am trying to "uninsta