How can users add their devices to Profile Manager without a user account?

We would like to allow company devices to be tracked, inventoried and managed in Profile Manager without creating a user account for each person so they can log into /MyDevices to download the mobile profiles. We aren't staffed to have someone manage user accounts as quickly as iPads are being purchased.
If we can't do some kind of guest access, can one user, maybe called Enroll, have literally one thousand devices attached to them?
The other alternative is to have the profiles on a small webpage with a password to download.

the easiest way is to use apple configurator
using apple configurator
enable enrollment in PM
un tick restrict to users in device library
apple configurator should pick up your server certs
and the PM auto enrollment profile
setup a enrolment wifi lan
configure your IOS devices with apple configurator adding the
server cert and your enrolment wifi lan
you'll still have to handle each device tapping yes to install each profile
but you should end up with the ipads in PM with no users
from there you can set which wifi you wish them to connect to
eg  staff wifi, email setings, VPN etc.
open the correct ports on firewalls to allow PM to work internaly and externaily
and pr any port forwading as nessessary and you'll be able to wipe lock change settings outside on your network, providing the device is online.

Similar Messages

  • How can I add the status and profile picture features on an account that was created before iOS 5?

    How can I add the status and profile picture features on an account that was created before iOS 5?

    Have you looked at the previous discussions listed on the right side of this page under the heading "More Like This"?

  • How can i add a device on find my iPhone?

    how can i add a device on find my iPhone?

    You activate iCloud and Find my iPhone on the device you want to track using your Apple ID.

  • HT201269 Hi. I have shared an Apple ID with my children for some time.  As they are getting older they do not wnat me seeing all their messages, photos etc so want their own accounts.  How can they access their purchased music and apps on the new account

    Hi. I have shared an Apple ID with my children for some time.  As they are getting older they do not wnat me seeing all their messages, photos etc so want their own accounts.  How can they access their purchased music and apps on the new account please?

    Yes.
    On their iOS devices, under Settings>iTunes & App Store, they should use your Apple ID. When they log into iCloud, iMessage and Facetime, they should use their personal Apple IDs.

  • How can I add an attachment to an email without showing it in the body of the email?

    How can I add an attachment to an email without showing it in the body of the email?

    1. You must open attachment first
    2. Tap the square with arrow on top right and select mail
    3. Compose your email

  • How can I add the Blackberry my friend gave me to my account that already has my prepaid phone on it?

    How can I add the Blackberry my friend gave me to my account that already has my prepaid phone on it?

    A few questions to clarify your specific situation will help us to better help you...
    Do you want to swap phones and use the BlackBerry instead of your current phone?  I don't think you can add a line to a pre-paid account to use both - it would have to be two separate accounts.
    What model BB is it?  And is it Verizon branded?  It may or may not be usable on a pre-paid account.
    Finally, what is your current phone and account set up?  You may need to get a different pre-paid plan to use the BB, if it is usable on Verizon.

  • How can i add movies to my ipod  touch from my itunes account?

    how can i add movies to my ipod  touch from my itunes account?

    SYnce them to the iPod from your iTunes library.
    Go to iTunes>Help>iTunes Help>Sync your iPod.... and follow the instructions.

  • My computer where my itunes library is stored is no longer accessible.  how can i add songs to my ipod nano without losing the songs already on it.

    The computer where i have my itunes library is no longer accessible.  How can I add new songs to my  Ipod nano without losing the song already on it?

    You will need that library copied from the old computer. If not, then you can take a look at this in getting 3rd party software to recover your library from the iPod. Syncing to a "New" Computer or replacing a "crashed" Hard Drive

  • How can I share the same Firefox profiles / settings among multiple users on Windows XP?

    I am installing Firefox on Windows XP and have imported all settings, add-ons, etc, from a previous installation.
    I did the installation under the Admin account, but I would like to have the same settings and everything else available to some of the other users on the machine (but not all). How can I do this?
    Thanks.
    -Danny.

    I understand what is in and where the profiles are, but my issue is that I want Firefox to let me use the same profile whether, for example, I am logged onto the XP system as "Admin" or "User1" I do not want to share the same profile for all users of the machine, just specific users, and I do not want to have to duplicate all of the information that is in the profile in each of the specific user's Application Data settings folders under XP (C:\Documents and Settings\USER-NAME\Application Data\Mozilla\Firefox\Profiles\[profile-name]) for the user's in question.
    Am I making sense here?
    Thanks,
    -Danny

  • How can I add the extra fields to a datasource usign "User Exist"?

    Hallo guys,
    I have a quesiton on an extractor.
    I want to extend fields for an extractor, and the additional fields come from a third table (for the extractor, there is a view which 2 Tabels inner join.) The third table should have LEFT OUTER JOIN relation to the other 2 tables. So I have to use "User Exist" to add the fields from the third table to my data source.
    How  can I do it via user exist?
    Thanks for any hint in advance.
    Regards,
    Liying

    Hi LiYing,
    You can do this using a USER EXIT.
    if you edit the ABAP program ZXRSAU01, you can add ABAP coding:
    here an example for 1_CO_PA....:
    <i>   CASE i_datasource.
           WHEN '1_CO_PA_.......
    Data assignments
          LOOP AT c_t_data INTO wa_s_copa.
            IF ( NOT wa_s_copa-vrgar = 'F' ) OR ( wa_s_copa-curtype = 'B0' ).
            wa_s_copa-zzratio = 1.
            wa_s_copa-zztr_rate = 1.
            wa_s_copa-zzcurkey_tc = wa_s_copa-rec_waers.
    Company Code Currency Invoice *
          ELSEIF wa_s_copa-curtype = '10'.
    assume one exchange rate per invoice
            SELECT SINGLE * FROM ce19991 INTO wa_ce1
               WHERE belnr = wa_s_copa-belnr
               AND   paledger = '02'
               AND   vrgar    = wa_s_copa-vrgar
               AND   versi    = space
               AND   perio    = wa_s_copa-perio.
            MOVE wa_ce1-kursf TO lx_kursf.
            MOVE wa_ce1-frwae TO wa_s_copa-zzcurkey_tc.
            IF NOT wa_ce1-frwae EQ 'EUR'.
    read rate ( table is buffered ).
              CLEAR: wa_tfact, wa_ffact.
              lx-datlo = 99999999 - sy-datlo.
              SELECT single tfact ffact FROM tcurf into
              (wa_tfact, wa_ffact)
              WHERE kurst EQ 'M'
              AND fcurr EQ wa_ce1-frwae
              AND tcurr EQ 'EUR'
              AND gdatu LE lx-datlo.
              IF sy-subrc NE 0.
                SELECT single tfact ffact FROM tcurf into
                (wa_tfact, wa_ffact)
                WHERE kurst EQ 'EURX'
                AND fcurr EQ wa_ce1-frwae
                AND tcurr EQ 'EUR'
                AND gdatu LE lx-datlo.
              ENDIF.
              IF wa_tfact = 1.
                wa_s_copa-zzratio = wa_ffact.
              ELSE.
                IF wa_tfact NE 0.
                  wa_s_copa-zzratio = 1 / wa_tfact.
                ENDIF.
              ENDIF.
            ELSE.
    eur : eur => always 1
              wa_s_copa-zzratio = 1.
            ENDIF.
            IF lx_kursf < 0.
              wa_s_copa-zztr_rate = lx_kursf * -1 .
            ELSE.
              CHECK lx_kursf > 0.
              wa_s_copa-zztr_rate = 1 / lx_kursf.
            ENDIF.
          ENDIF.
      ENDLOOP.
    ENDCASE.
    </i>

  • How can I add songs to itunes music folder without them being duplicated within the folder (not on my hard drive)?

    I have music files all over the place and want to put them all in itunes with no duplicates and get rid of all the rest. how can I do that? Some of my playlists are missing songs. I would like to move the playlist back to itunes from my ipod without having to put the songs in my media folder yet again! I have wasted so much time fooling with this. Really what I am trying to get at through all of this is to run the songs on the ipod through ivolume so they play equally.
    Can anyone make sense of this for me?

    It sounds like you have a few different problems.
    To find all your music, try using a spotlight search. Type "kind:music" in the spotlight search (the magnifying glass in the far upper-right corner ) then choose "show all in finder". You'll end up with a window that shows all your music files, regardless of where they are on your hard drive. But don't move any files, because that may confuse iTunes (it won't be able to find files that you move, because - d'oh! - you moved them and now they're not where iTunes left them. That's usually how people end up in the kind of situation that you're in.)
    If you want to let iTunes organize your music for you, make sure those options are turned on in the iTunes preferences (in the "advanced" section), then go to the "File" menu, choose "Library" and then choose "Organize library". That will put all your music in the iTunes Library folder (but leave copies of the originals wherever they were, all over your hard drive).
    To find duplicates in your iTunes Library, choose "display duplicates" (or hold down the option key and it changes to "display exact duplicates" which might help in some cases). You'll still have to manually go through them to delete one of each duplicate.
    Now you can start combining those three techniques - if you consolidate your music and let iTunes copy everything into the music folder, you'll know that iTunes safely has a copy of all your music in the iTunes Library folder. So you can do the spotlight search, and delete any duplicate files that are not in your iTunes library folder. Anything that's left over (that is, it's not a duplicate and it's not in the itunes music folder), you'll need to add to iTunes (try using the "automatically add to itunes" folder - spotlight search to find it -  anything you drop in there will get added to iTunes without leaving a duplicate file). Then you can use the itunes "duplicates" feature to find the duplicates in iTunes and fix those.

  • How can I add an iPad to Apple Configurator without losing the user's settings, folders, etc?

    When attempting to add an iPad that has already been in use (for some time) by a particular user into Apple Configurator, I end up having to either wipe the iPad entirely as if it is a new iPad, or restore the user's settings and configuration from iCloud during mini-setup. It seems to be one choice or the other.
    Is there a way to add the "old" iPad into Apple Configurator for management purposes yet still be able to restore the user's settings from iCloud? That is - items like: folders, pictures, email settings, app data?

    nsdjoey wrote:
    theAntioch wrote:
    This isnt true. Connecting an unsupervised device to configurator and supervising it will wipe the device, there is no way around that. You can attempt an iCloud restore from here, but anything not backed up prior to supervising the device will be erased when supervising it. I have never tried to restore data from an unsupervised iPad so I have no clue if everything will come back.
    Let me clarify... You can successfully restore an iCloud backup of an unsupervised iPad to a new (i.e. different) iPad and have it Supervised with data intact. The process below will allow Configurator to Supervise a device without wiping it when an iCloud backup from a different unsupervised iPad is restored to it.
    Try it… Get 2 new unsupervised iPads… we'll call them iPad "A" and iPad "B." Take iPad "A" and install a few apps, take a few photos, change the background, create a new document in Pages, etc. Run an iCloud backup of iPad "A" using your Apple ID. This is our unsupervised backup of iPad "A."
    Now take new unsupervised iPad "B" and start running through the setup assistant. When you get to the restore screen, choose to restore from iCloud backup. Log in with your Apple ID. Select the backup for iPad "A." The backup will restore and then the iPad will restart. Once it restarts, you get to a "Hello" screen on the iPad. At this point, plug the iPad into your Configurator computer. On the Prepare screen, turn Supervision ON and select "Don't restore backup." Click Prepare.
    Configurator will not wipe the iPad. It will run through the supervision process but not wipe it. Once complete, you'll see that iPad "B" is now exactly the same as iPad "A", but if you go to Settings -> General -> Profiles on iPad "B" you will see a Supervision profile installed.
    The key here is to use a different iPad from the originally backed up iPad. You can't restore the backup of iPad "A" to iPad "A" again and supervise it without wiping it. But you can take the backup of unsupervised iPad "A" and restore it to iPad "B" and retain apps, data, and settings of iPad "A" but with the Supervision profile.
    Hope this clarifies things!
    ~Joe
    I see where your going with that. I dont have any way to reproduce this scenario in my environment, but I will take your word for it that this works. I have only ever plugged in an unsupervised device to configurator and gone through the setup, which always wipes the device. If your saying theres a way around that you should give that a shot OP.

  • How can I add a device to my library? My e-reader is registered but not visible.

    Hello,
    I use a Tolino Shine and can download E-Books via WLAN directly to it. I can also download the books to my netbook. However, when I plug the Tolino into my netbook it is not visible in the Adobe library and I cannot move books from the library to the Tolino.
    I tried to reset the Tolino to the manufacturer settings. This did not improve the situation.
    Any suggestions?
    Thanks a lot!

    http://www.apple.com/icloud/find-my-iphone.html
    any chance of it working on non-apple phones?
    No, it requires the operating system iOS, only available on Apple Devices.

  • How can i add music to my iPod 4 without removing the music that's already there ?

    I want more music on my iPod 4 , and my dad has a lot of music that I like . We have one of those computers where there can be more than one user , so each of my family members have their own user account and they have different itunes and whatnot . Well I'm trying to add some of my dad's music onto my iPod but it's saying that if I do that , then I'll be having to remove my current music and sync my dad's . I don't want that , so is there a way I can keep my music and add his ?

    SHARING iTunes MUSIC
    http://macmost.com/five-ways-to-share-music-in-itunes.html

  • HT5361 How can I add a second email address to my existing email account.  I can't find out how to accomplish that.

    I have an exisitng email address but I need to create a more professional sounding email address for work.  I can't figure out how to do this.  I'm using OS X 10.8.4
    Thanks!

    If you mean you want to add a second email address to the Mac Mail app:
    Open Mail > Preferences > Accounts > Click the plus sign and enter the information
    If you mean you want to add an alias to your iCloud mail account:
    Go to https://www.icloud.com > sign in > Mail > Click the Gear on top right > Preferences > Accounts > Add an Alias (on bottom left)

Maybe you are looking for

  • AirPort Express- The worst product I have ever purchased

    I moved from Microsoft to Apple because I thought it was the right thing to do...when I say that I mean I am not clever and just realized Apple is sexier kit and is more powerful...however takes some getting used to. I installed my new IMAC 24 inch w

  • Dell Widescreen Displays and GeForce FX 5200

    Hi everyone, I have a PowerMac G5 1.6 GHz with the original GeForce 5200 that came in it. I'm shopping around for a replacement monitor and am considering Dell's 20.1" wide model (2005FPW). Does anybody have any experience with this combination? I se

  • Fell beside the garden with the shopping cart trick. Ah well.

    I had NO intention whatsoever of opening another account, as I really do have what I need for now. But all those pretty little things at VS got me and then they told me I was an Angel and offered me a preapproval when I went to pay, and from there I

  • Getting a new phone

    I am getting a new phone today but first I want to put all of the stuff on my phone now, on to my computer...When I get my new phone I want to put that stuff back on my new phone...how do I do that?

  • Recommended solution Web Printing?

    Hi, we plan on using Web Reporting - but we need to supply a decent solution for printing. Since we have reports with fixed layouts as well as reports for analysis purposes (no fixed layout) we want a solution for both cases. Can you recommend the SA