Denying removal of Trust Profile and RemoteManagement Profile

We are a healthcare environment that is slowly rolling out iPads for certain areas to use internally. I have been working on setting up the Profile Manager via a Mac Mini with Lion OS. I can lock down the profiles that are pushed to the devices, via Profile settings on the devices, but I have not found a way to prevent the removal of the Trust Profile, or the Remote Management profile.
My concern is that some of our...'savvy' physicians may stumble around in the General settings, see the Profiles section, and go manually uninstall either/both of the Trust Profile or Remote Management Profile. The other Profiles, they can not remove.
Is the inability to lock those 2 profiles down, purposeful?

You certainly can (and should) password protect your settings profile(s) with a unique removal passcode. Your students would not be able to remove the settings profile since they wouldn't know the removal passcode that you defined.  The issue being discussed in this thread involves the Trust Profile and Remote Management profiles which currently do not have the same level of protection as the settings profile. Removing the Remote Management profile renders the device or Lion computer unmanageable by Profile Manager. However, the settings profile(s) would remain safe from end-user removal if you protected them with a removal passcode. I'm not sure what you lose if your users remove the Trust Profile. My understanding is that it's only used during the enrollment process.

Similar Messages

  • How to use the selection profile and status profile for production order?

    Hi expert,
       I want to know how to use the selection profile and status profile for production order. what's the usage for these two selection profile and status profile ?
      Please help me.
      thanks in advance.
      george.shi

    Hi George,
    There are are two types of statuses.One is system status and second one is user status.These statuses will tell us current situation of an order.
    We can't change system statuses.But we can create our own statuses through status profile.With this profile we can control user statuses.
    In this status profile,
    1.We define the sequence in which user statuses can be activated,
    2.We define initial statuses
    3. Allow or prohibit certain business transactions.
    Selection profiles are used to select the objects (say production orders) with different status combinations.We assign status profiles to selection profiles in BS42 T-Code.
    Regards,
    Raja.
    Edited by: Rajarao on Oct 30, 2008 6:21 AM
    Edited by: Rajarao on Oct 30, 2008 6:22 AM

  • Jdev11g CPU profile and Memory Profile doesn't work for Mac

    I'm running Jdev11g on Mac OSX 10.5.5,
    CPU Profile and Memory Profile doesn't work. I got following message:
    Error occurred during initialization of VM
    Could not find agent library in absolute path: /Shared/jdevjavabase11110/jdeveloper/jdev/lib/profiler16.so
    The file actually is there. I don't understand why they looking for .so file, it supposed to be mapped as .jnilib on Mac.
    This is broken on TP4 as well.

    I'm still seeing this issue. Here is what I get:
    /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/bin/java -client "-agentpath:/Users/kamleshnanda/Downloads/jdeveloper/jdev/lib/profiler16.so=port=60950,jarpath=/Users/kamleshnanda/Downloads/jdeveloper/jdev/lib/profiler-agent.jar,enable=t,depth=1000,startup=connect,time" -classpath /Users/kamleshnanda/jdeveloper/mywork/MyJavaApplication/Project1/classes project1.Class1 Hello
    Error occurred during initialization of VM
    Could not find agent library in absolute path: /Users/kamleshnanda/Downloads/jdeveloper/jdev/lib/profiler16.so
    Process exited with exit code 1.
    I'm using the following build:
    About
    Oracle JDeveloper 11g Release 1 11.1.1.2.0
    Java Edition Version 11.1.1.2.0
    Build JDEVADF_11.1.1.2.0_GENERIC_091029.2229.5536
    Copyright © 1997, 2009 Oracle and/or its affiliates. All rights reserved.
    IDE Version: 11.1.1.2.36.55.36
    Product ID: oracle.jdeveloper
    Product Version: 11.1.1.2.36.55.36
    Version
    Component     Version
    =========     =======
    CVS Version (External)     (CVS) 1.12.13 (client/server)
    Java(TM) Platform     1.6.0_17
    Oracle IDE     11.1.1.2.36.55.36
    PMD     JDeveloper Extension 4.2.5.3.0
    Team Productivity Center     11.1.1.2.36.55.36
    Versioning Support     11.1.1.2.36.55.36
    Here are the JVM properties:
    java.runtime.name     Java(TM) SE Runtime Environment
    java.runtime.version     1.6.0_17-b04-248-10M3025
    java.specification.name     Java Platform API Specification
    java.specification.vendor     Sun Microsystems Inc.
    java.specification.version     1.6
    java.vendor     Apple Inc.
    java.vendor.url     http://www.apple.com/
    java.vendor.url.bug     http://bugreport.apple.com/
    java.version     1.6.0_17
    java.vm.info     mixed mode
    java.vm.name     Java HotSpot(TM) 64-Bit Server VM
    java.vm.specification.name     Java Virtual Machine Specification
    java.vm.specification.vendor     Sun Microsystems Inc.
    java.vm.specification.version     1.0
    java.vm.vendor     Apple Inc.
    java.vm.version     14.3-b01-101
    Here is the OS information:
    os.arch     x86_64
    os.name     Mac OS X
    os.version     10.6.2

  • TP4[BUG]: Memory profile and CPU profile doesn't work for MAC

    I'm using Mac OSX 10.5.4.
    When I try to use Memory profile and CPU profile, I got following error:
    Error occurred during initialization of VM
    Could not find agent library in absolute path: /Shared/jdevstudiobase1111/jdev/lib/profiler15.so
    But the file actually exists.

    My MAC version is OSX 10.5.4.
    I don't have a stacktrace. It just fails silently.
    You can easily reproduce this bug by reformat a readonly file.
    Here is the code I reverse engineered from oracle.jdeveloper.refactoring.util.Util.java:
    public static boolean setReadOnly(java.net.URL url, boolean readOnly)
    boolean ret = false;
    java.lang.String cmdarray[] = null;
    java.lang.String platformPathName = oracle.ide.net.URLFileSystem.getPlatformPathName(url);
    java.lang.String osName = java.lang.System.getProperty("os.name", "");
    if(osName.startsWith("Windows"))
    cmdarray = (new java.lang.String[] {
    "ATTRIB", readOnly ? "+R" : "-R", (new StringBuilder()).append('"').append(platformPathName).append('"').toString()
    else
    if(platformPathName.equalsIgnoreCase("Linux"))
    cmdarray = (new java.lang.String[] {
    "chmod", readOnly ? "u-w" : "u+w", (new StringBuilder()).append('"').append(platformPathName).append('"').toString()
    if(cmdarray != null)
    java.lang.Runtime runtime = java.lang.Runtime.getRuntime();
    try
    java.lang.Process process = runtime.exec(cmdarray);
    if(process.waitFor() == 0)
    ret = (new File(platformPathName)).canWrite();
    if(ret)
    oracle.ide.model.Node node = oracle.ide.model.NodeFactory.find(url);
    if(node instanceof oracle.ide.model.TextNode)
    oracle.ide.model.TextNode textNode = (oracle.ide.model.TextNode)node;
    textNode.isReadOnly();
    catch(java.io.IOException e)
    e.printStackTrace();
    catch(java.lang.InterruptedException e)
    e.printStackTrace();
    return ret;
    }

  • Resource assignment WMS- Defining user profiles and equipment profile

    Can anyone please let me know how I can define the user profiles and equipment profiles in SAP WMS We have a decentralized WMS that we are implementiing . Can any one please let me know how I can define the user profiles and aalso the equipemtn profiles. Ability to skip tasks and task groups.
    Thanks

    Yes - this was the first set of information the OP dumped from his system. About line 5 of the post.
    But I do wonder whether the 9.2.0.6 (not latest patch) makes a difference? Or perhaps the connect time is being used as part of a composite limit.

  • Replicate Response Profile and Service Profile to ECC

    Hi
    In our client environmen we will be charging customer for various priorities of SLAs defined. And some more complex calculation for pricing, again dependent upon these. For this we have to replicate Response Profile and Service Profile to ECC. Which will be used for pricing in service order.
    If you have worked on similar type of scenario, please guide me how this can be achieved.
    Thanks & Regards
    Hits

    Requirement dropped

  • Camera Profiles and DNG Profile Editor beta 2 now available

    Hi everyone,
    Beta 2 of the camera profiles and DNG Profile Editor are now available. Please visit here and enjoy:
    http://labs.adobe.com/wiki/index.php/DNG_Profiles
    I hope to have more detailed release notes/changes for you soon. You are welcome to ask questions, but please note that it may take a while for me to respond.
    Eric

    Eric,
    I followed very carefully your instructions for installing the new beta2 profiles and deleting the beta1 profiles, but have the same problems as many others. I'd like to provide a bit more information. I'm running Windows Vista Home Premium and have installed Photoshop CS4, updated with ACR5.1 and Lightroom 2.1 final release. As others have described, the default for all of my images was set to one of the Camera profiles (Canon faithful beta1), but now the profile name in Lightroom is blank. I tried looking at the other profiles and it does indeed appear that the beta2 profile is being used, but if I then reset the image it now shows ACR4.4, whereas the image had been imported with the camera profile as default. Also, if I open an image in ACR5.1 that was specified to use the same camera profile, it now shows ACR4.4 and it is not using the beta2 profile of what I had been using, I can see this by selecting the other profiles. Going back to Lightoom, I guess I could select all my images and select the Canon faithful beta2 profile, but then the mark shows up bottom right of the image showing that they have all been edited/modified, is there anyway to get all my images using the profile I was using but the beta2 version, without this happening and how about new imports?
    Thanks, David.

  • Coverage profile and Forecast profile together

    Dear all,
    Can we use coverage profile and forecast profile together.What are the requirements for the same.
    We are using coverage profile with following details
    No. of periods=20
    Type of period per length=1
    Range of coverage in first period= 10
    The forecast profile is set for
    Historical periods=12
    Initialisation period=2(Automatic,X)
    Periods /season=12
    Forecast periods=12
    with different weighting groups.
    But whenever forecasting is executed with some historical data for the 3 profiles it is giving same forecast values for all 3 profiles with different weighting groups.
    Also the MRP type used here is a copy of the PD MRP type and not VV or VS.
    Where can the problem lie?
    Regards
    Manisha

    Dear
    Coverage Profile and Forecast profile are two different subject  !
    If it is range of coverage profile , then The range of coverage profile contains the parameters for calculating the dynamic safety stock. This is a statistical calculation on the basis of average daily requirements.With the dynamic safety stock, you can determine a safety stock based on requirements and range of coverage. The dynamic safety stock adapts automatically to the changed requirements and is fully available for planning purposes. You can limit the quantities used in the calculation of the dynamic safety stock by defining maximum and minimum ranges of coverage. You can also limit the period of time by defining different time periods in which the range of coverage is valid.
    I hope you are asking about saferty caverage profile,,here basicalli we are setting the system to see how the safety stock is to be covered and calculated.See the help link below and come back if required
    http://help.sap.com/saphelp_47x200/helpdata/en/f3/dbbb16b36111d1a6770000e83235d4/frameset.htm
    https://wiki.sdn.sap.com/wiki/display/ERPLO/Dynamicsafetystock+calculation
    Where as Forecasting Profile , please refer the below :
    Profiles
    One more query : Also the MRP type used here is a copy of the PD MRP type and not VV or VS.
    I think you should use Forecast Base MRP type like VV  rather PD.PD does not carry out any Forcasting Functionality .Please check wether you replicate PD from VV , then it is possible to execute Forecast specially Total Consumption set up in MRP type .
    Hope this will be useful
    Regards
    JH

  • Problem with Cisco IPMA - between the manager profile and assistant profile

    Greetings to all.
    The problem basically is that wen I do a call (internal o external) to the extension configured in the manager phone, the assistant phone dosen`t rings or take the call, even the call in progress dosen`t appears in the Cisco Unified Communications Manager Assistant Console of the Assistant
    Also the icons of the IPMA in the manager phone dosen`t appears.
    I have check the following:
    1.The configurations on both profile and its look ok
    2.I have restar the Cisco IPMA, CTI and Tomcat Service
    3.I have reconfigured the profiles
    What else I can do
    What is the most common cause in these cases
    Thanks

    I have the same problem, did you resolve it ?
    Our Customer have about 50 IPMA and there are work. The problem is only with 4 IPMA Assistance (always the same). Sometimes (few times in week) lost  Assistance  icon Managers, and Managers doesn’t see shared lines, Intercom, services IPMA on phone doesn’t work. But sometimes Assistant icon is showing but Manager don’t see active connection and can’t call via Intercom.
    Assistance have 7962 Phone with load cmterm-7942_7962-sccp.9-2-3.cop.sgn
    Managers have 7965 Phone with load cmterm-7945_7965-sccp.9-2-3.cop.sgn
    CUCM (PUB/SUB) is 8.6.2.20000-2
    I opened a TAC case already but the problem is not resolved.

  • **-Camera Profiles and DNG Profile Editor FAQ-**

    A page containing answers to Frequently Asked Questions about Camera Profiles and the DNG Profile Editor can be found
    here

    New FAQ entries:
    What changed between beta 1 and beta 2?
    Is it safe to delete beta 1 profiles? What will happen if I do?
    I now have the beta 2 profiles and want to delete the older beta 1 profiles. How do I do this?
    Please read carefully.

  • Camera Profiles and Lens Profiles are missing in ACR 8.2.

    Yesterday I tried to install a new update for CS CC, but it failed. Then I uninstalled the app completely, and installed it again.
    When I opened ACR 8.2 I found out that there were no Camera profiles and LensProfiles (as it used to be before). Instead of usual Camera Profile was Matrix. There were no Lens Profiles in Photoshop  Lens Corrections either.
    The folder C/.../App Data/Roaming/Adobe/CameraRaw/LensProfilesDefault was also empty.
    I reinstalled the application a couple times with the same result.
    How can I fix the problem?
    Regards, Yulia

    Well,  C:\ProgramData\Adobe\CameraRaw\CameraProfiles\Adobe Standard is also completely empty.

  • Camera Profiles and DNG Profile Editor

    I saw the lightroom 2.0 eseminar and the presenter mentioned Camera Profiles and the DNG Profile Editor. All I see is ACR4.4 and 4.3. The the FAQ page says I need ACR4.5 and I can't find it and haven't gotten any update notice. Should I just wait for an update or forget it?
    Don

    >I have CS4. Will this overwrite ACR 5.1 in CS4?
    If you have CS4, you should update to ACR 5.2. If you install 4.6, you will break your CS4 install. Either just run the Adobe updater app, or go to http://www.adobe.com/support/downloads/new.jsp to download it. DNG converter is a separate download. Both camera RAW and NDG converter contain the final release version of the new profiles. DNG profile editor can still be downloaded from Adobe Labs: http://labs.adobe.com/wiki/index.php/DNG_Profiles. There is also a profiles download there that you don't need if you install DNG converter 5.2.

  • Relation between Date Profile and Action Profile

    Hi Folks,
    I don't want any date profile assigned to my transaction type SLFN. When I took out date profile and saved system gave me error "Action profile is only allowed with date profile SLNF_HEADER". I have assigned Z action profile to SLFN.
    Is there any relation between both them? Where do we maintain it?
    Points would be rewarded.
    Regards,
    Nikhil

    Hi Nikhil,
    Its mandatory to have date profile for actions.Because once you execute the actions it picks up the date based of the profile and system date, and maintain that information in the system.
    I think we can only have print actions without date profile.
    Regards
    Arun Kumar

  • Unable to Assign Service Profile and Response Profiles to Service contract

    Hi All,
    I am creating a new Service contract but unable to assign service and response profile in the Item details of a service contract.
    The serice and response profiles are in display mode they are greyed out.
    any ideas...
    Regards,
    Raj.

    Hello, please ignore I've replied to the wrong posting.
    Cheers
    Message was edited by: Andrey Bondarev
    Message was edited by: Andrey Bondarev

  • Compiling CDC/ Foundation Profile  and Personal Profile in RedHat 7.3

    When I compile the CDC/Personal Profile,in RedHat 7.3,I get this message:
    ../share/rules.mk:235: ../../build/linux-i686/generated/empty.mk: No such file or directory
    ... mkdir ../../build/linux-i686/generated/javavm/runtime
    touch ../../build/linux-i686/generated/empty.mk
    ... mkdir ../../build/linux-i686/generated/flags
    error:compiler message file broken: key=compiler.err.sun.io.MalformedInputException arguments=null
    ,null,null,null,null,null,null
    100 errors
    make: ***[.compile.btclasses] Error1
    And with CDC/Foundation Profile ,the message is:
    error:compiler message file broken: key=compiler.err.sun.io.MalformedInputException arguments=null
    ,null,null,null,null,null,null
    100 errors
    make: ***[.compile.btclasses] Error1
    What can I do now!
    Can you help me to solve this error?

    Just do export LANG=en_US
    also edit the /etc/sysconfig/i18n file entry for LANG to en_US instead of the UTF.8 stuff
    I don't know the exact reason though.. this will work.
    --Prasanna Kumar                                                                                                                                                                                                                                                                                                                                                                                               

Maybe you are looking for