How clean unused / not installed applications from SCCM

Hi all,
Again I need your help guys. I hope you will help me with this "simple" task. :-)
I have found in our SCCM infrastructure, we have a lot of applications. I sure, many of this is not used anymore. It will be smart to clean SCCM from unused applications. And now question: SCCM has bulit-in report, which I can use to get list of all applications
which are not used / installed on users devices? I have checked maaaaaaany of reports in SCCM but I can't find it.
Thank you for any suggestion. 

Asset Intelligence also tracks some software usage, but I am not sure how accurate or useful the data is.
SSRS -> Asset Intelligance -> Software 09A
SSRS -> Asset Intelligance -> Software 09B
Daniel Ratliff | http://www.PotentEngineer.com

Similar Messages

  • E51 - How to move pre-installed application from m...

    Hi all,
    I just purchased my E51 some days ago. The phone packaged with Advanced Call Manager pre-installed in microSD card. Now I want to use my 2gb microSD instead of 512mb from Nokia but I will lose the application if I take out the microSD card. How can I move that application from card to phone memory since I could not find the *.sis of that application.
    Thanks in advance.

    A new phone just includes the installers - you can choose whether to install on the phone or memory card.
    However, you can still transfer the app to the newer memory card. Use a card reader, or connect your phone in "Data Transfer Mode", and copy ALL the content of the 512mb card to your computer - make sure that you include the hidden files too. Then copy over these files to your new memory card, again take care to copy the hidden files. That way, you will have the pre-installed software on your new memory card.

  • Re: How do I keep an application from being started morethan once?

    Here are some quick ideas. None of them should be too hard to implement,
    although each has some drawbacks.
    1. Have a login server track who is logged on, and if there is already a
    logon for a given user or a given machine, then deny the application
    startup. The nice thing about this is that a user will not be able to have
    multiple logins even by going to another machine. Then again, this may not
    be so nice, and you also get a possible single point of failure on the
    login server for which you will have to prepare.
    2. Drop to the operating system, and get a list of processes for the client
    machine. If the name of one of them matches the name of application that
    is being run, then deny startup. This avoids a network hit, but requires
    some OS specific code. Also, a clever user could change the name of an
    executable to get around this. Note that a user could have another login
    on another machine.
    3. Write to a file on the local machine. You can hide the file in some
    suitable place, and can also scramble some information so that a user
    cannot get around having this file present by reading from the file at
    startup and then writing to it. Based on the state of your application,
    the file will have some scrambled information indicating if an instance of
    an application can be started. If you retain the write lock (i.e. do not
    close) the file for the duration of the application, you increase your
    security at the risk of a confused user if the application gets terminated
    without releasing the lock. Depending on the OS where the client will run,
    this could be an issue. If you like this option, perform some experiments
    first on all configurations of an example client machine to determine the
    behavior. Again, this only works to prevent an extra login on a single
    machine, not system wide.
    If you are not concerned about your users hacking around too much and don't
    care about a login on another machine, I would opt for some version of
    number 3. Otherwise, I would venture number 1.
    Regards
    CSB
    At 07:47 AM 2/18/98 -0500, Martin G Nystrom wrote:
    A user can launch an application, then launch it again. How do we make it so
    that the user can only run one instance of the application?
    Martin Nystrom
    Eli Lilly and Company
    ([email protected])
    Curtis Bragdon, Senior Consultant, Forte Software
    [email protected]
    Voice Mail: (510) 986-3807
    Paging: (888) 687-6723
    "I've seen dozens of triggering towns." - Richard Hugo

    Yet another quick and dirty solution is to use local ExternalConnections.
    This is a single instance per machine solution.
    Example is attached.
    (See attached file: TestOne.pex)
    [email protected] on 02/18/98 10:01:07 PM
    Please respond to [email protected]
    To: [email protected]
    cc: [email protected]
    Subject: Re: How do I keep an application from being started more than
    once?
    Martin,
    there are two ways to read your question
    (a) no more than one instance of an application per machine
    (b) no more than one instance of an application per "user"
    now if a user has only one machine, and your system has "userids" and you
    only want
    one active "session" per "user" then the distinction is irrelevant.
    However, many systems
    let people share logins, so a token based thing enforcing one login will be
    problematic.
    The downside of #1 approach suggested by Curtis happens when a machine gets
    hosed without "logging" the user off the security system, then they can't
    get in until their ticket expires or a sysadmin gets involved. Should be
    manageable, however. But this enforces one application
    instance per user, unless you check both for the presence of an active
    token for that user as well as the presence of a token tied to that
    particular node name. Otherwise there is nothing to prevent the same user
    from launching the app again and logging in as a different user. This is
    definitely the best approach of the bunch, and can be adapted for either
    (a) or (b).
    Suggestion # 2 won't work unless the application is built as a compiled
    client,
    since the process name will be 'ftexec' and not the "name" of the
    application. And it doesn't
    prevent a user from launching the app from a different machine (or people
    sharing logins). So again it depends on what you are trying to achieve.
    #3 also only prevents multiple instances per machine, not necessarily by
    user. Of course
    most people don't have multiple machines. The point is that you may be
    trying to
    prevent your users from sharing logins. In which case the file thing won't
    do it.
    Some other ideas:
    1. You could, however, enforce one application per machine using the
    installed partition agent's ExecutingPartition instrument name. As long as
    the user doesn't run the app in a different environment, you can have the
    app check at startup time if there is another
    ActivePartition running under the same InstalledPartition name.
    (ActivePartitions are child agents
    of InstalledPartitions).
    2. use the ObjectLocationManager and bind a simple object into the naming
    system using a naming scheme such as
    /MyApplication/MyNode or
    /MyApplication/MyUserId
    the presence of either one would indicate that another instance of that
    application is running on either that machine or that user. Of course
    these have to be cleaned out, and subject to similar downside as
    alternative #1. So you'd essentially be using the forte naming system as a
    distributed lock manager (ouch).
    3. Have the application remove the shortcut to launch it upon startup, and
    recreate it when it is finished, or move it to a hidden place. There it
    is - the worst idea I've ever come up with. Don't
    do this!
    Regards,
    John
    From: Curtis Bragdon <[email protected]>
    Date: Wed, 18 Feb 1998 16:36:58 -0500
    Subject: Re: How do I keep an application from being started more than
    once?
    Here are some quick ideas. None of them should be too hard to implement,
    although each has some drawbacks.
    1. Have a login server track who is logged on, and if there is already a
    logon for a given user or a given machine, then deny the application
    startup. The nice thing about this is that a user will not be able to have
    multiple logins even by going to another machine. Then again, this may not
    be so nice, and you also get a possible single point of failure on the
    login server for which you will have to prepare.
    2. Drop to the operating system, and get a list of processes for the client
    machine. If the name of one of them matches the name of application that
    is being run, then deny startup. This avoids a network hit, but requires
    some OS specific code. Also, a clever user could change the name of an
    executable to get around this. Note that a user could have another login
    on another machine.
    3. Write to a file on the local machine. You can hide the file in some
    suitable place, and can also scramble some information so that a user
    cannot get around having this file present by reading from the file at
    startup and then writing to it. Based on the state of your application,
    the file will have some scrambled information indicating if an instance of
    an application can be started. If you retain the write lock (i.e. do not
    close) the file for the duration of the application, you increase your
    security at the risk of a confused user if the application gets terminated
    without releasing the lock. Depending on the OS where the client will run,
    this could be an issue. If you like this option, perform some experiments
    first on all configurations of an example client machine to determine the
    behavior. Again, this only works to prevent an extra login on a single
    machine, not system wide.
    If you are not concerned about your users hacking around too much and don't
    care about a login on another machine, I would opt for some version of
    number 3. Otherwise, I would venture number 1.
    Regards
    CSB
    At 07:47 AM 2/18/98 -0500, Martin G Nystrom wrote:
    A user can launch an application, then launch it again. How do we make itso
    that the user can only run one instance of the application?
    Martin Nystrom
    Eli Lilly and Company
    ([email protected])
    Curtis Bragdon, Senior Consultant, Forte Software
    [email protected]
    Voice Mail: (510) 986-3807
    Paging: (888) 687-6723
    "I've seen dozens of triggering towns." - Richard Hugo
    John Jamison
    Vice President of Technology
    Sage IT Partners, Inc.
    415 392 7243 x 306
    [email protected]

  • How do I remove old applications from my new Macbook Pro that came over when the data on my iMac was migrated to the new computer.

    How do I remove old applications from my new Macbook Pro that were part of the data that was migrated over from my older iMac?
    Thanks

    If the applications were originally drag and drop installations you can simply drag them to the trash and empty. If they were installed by an installer there should be an uninstaller included. If you're not sure you should check with the software developer for instructions. In this case Google can be your friend.

  • MDT 2013 UDI install Application list SCCM 2012 R2

    Hello,
    did anyone have an idea how i can add all my application from sccm to the mdt udi install application list ?
    I don´t want to add every single application.

    If you haven't found your answer yet, here is a great video that will show you how to do exactly what you are asking about, among other things.
    https://www.youtube.com/watch?v=off-VGYZIEo

  • How do you transfer pages application from macbook to new iMac

    how do you transfer pages application from macbook to new imac?

    Install it on the iMac using the same method you used to install it on your MacBook.
    If your MacBook came with it already installed, it may not be a version compatible with your new iMac.

  • Resources have been modified while installing application from windows machine?

    Hi,
    I am trying to install application from windows machine, but it gives me reources have been modified everytime. Can someone let me know how to avoid this problem?
    I have tried the iTuneswork without extension way but still I am getting the same error. I really dont understand what this error is about. It would be really nice of someone to guide me on this.
    The OS version on the device is OS 3.0.1 and itunes version on windows is 9.0.2.
    Please let me know what this issue is about.
    Thanks & Regards
    Sunil

    Hi,
    Its strange that no one turned with any answers. Anyhow, the issue has mostly been resolved. There are some file names which were getting modified in windows and not in MAC system.
    Just in case anyone facing the same issue please check the file name of the resources you added.
    Hope it will help out someone.
    Thanks & Regards
    Sunil

  • How to open or install fonts from a .suit file under Lion?

    How to open or install fonts from a .suit file under Lion? Thanks!

    although I believe I *have* used the .suit extension when I was creating suitcase files for TrueType fonts.
    You can get away with that because you haven't really changed anything. It's already a suitcase file, with a Type code of FFIL (the Creator code is mostly irrelevant). Adding .suit still tells the OS it's a suitcase.
    However, if you do something silly like change the Type code to LWFN (the outline portion of a PST1 set), then neither Font Book, or any other font manager knows what to do with it. It's recognizing the LWFN code, but the data structure of course doesn't match. The file is still a Mac legacy TrueType font. Suitcase Fusion 5 tosses this on the screen when I change the Type code to the wrong one:
    Changing the extension to something obviously wrong, like .otf produces the same message. It's trying to parse the data according to what the extension says it is, and nothing lines up.
    Trying to use .ttf or .ttc also doesn't work. A Mac legacy suitcase TrueType font is not built the same as a .ttf or .ttc font. Either is technically correct (it is a TrueType font), but that's the only similarity. What's happening in that case is Mac legacy TT fonts have all of the data in the resource fork. When you add .ttf or .ttc to the name, the OS and any font manager then tries to find the data in the data fork. Nothing there.

  • How to uninstall / delete an application from my IPOD Touch?

    How do I uninstall an application from my IPOD touch.
    A recent application I installed (WIFITrak) doesn't work very well.
    I would like to uninstall it.

    It's in the manual, page 50.
    Regards.

  • How do I uninstall an application from my home screen?

    How do I uninstall an application from my home screen? example: I want to remove my fantasy football team website from my home screen. I accidently saved it on the home screen twice, so now I have two of the same thing saved on my home screen.

    This is an app, not a web clip from a website?
    Not sure how there can be two copies of the same app on your iPhone.
    If a web clip from a website, press and hold the icon for the web clip or on the icon for any other app or web clip on the home page where the web clip is located until all icons start to wiggle. Select the X on the icon for the web clip that you want deleted. After the web clip is deleted, press the home button.

  • How do I uninstall an application from my Imac

    How do I uninstall an application from my Imac

    See Here >  Uninstalling applications
    If the application has an uninstaller use that. 
    If not... drag it to the trash and... Empty the Trash

  • How do I remove the application from your iPad at the same time and with the clouds?

    Hello,
    how can I remove the application from your iPad at the same time and with the clouds?
    I know you press the app icon until it starts shaking, then press the black cross in the upper left corner. This will remove it.
    But still I will come in to the store as a bookmark Purchated I see it with the symbol of a cloud. And I would like to remove it for good. Under iOS 5.1.1 somehow I managed to do that (at least hide it). In iOS 6 I can not do that.
    I greet

    The only transition you can add this way is default cross dissolve. If the images are in the timeline, move the playhead to the beginning of the images, select them all, and drag from the timeline to the canvas to overwrite with transition.

  • TS2446 i have a problem in my account every time i want to install application from app Store on my iphone a message shows that my Apple ID has been disabled, what is the problem? what can i do ?

    i have a problem in my account every time i want to install application from app Store on my iphone a message shows that my Apple ID has been disabled, i creat a new password and still that message shoes ,what is the problem ?can you help me please???!!!!

    If your account is disabled then you might be able to re-enable it via this page : http://appleid.apple.com, then 'reset your password'
    You might then need to log out of your account on your phone by tapping on your id in Settings > iTunes & App Store and then log back in so as to 'refresh' the account on it
    If that doesn't fix it then you might need to contact iTunes Support : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • How to call a VB application from Java

    Hi,
    does anybody know how to call a VB application from java.
    Would appreciate if you can provide me with an example.
    thanks

    try exec()ing the cad program with the name of the file as a command line parameter...
    Runtime.getRuntime().exec("CADProg.exe Test.prt");
    i have no clue if this will work but it seems like it's worth a try.

  • How to execute 2 different application from same Application Server

    Hi,
    I would like to know that how to execute two different applications from the same Application Server with different databases?
    We are using
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0
    Oracle Application Server 10g 10.1.2.0.2
    Regards,
    Hassan

    what type of applications you want to run from the same application server, Hassan?
    What other DB are you using to launch it beside the one you quoted? Is it the MRep DB of infra?

Maybe you are looking for

  • Server name restrictions

    I am planning a System Center deployment and am wondering if there are any restrictions with naming the SC servers.  Meaning, is it allowed to use SCCM as the Management server name and SCCMDP as a distribution point?   Or a restrictions with any oth

  • Possible to Exclude a specific intersection from DATAEXPORT?

    Version: 11.1.2.2 Is it possible to Exclude a specific intersection from a DATAEXPORT in an Essbase Calc Script? I am able to exclude a member but I only want to exclude 1 intersection. Simplified Cube: Fund Dimension Center Dimension Account Dimensi

  • Why it gives an error , although the result is correct

    Hello everybody, here is my code, which i wrote in another way, After th sucessful compiling it gives an error, but the results of execution is ok. What is wrong? import java.io.*; import java.lang.*; import java.util.*; import java.awt.*; public cla

  • Invalid Escape Character Issue

    I seem to be getting this error when I try to post this simple snippet           online           <%--           This page lists topics for a selected forum.           --%>           <%@ page errorPage="/misc/error.jsp"           import="java.net.*"

  • Date mask again

    Hi, This is a continuation to the first theread posted can I have fm up to only 'mm/dd/yyyy hh' and rest mi:ss display as it is, is it possible? like this '01/01/2009 01:05:05' to '1/1/2009 1:05:05' no mask for 'mi:ss' previous one Date format single