Remove Obsolete Attribute Discovery in SCCM2012

I have SCCM 2012 and Windows 2008 R2, I create custom attribute on AD for my Computers, on Discovery Properties of my SCCM I added my custom attribute and can see on properties of my computers on SCCM.
I want delete custom attribute of properties the computers of SCCM, I remove custom attribute on Discovery Properties but still showing on my computers.
My question is, How to Delete custom attribute of computers on SCCM?
Thanks.

Not sure about this one, but I would think it will be removed when the maintenance task
Delete Aged Discovery Data runs. Otherwise you could also remove the object and rediscover it, but in that case you'll loose deployment information about the object.
My Blog: http://www.petervanderwoude.nl/
Follow me on twitter: pvanderwoude

Similar Messages

  • Problem removing session attributes

    I have a problem removing session attributes
    I try w/ mysession.removeAttribute("key");
    but it still lives in memory. I've tried setAttribute("key", null) as the API states that will do the same thing, but it doesn't work.
    I can get mysession.invalidate() to work, but I want to keep some of the attributes there, while removing another.
    I get no exceptions and no errors.
    Help.
    Running Tomcat 4
    jre 1.3.1

    Actually,
    response.addHeader("Expires", "-1");should be enough.
    The browser should then contact the Web server for updates to that page via a conditional If-Modified-Since request. You don't want a cache disabling 'overkill', since you'd still want the page to remain in the disk cache and used in appropriate situations without contacting the remote Web server, such as when the BACK and FORWARD buttons are pressed...
    Anyway, try this first, and if it doesn't solve your problem, add the other cache-disabling headers, as outlined in the previous post.
    If you're using JSP, verify also that your page has
    <%@ page session="true"%>

  • Xquery: Element to Attribute Mapping - remove empty attribute tags

    Hi,
    I have a requirement to map source schema xml elements to target schema xml element attributes
    i have done it like below
    <Spd minimumvalue = "{ xs:decimal(data($Test/*:A)) }"
    maximumvalue = "{ xs:decimal(data($Test/*:B)) }"
    averagevalue = "{ xs:decimal(data($Test/*:C)) }">
    Where A,B,C are the source schema elements.
    So once the transformation is done the output looks like this
    <Spd mimimumvalue="1" maxmiumvalue="" averagevalue="3"/>
    Now i got to remove the attribute which has null value.
    the output should look like this
    <Spd mimimumvalue="1" averagevalue="3"/>
    I tried using exists function and implemented it. But then if i have more than 2/3 attributes in the outout xsd then i need to have many if conditions.
    Is there any other alternative for this.
    Please suggest. Appreciate your help.

    Hi,
    Is there any other alternative for this. I'm not aware of any.
    Using exists() is a good solution though, and it's easy to implement with element and attribute constructors :
    return
      element Spd
       if (fn:exists($Test/*:A/text())) then attribute minimumvalue { xs:decimal($Test/*:A) } else (),
       if (fn:exists($Test/*:B/text())) then attribute maximumvalue { xs:decimal($Test/*:B) } else (),
       if (fn:exists($Test/*:C/text())) then attribute averagevalue { xs:decimal($Test/*:C) } else ()
      }Is that what you've tried?

  • How to remove obsolete parameters in oracle

    hi,
    can anyone tell me how to delete a obsolete parameter in oracle,wat are the steps to follow or is there any command
    Thanks
    renjy

    how to remove obsolete parameters.

  • Removing an attribute from a group by clause

    This concerns a web application developed by JDeveloper 10.1.2 (adf, uix). I have viewobject with a query, written in expert mode, that has a group by clause. I removed an attribute from the select statement that was included in the group by clause and removed it from the bindings of the page that displays the data from the view. When I test the application module the data is grouped correctly. But when I run the view the attribute is not shown on the page but the data is still grouped by the attribute. The same query works fine in SQL plus, it looks like JDeveloper 'remembers' the old group by clause somewhere. I checked the xml file of the view object and it looks ok. Where can the old group by clause be written? How comes it is still applied?

    joni1129 wrote:
    I am trying to place a shape on an image and remove it from the photo, creating just the picture within the shape.  When I follow instructions, I get a lovely shape around my image, but the image isn't removed.  It just sits in a white-checkered background.
    How do I get rid of the white background?
    The white-checkered background is a visual reference for transparency. (It won't print.) To keep the transparency, you need to save in a format that supports transparency, PSD, TIF (with save transparency checked), PNG, or GiF. If you save in a format such as JPG that doesn't support transparency, the transparency is replaced by white.
    Edit: If you are transferring the image into another software application, you may have to save the selection along with the image. Select<Save Selection. You'd have to also check which of the formats that application accepts.

  • How to implement for coherence*web to remove an attribute of a specific sessionid?

    Hi,
    Customer using coherence*web 3.6 wants to remove an attribute in NamedCache with a specific jsessionid.
    If it is possible, please let me know how to implement it.
    Thanks in advance,
    YH

    Hi sangee,
    you could get what you want to do by using a Java Server Page instead of both a HTML page and a Servlet.
    I should code something like this:
    <%Strung color="yourColor"%>
    <html><head><title></title></head>
    <body bgcolor="<%=color%>
    </body>
    </html>

  • How to remove elements/attributes from XML using Xpath in XSLT ??

    Hello ,
    Is there anyway or method of Xpath from which I can delete the elements and attributes from XML at runtime ??
    Like I have such XML and I have to remove per attribute highlighted below
    <person per="and">
    <e:emp a="ir" b="ad" >
    </e:emp>
    </person>
    And want a result like this
    <person>
    <e:emp a="ir" b="ad" >
    </e:emp>
    </person>
    Thanks

    To achieve this you can use the bpelx:remove function: http://download.oracle.com/docs/cd/E12483_01/integrate.1013/b28981/manipdoc.htm#CIHJBJFD
    your assign will look like:
    <bpel:assign>
    <bpelx:remove>
    <target variable="person" query="/person/@per" />
    </bpelx:remove>
    </bpel:assign>
    Regards,
    Melvin

  • [svn:osmf:] 14818: Remove obsolete logger references.

    Revision: 14818
    Revision: 14818
    Author:   [email protected]
    Date:     2010-03-17 10:39:19 -0700 (Wed, 17 Mar 2010)
    Log Message:
    Remove obsolete logger references.  Move all log statements  into conditional blocks.
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/elements/compositeClasses/CompositeDisplayObjectTrait. as
        osmf/trunk/framework/OSMF/org/osmf/layout/LayoutTargetSprite.as
        osmf/trunk/framework/OSMF/org/osmf/layout/MediaElementLayoutTarget.as
        osmf/trunk/framework/OSMF/org/osmf/net/NetConnectionFactoryBase.as
        osmf/trunk/framework/OSMF/org/osmf/net/NetStreamSwitchManager.as
        osmf/trunk/framework/OSMF/org/osmf/net/rtmpstreaming/DroppedFramesRule.as
        osmf/trunk/framework/OSMF/org/osmf/net/rtmpstreaming/InsufficientBandwidthRule.as
        osmf/trunk/framework/OSMF/org/osmf/net/rtmpstreaming/InsufficientBufferRule.as
        osmf/trunk/framework/OSMF/org/osmf/net/rtmpstreaming/RTMPNetStreamMetrics.as
        osmf/trunk/framework/OSMF/org/osmf/net/rtmpstreaming/SufficientBandwidthRule.as

    Hi Armin,
         The thing is i am getting table but not getting scroll bar if i am using scrollbarContainer it will come but i want according to the help.sap.com example
    see the link given below u go through and see the output screen of that table i want like that
    In help->Developingwebapplications->webdynpro->DevelopmentProcess->DateBindingofUserInterfaceElements->DataBindingof a Table->Codeexampleof TableDisplay
                                 tony

  • How to remove obsolete oss note from SPAU List

    Dear All,
       How to remove obsolete oss note from SPAU List. Bocz it having yellow trafic Signal and  it is not allowing me to reset to orginal or adopt.
    Please tell me how to reolve this problem.

    Hi,
    Please mention the Netweaver release of your system.
    Next, if you mention the note is obsolete - the traffic light should be grey.
    If its yellow, that means semi-automatic adjustment needs to be made.
    If you click on the obsolete greyed out note, you get a message saying the note correction was delivered with upgrade or support package and it could be reset.
    If you click on the yellow note, the system would try to reapply the note via SNOTE.
    Please try either or the above and let us know the system response.
    Regards,
    Srikishan

  • [svn:osmf:] 10528: Removing obsolete import statements.

    Revision: 10528
    Author:   [email protected]
    Date:     2009-09-23 02:47:21 -0700 (Wed, 23 Sep 2009)
    Log Message:
    Removing obsolete import statements.
    Modified Paths:
        osmf/trunk/framework/MediaFramework/org/openvideoplayer/media/IContainerGateway.as
        osmf/trunk/framework/MediaFramework/org/openvideoplayer/media/IMediaGateway.as

  • How to remove an attribute in Context when session is invalidated?

    I set a attribute in the context when i login to my application. When i logoff from my application, i remove the attribute from the context.
    But if i close my browser or encounter some error, then the session is not invalidated. The container waits till the session gets timed out and then it invalidates the session. But the attribute that i had set to the context is still there. The next time i login, i check whether the attribute is still available in context. It is.
    Scenario : Assume that i have a application and if i open some thing eg: model, then i update the attribute "read only" flag in the context as "true", so that no one can edit the model on which i am working on.
    When some other user logs in and tries to edit my model, he will get an error stating that the model is read only. Now if i log off, then i update the read only flag as false, so that some body can edit the same.
    But if i close my browser or if i encounter some error, then i am not making the read only flag as false. So even if i am not worling, still the read only flag is set to true in the context. So no one else can work on the model.
    My question is, is there a way to edit the context attribute, when i abruptly close my browser window? Is there a way to handle the dangling session objects and invalidate them immediately?

    Use the HttpSessionListener to determine when the session is destroyed and remove the attribute then. Be aware that aplication attributes are shared by all sessions and can cause problems in a multi-user environment.

  • Dynamically removing context attribute

    Hi all,
    does anybody know a better way of getting rid of dynamically created attributes than using the IWDContext.reset() functionality?
    Best regards,
    Christian

    Hi,
    We had the similar requirement .We have mailed to Uwe regarding this.Please find the reply below .
    there is currently no way to remove a single attribute in NW04. There is only the possibility to reset the metadata to the state that has been declared in the design time. This can be achieved using IWDContext.reset(boolean), reachable via wdContext.getAPI(). The method removes all attributes and nodes, that have been added at run time ("dynamically"), via one of the add…Attribute or add…Child methods of IWDNode. So, if you have added the root attribute at runtime, this method will remove it, but it removes all other dynamically added attributes and nodes, too.
    NW05 will allow to remove single attributes and child nodes, but still only if they have been dynamically added before.
    Regards
    Anil

  • [svn] 3418: Remove obsolete poll-sync responders from PollingChannel and other impacted protocol-specific channels .

    Revision: 3418
    Author: [email protected]
    Date: 2008-09-30 10:24:48 -0700 (Tue, 30 Sep 2008)
    Log Message:
    Remove obsolete poll-sync responders from PollingChannel and other impacted protocol-specific channels.
    QA: No
    Doc: No
    Checkintests Pass: Yes
    This stuff was originally used by a PollingChannel to directly monitor subscribe/unsubscribe commands issued by higher-level components in order to drive a count of active subscriptions, and from that, whether or not the channel needed to issue poll requests.
    However, DataService, and then Consumer ended up managing this directly because they had better insight into when they considered themselves subscribed and they notify the PollingChannel of their state changes directly (mx_internally). When this was added, the underlying poll-sync responder machinery didn't go away, and it generally doesn't cause problems except in the case of a client disconnect without a preceding explicit unsubscribe. In this case the higher level component moves to an unsubscribed state when it disconnects (and lets the PollingChannel know) but because no unsubscribe command is sent by a poll-sync responder, the extra count it added never decrements and the channel continues to poll incorrectly.
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/AMFChannel.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/HTTPChannel.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/NetConnectionChannel.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/channels/PollingChannel.as

  • How to find and remove obsolete table entries from /SAPAPO/MATKEY table in EWM System.

    Hello,
    How to find and remove obsolete table entries from below tables in EWM System.
    /SAPAPO/MATKEY
    /SAPAPO/MATMAP
    /SAPAPO/MARM
    /SAPAPO/MATLOC
    /SAPAPO/MATMOD
    /SAPAPO/MATRQ
    /SAPAPO/MATLOTSZ
    Thank you,
    Pravin

    Pravin,
    First, tell me how you determine that these entries are 'obsolete'.
    Removing master data from SCM can usually be done using transaction WUF; however, you have to ensure that it is not re-sent to the SCM system, or you are just wasting your time.
    Best Regards,
    DB49

  • [svn:fx-trunk] 12971: Remove obsolete code.

    Revision: 12971
    Revision: 12971
    Author:   [email protected]
    Date:     2009-12-15 14:01:01 -0800 (Tue, 15 Dec 2009)
    Log Message:
    Remove obsolete code.  We no longer need the override in RichEditableTextEditManager to force remeasure when one or both of the width and height is auto-sizing and we are typing.  Each insert will trigger the damageHandler which now invalidates the size and if "auto-sizing" will remeasure the text and the update the display.
    QE notes:
    Doc notes:
    Bugs:
    Reviewer: Gordon
    Tests run: checkintests, TextArea, TextInput, NumericStepper, ComboBox
    Is noteworthy for integration: no
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/RichEditableText.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/RichEditable TextEditManager.as

Maybe you are looking for

  • I cannot download the latest update for itunes because it say the file itunes.msi is missing

    I cannot download the latest update for itunes because it says that the file itunes.msi is missing

  • Scaclability of jdbc vs ADF BC

    Hi, Which is faster, jdbc or ADF BC? I have spatial query inside the view object. It seems that it takes very long to execute this. Can we still speed it up by using JDBC call inside ApplicationModuleImpl class instead of View Object?

  • IPod Freezes on Startup; Won't Charge; Computer Won't Recognize

    I just got a used iPod in the mail yesterday... When I try to charge it using a USB drive or a wall charger, it appears as if nothing happens. When I have it plugged into my USB drive, my computer doesn't recognize anything... I've tried using the "r

  • Importing Playlists

    Ok so I want to trade lists with friends via the XML files. Basically I want to transfer playlists without having the Track ID as you will see in the XML files. Before you look, there are 3 lines with track ID's that I need to get rid of. simply beca

  • IMac intel snow leopard white screen must restart?

    since i installed snow leopart my iMac frozse with a white screen. I pressed and held the power button and the computer restared ans seems OK. I ran the Hardware test from the install disc and no problems were fond. What is wrong?