Has anyone used infin to assist in troubleshooting ?

I had a security problem when my firewall was temporarily turned off.  A tech company named "infin" assisted me with the problem and with a printer problem.  Since assisting me, the tech said that the company will no longer be in business.  Has anyone used "infin" for assistance because the tech said his company does a lot of work on Apple products. I am trying to find out more on the company.

How did you find that company?
Did you allow them remote access to your computer?
Did you give them credit card details?
If you google their name, you'll find several entries. I've never heard of them. And no, I've never used them - nor would I ever. Why deal with an unknown company when I can call Apple tech support or visit a Genius Bar in the Apple store free of charge?

Similar Messages

  • Has anyone used Migration Assistant to move services from one system running Server to a new system?

    So, I've purchased a Mac mini to replace my aging Mid 2009 mini on which I've been running Mavericks Server.  In trying to answer the question of how best to move services from the old machine to the new, I've stumbled into the fact that Migration Assistant can apparently migrate not just user data for workstations and laptops, but also service data for servers.  The problem is there isn't much detail in the docs about how good a job it does when going from one machine to another without changing OS releases.  There's a very detailed document in the KB about going from older versions of Server to new (OS X Server: Upgrade and migration from Lion Server or Snow Leopard Server) and a general doc on migrating from another Mac under Mavericks (OS X: How to migrate data from another Mac using Mavericks) but that has no details about Server.
    Has anyone used Migration Assistant to move services from one system running Server to a new system?  Are there any details that are particularly important to get right?  Are there things that require manual steps after Migration Assistant is done?
    There are other ways I could tackle the problem, of course.  I could simply swap drives between the systems, but the new system has two drives that are bigger, faster, and I intend to mirror them.  That would complicate such an approach.  I'd really like to keep the conversation constrained to a discussion of Migration Assistant as the primary method.

    yes. I migrated a server frm lion to mavericks following these notes a while back:
    OS X Server: Upgrade and migration from Mountain Lion
    i do not recall having any problems with it.

  • Has anyone used a 1.44 usb floppy drive with a MacBook Pro late 2011 model ? I have photos of my children i would like to recover.

    I have photos on 1.44 floppy disk and would like to copy them to DVD, has anyone used a 1.44 usb external drive with a MacBook Pro (late 2011)? The disk where made on a PC from 1990 -94 the images are in .img and .jpg. 

    Hello riflemanpro,
    Thank you for using Apple Support Communities.
    For more information, take a look at:
    Troubleshooting: My computer won't turn on
    http://support.apple.com/kb/ts1367
    Have a nice day,
    Mario

  • Has anyone used JAAS with WebLogic?

    Has anyone used JAAS with Weblogic? I was looking at their example, and I have a bunch of questions about it. Here goes:
    Basically the problem is this: the plug-in LoginModule model of JAAS used in WebLogic (with EJB Servers) seems to allow clients to falsely authenticate.
    Let me give you a little background on what brought me to this. You can find the WebLogic JAAS example (to which I refer below) in the pdf: http://e-docs.bea.com/wls/docs61/pdf/security.pdf . (I believe you want pages 64-74) WebLogic, I believe goes about this all wrong. They allow the client to use their own LoginModules, as well as CallBackHandlers. This is dangerous, as it allows them to get a reference (in the module) to the LoginContext's Subject and authenticate themselves (i.e. associate a Principal with the subject). As we know from JAAS, the way AccessController checks permissions is by looking at the Principal in the Subject and seeing if that Principal is granted the permission in the "policy" file (or by checking with the Policy class). What it does NOT do, is see if that Subject
    has the right to hold that Principal. Rather, it assumes the Subject is authenticated.
    So a user who is allowed to use their own Module (as WebLogic's example shows) could do something like:
    //THEIR LOGIN MODULE (SOME CODE CUT-OUT FOR BREVITY)
    public class BasicModule implements LoginModule
    private NameCallback strName;
    private PasswordCallback strPass;
    private CallbackHandler myCB;
    private Subject subj;
             //INITIALIZE THIS MODULE
               public void initialize(Subject subject, CallbackHandler callbackHandler, Map sharedState, Map options)
                      try
                           //SET SUBJECT
                             subj = subject;  //NOTE: THIS GIVES YOU REFERENCE
    TO LOGIN CONTEXT'S SUBJECT
                                                     // AND ALLOWS YOU TO PASS
    IT BACK TO THE LOGIN CONTEXT
                           //SET CALLBACKHANDLERS
                             strName = new NameCallback("Your Name: ");
                             strPass = new PasswordCallback("Password:", false);
                             Callback[] cb = { strName, strPass };
                           //HANDLE THE CALLBACKS
                             callbackHandler.handle(cb);
                      } catch (Exception e) { System.out.println(e); }
         //LOG THE USER IN
           public boolean login() throws LoginException
              //TEST TO SEE IF SUBJECT HOLDS ANYTHING YET
              System.out.println( "PRIOR TO AUTHENTICATION, SUBJECT HOLDS: " +
    subj.getPrincipals().size() + " Principals");
              //SUBJECT AUTHENTICATED - BECAUSE SUBJECT NOW HOLDS THE PRINCIPAL
               MyPrincipal m = new MyPrincipal("Admin");
               subj.getPrincipals().add(m);
               return true;
             public boolean commit() throws LoginException
                   return true;
        }(Sorry for all that code)
    I tested the above code, and it fully associates the Subject (and its principal) with the LoginContext. So my question is, where in the process (and code) can we put the LoginContext and Modules so that a client cannot
    do this? With the above example, there is no Security. (a call to: myLoginContext.getSubject().doAs(...) will work)
    I think the key here is to understand JAAS's plug-in security model to mean:
    (Below are my words)
    The point of JAAS is to allow an application to use different ways of authenticating without changing the application's code, but NOT to allow the user to authenticate however they want.
    In WebLogic's example, they unfortunately seem to have used the latter understanding, i.e. "allow the user to authenticate however they want."
    That, as I think I've shown, is not security. So how do we solve this? We need to put JAAS on the server side (with no direct JAAS client-side), and that includes the LoginModules as well as LoginContext. So for an EJB Server this means that the same internal permission
    checking code can be used regardless of whether a client connects through
    RMI/RMI-IIOP/JEREMIE (etc). It does NOT mean that the client gets to choose
    how they authenticate (except by choosing YOUR set ways).
    Before we even deal with a serialized subject, we need to see how JAAS can
    even be used on the back-end of an RMI (RMI-IIOP/JEREMIE) application.
    I think what needs to be done, is the client needs to have the stubs for our
    LoginModule, LoginContext, CallBackHandler, CallBacks. Then they can put
    their info into those, and everything is handled server-side. So they may
    not even need to send a Subject across anyways (but they may want to as
    well).
    Please let me know if anyone sees this problem too, or if I am just completely
    off track with this one. I think figuring out how to do JAAS as though
    everything were local, and then putting RMI (or whatever) on top is the
    first thing to tackle.

    Send this to:
    newsgroups.bea.com / security-group.

  • Has anyone used a Dell 1908FPb with a MacBook Pro OSX 10.6.8?  What do I need to get/do?  thanks

    Has anyone used a Dell 1908FPb with a MacBook Pro OSX 10.6.8?  What do I need to get/do?  thanks

    Hi 4judy,
    If you are looking to use an external display with your MacBook Pro, you may find the following articles helpful:
    Apple Mini DisplayPort adapters: Frequently asked questions (FAQ)
    http://support.apple.com/kb/ht3382
    OS X: How to use multiple displays with your Mac in Mountain Lion and earlier
    http://support.apple.com/kb/ht5019
    Regards,
    - Brenden

  • Has anyone used reMIDI as a plug-in for GarageBand. I downloaded a trial version of reMIDI, which enables MIDI instruments to be strummed or arpegiated, but can't get it to work in Garageband.  How do I set it up?

    Has anyone used reMIDI as a plug-in for Garageband ('08)? The program allows MIDI instruments to be strummed or arpegiated. I have a trial version, but can't get it to work in Garageband. Wonder how to set it up.
    Thanks, Doctor Mark

    Port Forwarding.....or Port Mapping....as Apple calls it is a difficult and complex configuration method for most users. Because there are so many variables involved in this type of setup, it is not possible to provide a step by step guide that will work for everyone with all devices.
    It is possible that a setup guide exists for the the WD drive and AirPort Extreme, but you will have to go looking for it on the Internet. Even if you find one, it may not be tailored to your specific situation or needs.
    Sometimes, you can do everything right....at least according to someone's article or "how to" guide, and things still will not work correctly.
    In situations like this, when you really don't know what to do, you need to enlist the aid of an IT pro, who will know what to do based on your particular products and unique circumstances. Sometimes....they won't be able to get things working either due to particular circumstances.
    But, before you do this, I would strongly recommend that you use a Static IP address for your Internet connection with your ISP. If you do not have this now, contact them to ask them if they offer this type of connection. Expect to pay more for this type of service, of course.

  • Has anyone used Aperture 2.0 with 8800GT?

    Has anyone used Aperture 2.0 with the new 8800GT? I'm about to order a new Mac Pro and wonder if Aperture will get a speed boost with the 8800GT over the HD 2600XT. I've read many times that Aperture is very GPU dependent, but then I've also read, on Barefeats.com for example, that the graphics card really doesn't do that much of a difference after all.
    For me, on my dual 2.0 G5 with 4.5GB and a X800XT, what's been most annoying with Aperture 1.5 has been the slow load times for raw images (15-20MB). But now with the quick preview mode in Aperture 2.0, that really isn't an issue any more.
    Is the 8800GT worth waiting for, or should I just get the Mac Pro now with the HD 2600XT?

    Hi Don
    I'm using Aperture 2.0 with the 8800GT. My system is the new MacPro 8 core 2.8GH with 10GB RAM. I'm shooting Nikon D3 lossless compressed RAW files. Approximately 12-14MB each.
    I do not need to use the quick preview mode. Images open instantaneously,either fit to screen or 100%. All the image adjustments are shown with no time lag. My D2X uncompressed raw files,19MB, display in approximately one second with quick preview turned off.
    I'm no MAC hardware expert so I don't know how much the speed is the result of the 8800GT but I'm just one happy camper.
    Hope this helps
    John Blake

  • Has anyone used the QuickUSB module (Bitswise Systems) to interface to a USB Camera via IMAQ for USB?

    Has anyone used the QuickUSB module made by Bitwise Systems with LabVIEW for image acquisition.   I have a USB camera and I'm trying to use the IMAQ for USB controls to no avail.   Any input is appreciated. 

    Are you using the NI-IMAQ for USB functions or are you calling the QuickUSB libraries from LabVIEW?  Unless the USB camera is DirectShow compliant, then it will not work with the NI-IMAQ for USB driver.  You can use the Code Interface Node in LabVIEW to call external dll's, and it looks like from QuickUSB's website that is the best way to go.  Hope this helps.
    Jason N 

  • Has anyone used Thunderbolt or USB 3.0?

    In the not too distant future I am intending to upgrade from my 2008 24"  2.8GHz iMac.
    The new models appear to have gone down the Thunderbolt route which appears to be not very popular with HDs being few and far between and very expensive.
    USB 3.0 whilst theoretically only half the speed seems to be taking off and reasonably cheap, and appears to be more universally adopted.
    Could Apple have backed the wrong horse on this occasion?
    Sorry, I was just thinking aloud, definitely not speculating.
    So has anyone used Thunderbolt and got anything good or bad to say about it?

    Not personally:
    The german computer-magazine c't tested the Promise Pegasus R6 Thunderbolt and found it speedwise way ahead of USB 3.0 and eSATA.
    As a RAID-Level 0 with 6 x Hitachi HDS721010CLA332 (7.200 U/min, 1TB each) and MBP 13" 2011 OSX 10.6.8:
    Write - 693 MByte/s
    Read - 721 MByte/s
    Read AND Write - 323 MByte/s
    Time Machine -capable and OS X Bootable.
    0.8 Sone when active
    61.6 W active - 48 W when not used.
    Sadly the article is not avaibale other than Printed.
    Stefan

  • Has anyone used Fat Cat Software to merge multiple iPhoto Libraries?

    Has anyone used Fat Cat Software to merge multiple iPhoto Libraries?

    I used it several years ago to merge libraries without problem. I cannot speak to the current version. It goes without saying that you need to have a very good backup before you use that sort of software (if you do).
    Barry

  • I just saw a message that iWeb has been discontinued by Apple.  It suggested EverWeb.  Has anyone used this or do you have aother recommendation?

    I just saw a message that iWeb has been discontinued by Apple.  It suggested changing to EverWeb.  Has anyone used this or do you have another recommendation?

    Hi
    I have now used Everweb to transfer a website from iWeb & am now working on transferring a second website.
    I cannot recommend Everweb highly enough. I am an amateur, so iWeb was the easy option for me. Everweb is just as easy to use and very similar to iWeb. New features are being added every few days.
    I am extremely impressed by the excellent and prompt service from both the forum and support. All my questions have been answered (& there have been many of them!)
    Everweb is complimented by an excellent site Everweb codebox which has developed more widgets and codes to add to Everweb. Roddy from Everweb codebox has been invaluable by answering questions on the forum & generally complimenting the Everweb team.
    I have purchased the Everweb program & Hosting. This gives my 1 click updating and works seamlessly. The price is competitive and the support exemplary.
    All in all, I am delighted with Everweb, excellent program & excellent support!! I would not hesitate in recommending it to anyone.
    In answer to your question...buy it!!!!
    Lynn

  • Has anyone used "Microsoft.BizTalk.B2B.PartnerManagement" API ?

    Hello, forum; trying to make sense of that undocumented API library to create an agreement using BizTalk 2010. So far, I can create a Partner, Business Profiles, Business Identities and Partnerships, but how to create an agreement (onewayagreements and all
    that) still eludes me. I have checked one reference, it was written by Mick Breeze (http://blogs.breeze.net/mickb/2012/05/22/BizTalk2010CreatingTPMPartnersThroughCode.aspx),
    and also getting inspired by the newest published in here (http://msdn.microsoft.com/en-us/library/windowsazure/dn232396.aspx) which is not the same but at least it's something.
    I have navigated through the classes but I can't manage to do all the tasks that it is suppose to achieve.
    Has anyone used this before that may be able to help ? Is there any SDK sample of some sort ?
    Thanks in advance.

    Partner automation. The user wants to use an asp.net form instead of using biztalk admin console, in order to create and update a large party database, the total count rounding between 300 to 500 partners, so, we have already a webform with all business
    related information and we've add some port related information that will ultimately end up as the party information. With that info, this library should be able to accomplish everything we normally do from the console.
    We are not migrating from a previous version, so the party migration tools is a no-go. We explored the idea of creating a binding-like file that would be loaded from BtsTask, but ultimately, we end up with the idea of using this obscure library to perform
    all those so called duties of handling party related information on biztalk server.
    Thanks in advance.

  • Has anyone used the appscript modual for python rather than streight AS?

    I just discovered appscript and so far I like what I see. has anyone used it?
    Does it just wrap around actual applescript commands which it then sends to osascript with a system call or does it use the message system directly? Is there anything that it has not yet implemented that might cause problems?
    To me it seems to be a perfect solution to the clutter that AS seems to be... at least from someone coming from more traditional languages.

    In startMovie, you need to register the xtra
    on startMovie
    axRegister(serial code here)
    end
    Then, on your Record Button, something like this:
    on mouseUp me
    --start recording session - using 400k as maximum here
    errOpen=axOpenRecorder(400000)
    --see if there is an error
    put errOpen
    --save the new audio as a file
    errRecord=axRecordSoundToFile("soundName","c:\path\to\soundfile.wav")
    --see if there is an error
    put errRecord
    end
    then make sure you close the recorder in stopMovie
    on stopMovie
    axCloseRecorder()
    end
    You can also make a Stop Recording button that has code like
    this:
    on mouseUp me
    errStop=axStopRecording()
    put errStop
    end

  • Re: Interfaces in Forte - has anyone used them?

    We are making use of interfaces extensively and have never had the
    slightest problem. Interfaces do not cause any overhead, since they are
    mainly a means to support type checking by the compiler. At run-time the
    interface does not appear any more.
    Using Forte 3.0.F.2
    General wrote:
    >
    We are embarking on the analysis phase of a large pay/personnel project. =
    We have been advised to use interfaces wherever possible, because they =
    promote flexibility and reusability. I am fairly well convinced of the =
    benefits of using interfaces - they appear to have a lot of advantages, =
    and no drawbacks. However, I do wonder whether Forte's implementation of =
    interfaces is stable and usable (..it was only introduced in version 3). =
    If not, we may be better advised to use standard techniques.
    If you have used Forte interfaces I would be interested to hear how you =
    got on.
    regards,
    Tim Kimber--
    Dr. Thomas Kunst mailto:[email protected]
    sd&m GmbH & Co. KG http://www.sdm.de
    software design & management
    Thomas-Dehler-Str. 27, 81737 Muenchen, Germany
    Tel +49 89 63812-221 Fax -444
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Eric,
    You are correct, "manipulate anAIFace object" is not really the correct
    way of thinking about what is happening. We are really manipulating an
    instance of an object through an interface.
    In regards to your other statement: "if Project C needs visibility to B,
    it must have B as a supplier Plan." Forte does not force this to happen
    when you are using interfaces, which is what causes the problem. Let me
    expand on my initial example and add enough detail so that you can create
    the problem, which surfaces as a deserialization error:
    Project A (No Supplier Plans)
    Defines Interfaces: UnitIFace with method GetValue() which returns an
    integer
    Project B (Contains A as a Supplier Plan)
    Defines Class: Unit with attribute _Value as an integer and method  
    GetValue() which returns _Value.  Implements interface UnitIFace.
    Project C (Contains A as a Supplier Plan)
    Defines Class: Square with method Calculate which accepts an
    UnitIFace as an input parameter and returns an integer. This class needs
    to be setup as a distributed object so that I service object can be
    defined using this class.
    Defines Service Object: SqaureSO using the Square class.
    Project D (Contains B and C as Supplier Plans)
    Defines a class or uses a window that creates an instance of Class B
    and passes it to the SquareSO service object that sqaures the value and
    returns an integer.
    Once this is setup, use the running man to run everything locally. This
    will run fine because the dependencies for the local partition end up
    including Projects A, B, C and D. Next, run distributed and move the SO
    to a remote partition. Now when you execute you will receive a
    deserialization error. This happens because the dependencies for the
    remote partition only included project A and C. The partition did not
    have the necessary information to deserialize the underlying instance of
    Class Unit that is referenced through the inteface UnitIFace.
    The problem can be resolved by either adding Project B as a supplier plan
    to Project C or ensuring that the interface and class are declared in the
    same project as I suggested in my previous message. In either case, this
    must be resolved by the programmer since Forte is not yet smart enough to
    correctly resolve the project dependencies, even though all of the
    information needed to establish the correct dependency hierarchy is
    available.
    Bradley K Wells
    [email protected]
    Strong Capital Management, Inc
    http://www.strong-funds.com/
    From: Eric Pereira
    Sent: Friday, July 31, 1998 5:57 PM
    To: [email protected]
    Cc: [email protected]
    Subject: RE: Interfaces in Forte - has anyone used them?
    Bradley,
    Thanks for that descriptive note on interfaces.
    I do have a observation : in that example you gave us, if Project C
    needs visibility to B, it must have B as a supplier Plan. Therefore, I
    don't quite understand how partioning classes in C would end up with a
    run-time errror in distributed mode, given that B supplies C (something
    you've perhaps missed out in your example ?).
    Also, is it really possible to "manipulate AIFace objects" ? Interfaces
    are'nt really objects, they just help implement a compile-time type
    check.
    Thanks.
    Eric Pereira
    Forte Consultant
    ----<snip>------------------
    Example:
    Project A - Contains AIFace
    Project B - Contains Class B which implements AIFace, depends on Project
    A
    Project C - Contains Classes manipulating AIFace objects, depends on
    Project A
    This can run fine locally since the local partition has knowledge of all
    the classes in A, B, and C. Now as soon as you throw a service object
    on
    classes on Project C and push them into a remote partition, your
    application starts failing because that partition does not contain the
    information form project B since there is no dependency on that project.
    The partition needs the information from project B though since it
    contains the definitions for the actual implementation objects, however
    there was no way for Forte to determine that need when it generated the
    partition.
    This problem is initially eliminated by keeping the interfaces in the
    same project as the underlying business objects. But once you start to
    have interfaces implemented by multiple classes from multiple projects,
    then this won't cover all the bases either. In any case, it is an issue
    that you will need to consider at some level when using interfaces.
    Good luck!
    Bradley K Wells
    [email protected]
    Strong Capital Management, Inc
    http://www.strong-funds.com/
    From: "Ngai, Stuart" <[email protected]>
    Date: Thu, 30 Jul 1998 11:10:50 -0400
    Subject: RE: Interfaces in Forte - has anyone used them?
    With version 3G, you can not create an array of interfaces. I believe
    Forte
    will have that feature in version 4 (which is scheduled to be in
    production
    at the end of next year).
    -----Original Message-----
    From: Thomas Kunst [SMTP:[email protected]]
    Sent: Thursday, July 30, 1998 8:52 AM
    To: [email protected]
    Cc: General
    Subject: Re: Interfaces in Forte - has anyone used them?
    We are making use of interfaces extensively and have never had the
    slightest problem. Interfaces do not cause any overhead, since theyare
    mainly a means to support type checking by the compiler. At run-timethe
    interface does not appear any more.
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    Get Your Private, Free Email at http://www.hotmail.com
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • Has anyone used Canon 5D Mark II with PrPro CS4 yet?

    Hi,
    Has anyone used the Canon 5D with CS4?
    Do the files open ok?
    Just wondering as I am going to hire the camera for a day as the footage is amazing!
    Best wishes,
    scott mackenzie

    There are plenty of great threads on this material. As John points out, most will pop right up. Be sure to read replies by Jeff Bellune and also PaulieDC. This ARTICLE has some links to useful info on this camera.
    Good luck,
    Hunt

Maybe you are looking for

  • Problem showing Trademark symbol using ascii code in Flex 3

    I am facing problem in displaying trademark symbol (™) using ascii codes(it is showing square symbol). I have ascii code stored in the database for trademark symbol(ascii code "&#153;" ). So I can't use Hexa code instead of ascii code. But using asci

  • ICal managed client with SSL

    Hi folks, I already crawled the forum, inet and other sources but I still got no solution nor feasible workaround for a managed client to use iCal with SSL. My mac mini is on SL server 10.6.7 and I configure iCal in server admin to use SSL on port 84

  • Window Title Problem

    Guyz, I configured webutil 6 month before and its working fine till date the only problem with window title. i didnt change anything in formweb.cfg file i use the below code for MDI_FORMS_WINDOW. SET_WINDOW_PROPERTY(FORMS_MDI_WINDOW,WINDOW_STATE,MAXI

  • Identifying install disc 2's from each other?

    I have a 2007 mac mini with a set of restore discs... I also think I'm holding on to my parents imac restore discs or they are just an extra set Apple sent me a while back when I was having trouble with my 2007 imac. so one of the disc 1s - says "For

  • Reports on 0SD_C01

    hi please let me know the reports that we can create on cube 0sd_c01. thanx in advance peter