How to prevent my applications to "call home"

I realised it slows down the applications to open -
beside I don't want to send information -
it usually happens with microsoft products / words, excel.
I s there a program that notifie me when an application tried to do it?
I tried snitch but it alerts me every 10 seconds making it hard to work with.
any idea

Little Snitch should do it, isn't there a setting to ask each time, or never allow?
PS. I've seen many MB mysteriously being sent to a hidden MS IP before.

Similar Messages

  • How can I create application folder in home folder?

    Hi there,
    I'm using MacBook Pro Early 2011 model with Mountain Lion (10.8.5).
    I have two questions.
    I recently noticed that there was an application folder in my home folder (the folder with your username), but that application folder had been empty. I remember I used to be able to access to my applications from that folder, but not anymore.
    Since the folder was empty, I deleted it before doing further research. Does anyone know if this is a bad thing?
    After deleting the empty application folder from the home folder, I looked up and some said the application folder in the home folder and the application folder in Macintosh HD are two different folders. I don't know what it means, but I would like to have an application folder with applications in my home folder. Is this possible? or should I just make an Alias folder and put it in my home folder?
    Thank you in advance.

    Thank you for the answer.
    I've screwed up my computer before doing some dumb things without asking, so I was a little paranoid.

  • Kiosk: how to prevent an application from being minimized?  (WinXP)

    Hi,
    I have a desktop application that runs full screen, using opengl, for a turnkey kiosk on Windows XP. I'm having this strange problem with the app minimizing itself as soon as it launches. Here's the scenario:
    1. boot
    2. auto login
    3. app launches
    4. app minimizes itself to the taskbar
    5. developer gnashes teeth
    When the app is re-maximized, it runs fine and doesn't do this again.
    When it's launches normally (not from the startup folder) it behaves fine.
    When you just log out and log in, it behaves fine - this is only exhibited on first boot.
    This wouldn't be a big problem but the app is for a turnkey museum kiosk with no mouse or keyboard, so it needs to launch and run smoothly without any user interaction.
    The issue's described well by another developer here:
    http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Integrate;action=display;num=1156614434
    (I'm using Processing).
    This behavior doesn't repeat with other applications, only with fullscreen, opengl java applications that I make in Processing.
    I've tried the workaround in the above thread (running an external window control app as a subprocess in response to the focusLost() event, which works but not reliably for me.
    Is this behavior something that has to do with Java? Has anyone else seen this before? How do you normally go about making kiosk-type applications in java?
    thanks for any suggestions ...
    --ben                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Yes, I put a shortcut into the startup folder (Documents and Settings/default/Start Menu/Programs/Startup) or whatever it's called.
    I tried Fullscreen and Normal, neither one made any difference. The app does run fullscreen, it just gets minimized shortly after launch. Sometimes it minimizes immediately, sometimes it waits a few seconds and then minimizes.

  • How to prevent one application from touching the in use Environment?

    Hi, all,
    I have an application opening an Environment and using it well. However, this application may have multiple instance in our system. Once another instance touches the environment it will destroy the former's environment.
    My question is how to detect one environment which located in a fixed directory is being in use? If we could detect this, we can prevent the latter instance from touching the environment then.
    Thanks in advance.

    There are DB_CREATE and DB_EXCL flags for DB_ENV->open function, if you specify the OR of them both, you will get what you want: only create the environment if it is not created.
    On the other hand, multiple applications can join the same db environment if their configuration to the environment is compatible; if you are sharing an environment handle, use DB_THREAD in DB_ENV->open, see this for using Berkeley DB in multi-threads: http://www.oracle.com/technology/documentation/berkeley-db/db/ref/program/mt.html

  • How to prevent an application for running multiple times

    I have to prevent launching my java application more than once. i.e. if the application is launched and the user tries to launch again, it should simply display an error msg and quit.
    I tried using java.util.Prefs but it does not help the cleanup does not occur in case of an abnormal termination. (The Runtime.addShutdownHook does not help as well). Please help asap.

    Sir,
    Have you tried forum search feature?
    "One Application instance" problem has been asked and answered many many time here - and he is easily solved.
    Simple solution is to use resource which is cleaned up my operating system for you when application terminates.
    This way, resource is released whether application terminates nicely or from nasty crash.
    Mr ServerSocket is someone who could help you out here.
    When application starts, attempt to listen on a ServerSocket on a well-known port (e.g either hard coded in to, or configured for your app).
    Leave ServerSocket listening for duration of application.
    If another application instance tries to start on same box, it will not be able to listen on same ServerSocket port - and you can close the app.
    In general, try searching before posting: Most questions have been answered many times before - and you'll probably get an answer quicker by searching first than by posting straight out.

  • How to Prevent CacheStore from Getting Called when Loading from DB

    Hi,
    I have a Cache with WriteBehind enabled. The issue is when I'm initializing the Cache from its Persistence Store (SQL Server 2005) I dont want it to call its CacheStore implementation. In the coherence book written by Alexander Seovic it recommends using another Cache to control writing to different Caches, sort of like a global flag, but that will just work in a WriteThrough scenario and not in a WriteBehind. One of my theories is to use a MapTrigger in which when i'm loading from the db I intercept the call and tell the object not write to the DB, maybe through writing directly to the Backing Map though i'm not sure if writing to the BackingMap prevents the Calling of the CacheStore. Please let me know. Tks.

    Hi user13402724,
    The documentation covers a scenario like this here: http://download.oracle.com/docs/cd/E14526_01/coh.350/e14509/appsampcachestore.htm#sthref512
    JK

  • How to prevent simultaneous external RFC calls

    Hi all
    We are facing some problems when external systems are caliing one of our RFC's simultaneously.
    Is there a way to prevent and RFC to be called simultaneouslly?
    Thanks a lot for your support.
    Rui Simões

    Hi,
    We cannot stop external systems to call the RFC. They will call at their own leisure.
    However, so as to keep a check so that processing time does not get wasted,
    and if we want that only one can call the RFC at a time, we can write some
    code inside the RFC.
    For this we can create a z lock object and lock it inside the RFC. Just before the last line of the code, we can unlock it also.
    In the middle we can write the code that if the lock object is already locked, then it can exit and can return  some error message.
    But by doing this, it may impact the understanding of the existing RFC by the external system.
    Regards,
    Amit Mittal.

  • How to prevent .jspx to be called

    Hi
    I am using ADF Faces 11g using ADF controller taskflow.
    My page flow is acting different when i call a page with it's full name (/faces/StartPage.jspx). But problems do not occur when i call it with it's Activity Id. Is there a way to avoid the files to be called by their file name?
    Thanks.

    Hi John.
    In my case, it's a security leak. I am sending the user to login page if not logged in with below method:
    public void onPageLoad() throws IOException{
    // Subclasses can override this.
    if (!isPostback()) {
    UserInfo user = (UserInfo)JSFUtils.resolveExpression("#{UserInfo}");
    if (!user.getIsLoggedIn()){
    NavigationHandler n = FacesContext.getCurrentInstance().getApplication().getNavigationHandler();
    n.handleNavigation(FacesContext.getCurrentInstance(), null, "login");
    If user enters the url with .jspx somehow, handleNavigation does not work and page is shown without having the user logged in.
    Should i use redirect instead of NavigationHandler?
    I have 1 more question. Is it possible to show only the site address on address bar of browsers? (http://domain.name.com instead of http://domain.name.com/faces/StartPage)

  • Little Snitch how to leave apps call home?

    I love Little Snitch but I am wondering are you able to leave certain applications called home with out constantly asking for your permission? I use Kaspersky and it has Web Anti-Virus and what's happening is Kaspersky is calling home to see if the web pages I am going to is safe every that happens Little snitch thing kicks in and ask for permission to leave it do so. I trust Kaspersky is there a way to just leave it do its own thing I'm not to be asking me for constantly asking permissions?

    You need to read the Little Snitch documentation. It is very easy to tell it to always allow certain applications to communicate, I just don't remember exactly how to do it. (It's been a while since I used Little Snitch.) I would have to say, though, that if you haven't read the documentation far enough to learn how to do this, you probably shouldn't be using Little Snitch. It's a powerful tool that can cause problems if not used properly.
    I also would recommend that you use something other than Kaspersky. It's just okay at detecting Mac malware, and there are far better tools that won't cost you any money. See:
    http://www.thesafemac.com/mac-anti-virus-testing-01-2013/
    As to which to use, and whether you should use one at all, see my Mac Malware Guide.

  • How to prevent voice over saying the caller number or name automatically in iphone?

    hi, i'm a new member of apple world,
    i'm using voice over in my iphone 5s, when i receive a call, voice over automatically say the calling number or name with the ring tone, how can i set
    voice over to prevent it saying the caller number or name ??

    Same problem, which is extremely inconvenient because I like to use my earphones to listen to Pandora while I work. Not every time, but most of the time I plug in my earphones, the iPod software starts playing the last song that was played. Stopping the music via iPod or pressing the Home button for 10 seconds to force quit iPod doesn't stop the music as it will just automatically start playing again. Sometimes if I'm lucky, plugging the earphones in very quickly avoids this problem -- but like I said, it's a cross my fingers and hope I get lucky kind of thing.
    I'm using the newer 3G model, which I've had for only about a month. I did not have this problem with my old 2G iPhone.
    Someone in another thread said it's a hardware fault and suggested exchanging the phone for a new one. Can anyone confirm this?

  • How to stop SubmitDiagInfo from "Calling Home"?

    I do not consent to "SubmitDiagInfo" collecting and sending information without my knowledge or consent. The OSX diagnostic reporting, called "SubmitDiagInfo" is now regularly "calling home" without my knowledge and i do not consent to this. Please tell me how to turn this off. I had consented a few times to submit one-off crash reports, thought i was being helpful to Apple, but now the tool is regular collecting information and sending in secret. I will never assist Apple in the future in bug reporting because of this breach of trust. Thank you.

    The application firewall i am using pops up an information windows that tell me what application is accessing the internet, the URL, ectera. Download an application firewall and see it for yourself. If you are security conscious you will find a number of security issues on your machine that you were not aware before, did not authorize, etctera.
    Since this post i have documented a number of Apple applications/services that try to "Phone Home". You have to be naive to believe that your Mac only contacts Apple when you tell it to do so. It is similar to what i have documented on Windows machines. Over the past 5 years i have noticed that this "Phone Home" phenomenon increases with every next version of the OS or update. I am new to Macs, but on Windows machines, even the NTKernal will now occasionally try to contact Microsoft servers. An OS kernal has no business doing this kind of stuff. I have even observed where arbitrary ports are being used, not the typical port 80, port 443, etcetera. I thought i had spyware on my machine. Nope. On Windows NT/2000/XP, it appears Windows even has a hidden service that periodically does a type of Win32 memory injection to hi-jack other applications and use them as proxy to "phone home", always to Microsoft servers. Sounds crazy, but i have witnessed it many times over the years. Even some open source software such as Firefox is guilty of doing this kind of thing. Firefox does the "phone home" during a webpage request. What it does is initiate webpage request, interrupt and "call home" to one of several Mozilla servers, then re-initiate page request and continue. Very sneaky.
    I have even observed where servers out on the internet such as Google will try to connect to my computer using a variety of ports other than standard internet ports. Sorry, you should not need anything but port 80 to use Google and surf the internet. Use a good application firewall and you can observe this yourself.
    I think everybody who takes privacy seriously should start looking into this. Where is the security community on this? It appears to be compromised, talks about everything else but this elephant in the room that i have witnessed the past 5 years. The prevailing propaganda is that this is all benign. I program software for a living and know you do not need to code software that makes regular connections with servers on the internet without user knowledge and explicit consent. This is unethical and possibly a common law crime.
    Anyways, it appears that this "Phone Home" phenomenon is "by design". Fortunately there are products out there that allow you to deal with it. Unfortunately it is only a quick fix, it does not resolve the underlying security issue.

  • How to test Smart Call Home in cisco router?

    Hi ,
    I have done basic configuration n cisco router for Smart call Home.Please help me out on testing SCH if its proper or requres more configuration.Below is the configuration;
    call-home
    contact-email-addr [email protected]
    mail-server 10.0.0.59 priority 1
    mail-server "" priority 2
    mail-server "" priority 3
    mail-server"" priority 3
    profile "CiscoTAC-1"
      active
    profile "Test"
      destination preferred-msg-format long-text
      destination address email ""
      destination address email ""
      subscribe-to-alert-group environment severity critical
      subscribe-to-alert-group syslog severity minor pattern ".*"
      subscribe-to-alert-group configuration periodic weekly Tuesday 17:00
      subscribe-to-alert-group inventory periodic monthly 30 20:30

    hi bryan,
    But how will i know the cisco is receiving the alerts for the devices.Is there any way for checking that.
    Profile Name: CiscoTAC-1
        Profile status: ACTIVE
        Preferred Message Format: xml
        Message Size Limit: 3145728 Bytes
        Transport Method: email
        Email address(es): [email protected]
        HTTP  address(es): https://tools.cisco.com/its/service/oddce/services/DDCEService
        Periodic configuration info message is scheduled every 13 day of the month at 10:03
        Periodic inventory info message is scheduled every 13 day of the month at 09:48
        Alert-group               Severity
        diagnostic                minor
        environment               warning
        inventory                 normal
        Syslog-Pattern            Severity
        .*                        major
    Please suggest..

  • How can i prevent deleted application download on my iTune Store?

    Hi,
    i downloaded few application and deleted in my iPhone 4 (before connect iTune store) but whenever i connect my iPhone in iTune store deleted applications start downloading every time so how can i prevent deleted application download on my iTune Store? please suggest me,
    Thanks in Advance,
    Suresh Balakrishnan.

    Welcome to the Apple community.
    It sounds as though you are sharing and iCloud account with someone else, you need to have a separate iCloud account, otherwise there is no way of stopping other sharers from accessing your photos in photo stream.

  • How do I prevent multiple applications opening on start up with Lion?

    how do I prevent multiple applications opening on start up with Lion?

    It's the Resume feature of Lion:
    Managing Mac OS X Lion's application resume feature.
    If you shutdown your computer you should get a dialog asking if you want applications to resume on the next startup. Simply uncheck the box to prevent that from occurring. Open General preferences and uncheck the option to Restore windows when quitting and re-opening apps. You can also install a third-party utility to control resume features on individual applications: RestoreMeNot or Application State Cleaner.

  • How to get back to the calling application ?

    Hi Friends ,
                I am having a BSP application which is being called from different Planning layouts in BPS .
      Its a stateful application and I am finding that when i hit standard browser Back button i am returning to my application again .
      I tried creating a button and passing the javascript method history.back()
    <htmlb:button id       = "BACK"
                                onClick  = "BACK"
                                text     = "BACK"
                                tooltip  = "Back"
                           disabled = "<%= v_save_disable %>"
                           onClientClick="history.back();"
                                width    = "15" />
    it is notworking.
    Please let me know how can i resolve the issue ? I have another idea to divert the user to the calling application using URL but dont know how to capture the URL of calling application ?
    i appreciate your contribution in advance.

    <i>It generates a BSP in which i am adding a URL link to call my application.</i>
    while adding the url add a parameter to it masterdatabsp.htm?frompage=<currentpagename>
    (runtime->PAGE_NAME will return current page name)
    and in the master data maintenance bsp page declare a page attribute and name it frompage type string and check the auto check box.
    now within your masterdatamanintenance bsp you will have the calling page name.
    Hope this is clear. if not do getback.
    Regards
    Raja
    i work in a place where weekends are on thursdays and fridays - today is a working day

Maybe you are looking for

  • Link title not displaying properly in fact sheet

    Hi experts, I have an issue with fact sheet of BP here, the link titles, e.g. "Activities", "Account Billing Data", "Account Sales Data" etc are displaying like "BP_FACTSHEET0001", "BP_FACTSHEET0002"... I checked configuration in IMG CRM->UI Framewor

  • New field will not show in the Datasource

    Hello Experts, I enhanced a datasource by adding a new field in the append structure and when I saved and activated and when into RSA5 or RSA6 then double clicked on the datasource my ZZ field does not show at the end. Anyone know why this is? Dataso

  • APEX 4.0.2 Error on Master Detail Pages - 'length' is null or not an object

    Greetings, We just upgraded to APEX 4.0.2.00.07 this past weekend. Now a JavaScript error occurs when Master Detail pages are opened in IE 8. The error is - 'length' is null or not an object. I do not have a page item named length on any of these pag

  • No Files Shown - FIXED!!

    The new 7.1 firmware update seems to have fixed this problem. Everyone should grab the new update.

  • Web-I Report taking lots of time to refresh when filters changed

    In BO XI 3.1 Web-I report is taking lot of time to refresh when any changes are made in edit query mode on the filters. When the query is runned for the first time it runs well, but if we make any changes in the filters pane, it is taking lots of tim