Is there anybody that upgraded an "older" MacBook to Mavericks

Hello
I have a MacBook (MacBook 2,1 Mid 2007) with an Intel Core 2 Duo, 2.16 GHz processor. It's executing 10.6.8 (Snow Leopard) and it runs very well. Is there anybody with a similar setup that upgraded to Mavericks ?
If so, any problems ? Did it slow down your coputer ?
Thank's for your input.

To install Mavericks, you need one of these Macs:
iMac (Mid-2007 or later)
MacBook (13-inch Aluminum, Late 2008), (13-inch, Early 2009 or later)
MacBook Pro (13-inch, Mid-2009 or later),
MacBook Pro (15-inch or 17-inch, Mid/Late 2007 or later)
MacBook Air (Late 2008 or later)
Mac mini (Early 2009 or later)
Mac Pro (Early 2008 or later)
Xserve (Early 2009)
Your Mac also needs:
OS X Mountain Lion, Lion, or Snow Leopard v10.6.8 already installed
2 GB or more of memory
8 GB or more of available space

Similar Messages

  • Problem during installation of iTunes 10.7 on Win7 x64. Is there anybody that can help me?

    Hello everyone!
    I've a problem during installation of Itunes 10.7 on Window 7 x64. I had installed v11 but i don't like it, so i've uninstalled correctly this version and i have downloaded v10.7
    The message, translated in english, is:
    UNKNOWN \ Components \ ... \ 2B0163E6D0340BE2758E9BEDD8.
    Make sure you have sufficient access to that key, or contact your support staff.
    I don't know how to do...I don't want to format my pc
    I have already tried to erase all the "apple" folders on directory C:\, but nothing to do...
    Is there anybody that can help a poor italian boy, please?
    Thanks a lot,
    Teo

    Thx Polydorus!
    this evening i'll try and i'll tell you if it works!
    Teo

  • I accidentally put a passcode lock on my iPhone and I forgot what I set for it, is there a way to take it off without accessing the phone? I have restored my phone but it doesn't work, is there anybody that could help me please?

    I accidentally put a passcode lock on my iPhone and I forgot what I set for it, is there a way to take it off without accessing the phone? I have restored my phone but it doesn't work, is there anybody that could help me please?

    You can't "accidentally" put a passcode on any iPhone...its a multi-step process. Further, restoring an iPhone will remove the passcode, as the passcode is not included in an iPhone backup.
    Are you sure you're talking about the phone passcode & not something else...like the "Restrictions" passcode?

  • Is there anybody that have jpcap ( rawsocket ) examples Thanks

    I'am an Italian programmers, sorry i speak a little English.
    I downloaded from http://www.goto.info.waseda.ac.jp/~fujii/jpcap/index.html , jpcap pakage.
    By it i can read and send packet/rawsocket.
    When i capturing packet it's all ok.
    When i want send packet i have an exception: java.io.IOException: sendto error
    probably i have not setting any field.
    Is there anybody that can help-me.
    Is there anybody that have some examples that explain how to send packet ( ICMP,TCP,UDP )
    In the pakage documentation i dont find nothing.
    In the pakage documentation there is only a tcpdump examples.
    Thanks you ulisse640
    p.s. Below there is the code that give the error.
    package progetto10;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import jpcap.*;
    public class Frame1 extends JFrame {
    JPanel contentPane;
    JButton jButton1 = new JButton();
    String device = "\\Device\\Packet_{6B0E8DE3-8F46-41E3-B3BD-673C59BB0028}";
    BorderLayout borderLayout1 = new BorderLayout();
    /**Construct the frame*/
    public Frame1() {
    enableEvents(AWTEvent.WINDOW_EVENT_MASK);
    try
    jbInit();
    catch(Exception e)
    e.printStackTrace();
    /**Component initialization*/
    private void jbInit() throws Exception {
    //setIconImage(Toolkit.getDefaultToolkit().createImage(Frame1.class.getResource("[Your Icon]")));
    contentPane = (JPanel) this.getContentPane();
    contentPane.setLayout(borderLayout1);
    this.setSize(new Dimension(400, 300));
    this.setTitle("Frame Title");
    jButton1.setText("Bottone");
    jButton1.addActionListener(new java.awt.event.ActionListener() {
    public void actionPerformed(ActionEvent e) {
    jButton1_actionPerformed(e);
    contentPane.add(jButton1, BorderLayout.CENTER);
    /**Overridden so we can exit when window is closed*/
    protected void processWindowEvent(WindowEvent e) {
    super.processWindowEvent(e);
    if (e.getID() == WindowEvent.WINDOW_CLOSING) {
    System.exit(0);
    void jButton1_actionPerformed(ActionEvent e) {
    try
    Jpcap jpcap = null;
    IPAddress.setAddressConvert(true);
    String[] devices = Jpcap.getDeviceList();
    for( int i=0; i<devices.length; i++ )
    System.out.println( devices[i] );
    jpcap = new Jpcap(device,1500,true ,200);
    UDPPacket pack = createUDP(); //TCPPacket pack = createTCP();
    System.out.println("");
    System.out.println("openRawSocket");
    jpcap.openRawSocket();
    jpcap.sendPacket( pack );
    jpcap.close();
    catch(Exception ex)
    ex.printStackTrace();
    public EthernetPacket createEthernetPacket() throws Exception {
    EthernetPacket ep = new EthernetPacket();
    ep.frametype = 2048;
    String strdst = new String("00:50:ba:49:6c:9b");
    ep.dst_mac = strdst.getBytes();
    String strsrc = new String("00:00:e2:44:b8:dd");
    ep.src_mac = strsrc.getBytes();
    return ep;
    public UDPPacket createUDP() throws Exception {
    UDPPacket up = new UDPPacket( 80,333 );
    //up.setIPv4Parameter(0,false,false,false,false,false,false,0,1,255,17,new IPAddress("100.100.100.1"),new IPAddress("100.100.100.2"));
    up.src_ip = new IPAddress("100.100.100.1");
    up.dst_ip = new IPAddress("100.100.100.2");
    up.dont_frag = true;
    up.protocol = 17;
    up.ident = 1;
    up.offset = 0;
    up.version = 4;
    up.data = "".getBytes();
    up.hop_limit = 128;
    up.length = 48;
    displayUDP( up );
    return up;
    public TCPPacket createTCP() throws Exception {
    TCPPacket tp = new TCPPacket(80,333,5215133,0,false,false,false,false,true,false,8192,0);
    //tp.setIPv4Parameter(0,false,false,false,false,false,false,0,1,255, 6,new IPAddress("100.100.100.1"),new IPAddress("100.100.100.2"));
    tp.src_ip = new IPAddress("100.100.100.1");
    tp.dst_ip = new IPAddress("100.100.100.2");
    tp.dont_frag = true;
    tp.protocol = 6;
    tp.ident = 1;
    tp.offset = 0;
    tp.version = 4;
    tp.data = "".getBytes();
    tp.hop_limit = 128;
    tp.length = 48;
    displayTCP( tp );
    return tp;
    public void displayUDP(UDPPacket packet) {
    System.out.println( "UDP Packet");
    System.out.println("-----------------");
    System.out.println("caplen:" +packet.caplen        );
    System.out.println("sec:" +packet.sec           );
    System.out.println("usec:" +packet.usec          );
    System.out.println("datalink:" +packet.datalink      );
    System.out.println("data:" +packet.data.length   );
    System.out.println("-----------------");
    System.out.println("priority:" +packet.priority      );
    System.out.println("d_flag:" +packet.d_flag        );
    System.out.println("t_flag:" +packet.t_flag        );
    System.out.println("r_flag:" +packet.r_flag        );
    System.out.println("rsv_frag:" +packet.rsv_frag      );
    System.out.println("dont_frag:"+packet.dont_frag );
    System.out.println("more_frag:"+packet.more_frag );
    System.out.println("offset:" +packet.offset        );
    System.out.println("ident:" +packet.ident         );
    System.out.println("ttl: ** not found **" );
    System.out.println("protocol:" +packet.protocol      );
    System.out.println("src_ip:" +packet.src_ip        );
    System.out.println("dst_ip:" +packet.dst_ip        );
    System.out.println("length:" +packet.length        );
    System.out.println("version:" +packet.version       );
    System.out.println("hop_limit:"+packet.hop_limit );
    System.out.println("-----------------");
    System.out.println("src_port:" +packet.src_port      );
    System.out.println("dst_port:" +packet.dst_port      );
    public void displayTCP(TCPPacket packet) {
    System.out.println( "TCP Packet");
    System.out.println("-----------------");
    System.out.println("caplen:" +packet.caplen        );
    System.out.println("sec:" +packet.sec           );
    System.out.println("usec:" +packet.usec          );
    System.out.println("datalink:" +packet.datalink      );
    System.out.println("data:" +packet.data.length   );
    System.out.println("-----------------");
    System.out.println("priority:" +packet.priority      );
    System.out.println("d_flag:" +packet.d_flag        );
    System.out.println("t_flag:" +packet.t_flag        );
    System.out.println("r_flag:" +packet.r_flag        );
    System.out.println("rsv_frag:" +packet.rsv_frag      );
    System.out.println("dont_frag:"+packet.dont_frag );
    System.out.println("more_frag:"+packet.more_frag );
    System.out.println("offset:" +packet.offset        );
    System.out.println("ident:" +packet.ident         );
    System.out.println("ttl: ** not found **" );
    System.out.println("protocol:" +packet.protocol      );
    System.out.println("src_ip:" +packet.src_ip        );
    System.out.println("dst_ip:" +packet.dst_ip        );
    System.out.println("length:" +packet.length        );
    System.out.println("version:" +packet.version       );
    System.out.println("hop_limit:"+packet.hop_limit );
    System.out.println("-----------------");
    System.out.println("src_port:" +packet.src_port      );
    System.out.println("dst_port:" +packet.dst_port      );
    System.out.println("sequence:" +packet.sequence      );
    System.out.println("ack_num:" +packet.ack_num       );
    System.out.println("urg:" +packet.urg           );
    System.out.println("ack:" +packet.ack           );
    System.out.println("psh:" +packet.psh           );
    System.out.println("rst:" +packet.rst           );
    System.out.println("syn:" +packet.syn           );
    System.out.println("fin:" +packet.fin           );
    System.out.println("window:" +packet.window        );
    System.out.println("urgent:" +packet.urgent_pointer);
    }

    I have done quite a bit of work with the jpcap software. The tcp dump functionality works fine but as you stated there are problems with the send. I hope you are fimilar with C programming because there are bugs in the native implementation that you will unfortunutely need to work out.
    I have the source code that I worked on at work or I would send it to you now. If you would like a copy of my updated version of the C code then send me an email. It's not perfect but its a start. BTW -- what operating system are you attempting to run this on? I only have patched the code for windows.
    [email protected]

  • Is there a way to upgrade my older macbook air from Lion to Mavericks?

    Is there a way to upgrade my older (First generation) macbook air from Lion to Mavericks?

    The original MacBook Air can't be upgraded past 10.7.5, and unless someone's previously downloaded Mavericks or otherwise noted, the installer for it isn't available.
    (117931)

  • Wrist Guard That Works with Older Macbook Pro?

    I see a lot of wrist guards, but they all seem to only work with the newer Mac Books. Can someone point to a reseller who sells a wrist guard that will work with the older MacBook Pros? Thanks.

    I love the stuff at Macstyles (http://www.macstyles.com)... they have Macpads that go on the palmrest area... they are not super simply to put on (gotta make sure to not get air bubbles) but I've put them on 4 machines (as well as back of the screen ones too) and its pretty easy after doing it a couple of times. Might go with a clear one on the older model, and less likely to see any mess ups or tiny air bubbles. On the newer Unibodies with Glossy screens, the solid black looks sooo awesome, matches with the screen and the keyboard.

  • Help me figure out if I am able to upgrade an older MacBook Pro for using new Adobe Creative Cloud

    Hi everyone.
    I have a macBook Pro that I (believe) I purchased in 2009...can't quite remember, but these are the stats on it:
    Model Name:
    MacBook Pro
      Model Identifier:
    MacBookPro6,2
      Processor Name:
    Intel Core i5
      Processor Speed:
    2.53 GHz
      Number Of Processors:
    1
      Total Number Of Cores:
    2
      L2 Cache (per core):
    256 KB
      L3 Cache:
    3 MB
      Memory:
    4 GB
      Processor Interconnect Speed:
    4.8 GT/s
      Boot ROM Version:
    MBP61.0057.B0C
      SMC Version (system):
    1.58f17
      Serial Number (system):
    730313GZAGV
      Hardware UUID:
    01E3BE4A-D81C-554B-AD3D-3B6AA556AFCA
      Sudden Motion Sensor:
    I use this laptop as my home computer but do graphic design on it quite frequently for side jobs but I'm still on OS 10.6.8. My adobe Creative suite is a (not so legal) CS5 that had to be configured to work on this machine.
    At work I am about to upgrade my 2010 iMac to the newest OS version and install the new Adobe Creative Cloud suite on it in June. I would like to get the full version, so I can run it on my MacBook too (you are allowed to run two computers with the software purchase) but will this even be possible with my older machine? I can't afford a new one...it doesn't even feel that old.
    Also, if it IS possible, then how would I go about uninstalling my CS5? There was quite a bit of tinkering done - not by me so I don't know exactly what - to make it work.
    So what should I do? Should I take in to a Mac specialist? Thanks in advance.

    10.7 or 10.8 and latest version of one of the browsers listed.
    System requirements
    The Creative Cloud website is designed to work optimally in the latest versions of Chrome, Safari, Firefox, and Internet Explorer. The site should degrade gracefully on older browsers; you may have trouble using certain features on those older versions. Internet Explorer 8 and earlier are not supported.
    Creative Cloud membership provides access to all creative desktop apps for download and installation on your local computer, as well as additional apps and online services. Desktop applications included with your membership are available in both Mac OS and Windows® versions.
    Desktop applications
    Refer to the following tech specs pages for a complete list of system requirements for each product.
    Adobe Acrobat® XI Pro
    Adobe After Effects® CC
    Adobe Audition® CC
    Adobe Digital Publishing Suite, Single Edition
    Adobe Dreamweaver® CC
    Adobe Edge Animate
    Adobe Edge Code preview
    Adobe Edge Inspect
    Adobe Edge Reflow preview
    Adobe Edge Web Fonts
    Adobe Extension Manager
    ExtendScript Toolkit
    Adobe Fireworks® CS6
    Adobe Flash® Builder® 4.7 Premium Edition
    Adobe Flash Professional CC
    Adobe Illustrator® CC
    Adobe InDesign® CC
    Adobe Muse CC
    Adobe Photoshop CC
    Adobe Photoshop Lightroom 4
    Adobe Prelude® CC
    Adobe Premiere® Pro CC
    Adobe Scout
    Adobe Scout
    Adobe SpeedGrade® CC
    Adobe Touch Apps
    Adobe Touch Apps are sold separately. Their system requirements can be found here:
    Adobe Ideas
    Adobe Photoshop Touch
    Services
    Adobe Gaming SDK
    Creative Cloud desktop App
    • Microsoft® Windows 7 or 8
    • Mac OS X v10.7 or v10.8
    • Internet connection required

  • Ever since the last update I can't seem to open up the list of ''Recently Closed Windows'', is there anybody that can help me with that?

    Yesterday my Firefox browser was updated without me even noticing it. I closed the only 2 windows that were open, both having a bunch of tabs, because I turned off my PC. Today I opened up Firefox, clicked ''Restore previous session'' which opened up one of these 2 windows. But when I wanted to access the list of ''Recently Closed Windows'' it didn't open. It only shows a small square as if it's there, but it doesn't show anything. I can open up ''Recently Closed Tabs'' but that doesn't help me. I now only have 1 window, but the other one had some important tabs opened in it as well, so I could really use some help.
    Thanks in advance.

    Sorry to hear about this problem and for the delay in getting back to you.
    Firefox stores your open windows and tabs in a file named sessionstore.js in your currently active settings folder. Could you check that folder and back up all of the sessionstore files as the first step.
    Open your current Firefox settings (AKA Firefox profile) folder using
    Help > Troubleshooting Information > "Show Folder" button
    If you find a file named sessionstore but not sessionstore.js, Windows may be hiding file extensions from you. To work with files as accurately as possible, I suggest unhiding them. This Microsoft support article has the steps: [http://support.microsoft.com/kb/865219].
    ''(In Windows 8.1, you should be able to access the Folder Options dialog by tapping the Alt key to show the menu bar, then using the Tools menu. Click to the View menu and scan down for the hidden files/folders option.)''
    Assuming you still have a sessionstore.js or sessionstore.bak file that would have your pre-update session, check out these threads for different ways to rescue the lost URLs from the sessionstore.js or sessionstore.bak file:
    * Using Firefox's Browser Console (formerly known as Error Console): https://support.mozilla.org/questions/969046#answer-471950
    * Using Firefox developer tool "Scratchpad": http://forums.mozillazine.org/viewtopic.php?f=38&t=622036&start=60&p=12098147#p12098147
    * Using a third party website: https://firefox-session-restore.herokuapp.com/

  • Re: Is there anybody that i can complain to about ...

    2 weeks and 12 line checks later the fault is still not resolved because I will not accept the charges.
    I believe we have a contract that I pay a premium price for and which BT is not supplying, ie a working network connection.
    Their own tracker shows the fault lies with the BT retail servers, I cannot take time off without 6-8 weeks notice just on the off chance that the engineer might turn up and might need to access my house. The local line was replaced last year and the internal wiring checked at the same time, there have been no changes since.
    Until BT can assure me that there is no possibility of the fault being in their network, where upon I will arrange my own engineer at much less cost and greater convenience, we are at an impasse, as the so called help desk say they cannot escalate the calls.

    Hi Paxman20,
    Welcome to the forum and thanks for posting. In most cases an engineer will need to get access to test and demonstrate to the customer that the issue is sorted. I'll be happy to take a look at this case for you if you wish. Drop me an email with your details. You'll get the 'contact us' link in my profile.
    Cheers
    David
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry but we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)

  • Is there anybody that i can complain to about BT?

    Despite extensive correspondence with BT Digital Care Complaints and Resolutions, BT continue to bill me for broadband despite me having no Broadband Service from them due to delays in their services! Does anyone know how i can take this complaint higher as at the moment BT are basically doing what they want despite my objections.
    I thought about complaing to Ofcom but they dont accept complaints.
    Solved!
    Go to Solution.

    Hi Chester97,
    Thanks for posting and I'm sorry to read about the problems with your service.  If you are not happy with the way resolutions are dealing with the complaint you can always ask the person you are dealing with to escalate it to the next level alternatively we can take a look at this for you if you send over your details.  I've made the contact the mods link visible and you can find that by clicking on my username.
    Thanks
    Neil 
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry but we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • I am having trouble in downloading apps as when I try, a message appears " not enough local storage is available manage this in settings". I have tried by deleting old apps but the message still appears.  What am I doing wrong and is there anybody that  c

    I am having trouble downloading apps onto my iPad2.  When I try a message appears " not enough local storage this can be managed in settings.". I ave tried by deleting unused apps, but the same message appears.  How can I resolve this ?  Help needed pleas.

    Try rebooting the iPad as well. You might be getting an inaccurate reading and rebooting might clear that up.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • My camera is not working I can not take photos, use the recorder or even I can not use the facetime's video mode. Is there anybody that can have the same problem and knows the solution?

    Please answer as soon as possible.

    Have you tried a rest or hard reset?
    Hold your power button and your home button for about 15 seconds until you see the apple logo.
    Ignore the power slider when you see it.

  • Upgrading an 13" MacBook 10.4.11

    Hello,
    I need to upgrade my trusty old MacBook as it cannot have iTunes version I need for my Iphone to sync properly, and I seem to be coming across more and more "os 10.5 or higher required" messages. Am I right in thinking Snow Leopard is the way to go? Also, I really have no idea of backing up- what is the cheapest way of doing it, I have lots of photos -would be devastated to lose them. My husband has an iMac - can I use it to back-up?  Also, are printer drivers generally upgrade-able on-line, or is this likely to mean new printer, too?
    Many thanks
    Olga

    You can connect to your husband's iMac with a Firewire cable and use Target Mode to transfer your stuff over to his Mac. http://support.apple.com/kb/HT1661
    You'll need a FireWire cable 6 pin to 6 pin if you both have FireWire 400. http://www.amazon.com/s/ref=nb_sb_ss_c_1_8?url=search-alias%3Delectronics&field- keywords=firewire+cable&sprefix=firewire%2Caps%2C164
    You can upgrade from 10.4 to 10.6 with no problems. Any program that runs under 10.4 will run under10.6. You might have to upgrade some drivers for printers, etc.... You would find the updated drivers on the printers website. And you will have to install Rosetta if you have any Power PC applications http://www.macobserver.com/tmo/article/snow_leopard_installing_rosetta/   I recently upgraded an older MacBook (model1,1) straight from 10.4 to 10.6. If you only want iPhoto or other single apps from iLife '11 you can get them from the App Store after you've upgraded to 10.6.6. iPhoto, iMovie or Garage Band for $15 each and Pages, Keynote or Numbers from iWork '09 for $20 each.
    You can order a Snow Leopard 10.6 install disk for $29 as long as you have at least1gb of RAM and 5gb of free space on your hard drive. http://store.apple.com/us/product/MC573Z/A?mco=MTY3ODQ5OTY
    A 10.5 Leopard disk will run you over $150
    Once you are at 10.6.8 you can buy Lion from the App Store if you have at least a model 2,1 MacBook. Lion will require at least 2gb of RAM but really needs 4gb to run smoothly. Also Lion doesn't run any Power PC programs. To see if you have any Power PC programs go to the Apple in the upper left corner and select About This Mac, then click on More Info. When System Profiler comes up select Applications under Software. Then look under kind to see if any of your applications are listed as Power PC. Universal and Intel will run under Lion.
    Before Mac switched to Intel processors they used Power PC processors from 1994 to 2005. Power PC 601 through 604, G3, G4 and G5. Applications written for the Power PC processors need the application called Rosetta to run on Intel processors. This was part of the Operating System in 10.4 and 10.5 but was an optional install in 10.6. With 10.7 Lion Apple dropped all support for Power PC applications.

  • HT201364 i am try to use my itunes which i have not used in a while trying to do all the upgrade. i have an older macbook but i cant download anything. so is apple saying that i will not be able to connect my iphone to macbook ever unless i get a new lapt

    i am try to use my itunes which i have not used in a while trying to do all the upgrades. i have an older macbook but i cant download anything. so is apple saying that i will not be able to connect my iphone to macbook ever unless i get a new laptop?

    Your MacBook is compatible with Mac OS X 10.6.8, which is the minimum required to install the current version of iTunes and sync devices running iOS 7. It doesn't need to be compatible with Lion, Mountain Lion, or Mavericks.
    (101906)

  • I'm trying to find instructions on replacing the memory module in an older MacBook (1,1). This is the model that has the battery on the back. Anybody know where I can get this info? (It's not listed in the Apple Support info)

    I'm trying to find instructions on replacing the memory module in an older MacBook (1,1). This is the model that has the removeable battery on the back. Anybody know where I can get this info? (It's not listed in the Apple Support info)

    Video of the installation here:
    http://eshop.macsales.com/installvideos/macbook_13_mem_hd/
    MtD

Maybe you are looking for

  • Why can't I see my iTunes Match songs in my Apple TV

    I recently purchased iTunes Match and have it all synced up however when I activated it on my Apple TV I can't see any of the songs? Anyone able to help please? I see all the songs on my ipad and iPhone but the Apple TV shows nothing?

  • Copy Header discounts to Service Items In External Services

    Hi, Can any body let me know the following, PO is created with mateial as 1st line item and service as 2nd line item. Header discount 25% maintained against condition type KR0P Two services are maintained in the PO. Now please let me know how to have

  • Time machine questions.  Please help

    So,  I'm getting rid of my laptop and switching.    I've had my time machine external HD plugged into my airport extreme doing backups.   Well,  I just plugged it into the laptop directly and hit backup   So is it really just as simple as plugging th

  • Help needed for pickup group configuration

    I have been handed the task of configuring a pickup group and the setting on a MDs phone and Secretary and need some help please. There is a Pickup group that a user is already a member of. She is now also secretary to a General Manager and needs to

  • Evitar que salga el teclado emergente en numbers

    hola, alguien me puede decir como evitar que el teclado emergente del ipad salga cuando utilizo numbers con un teclado inalambrico? es una lata tener que pulsar aceptar cada vez que introduzco un dato.