I am new to Mac.  How do you make an app available to all users so you only have to go through set up once?

I am new to Mac.  How do you share an app with all users so you only have to install once?

You only have to install applications once, after which are available to all users on your Mac.  But each user account will have its own individual preferences to set and may have some initialization to do the first time the application runs in each account.
Also, most applications that require entry of a license code accept the code once and apply it to all user accounts on your Mac.  But there are some exceptions, some applications, that don't seem to do this (or don't do it well)  and you may have to enter your license code in each user account the first time you run those applications in each account.  For example, iTunes will ask you to accept the license the first time you run it in each user account.

Similar Messages

  • How do I make automator services available to all user accounts?

    I wrote an automator script and made it a service (the standard one that shows all hidden files, or un-shows all hidden files) and I'd like to make it a system-wide service so all user accounts on my Mac can use it.
    I'd prefer to not log in to each account to set it up as I feel that would waste space (I know, not much is needed) but more importantly if I have to change the script I only have to do it in one place.
    How do I do this?
    I have other scripts I'd like to make available to all too.
    I'm currently running OS X 10.9.5 on a 2008 (not Pro) MacBook core 2 duo.

    Thank you, Frank. I'm aware of the packages but didn't realize how it all applied.
    I didn't post if it worked for other user accounts because at the time, I didn't know. It was late when I got it working for my primary account and decided to check it later, which I did this morning, and the services did show up for the other accounts. Yea!!
    As far as the workflows being "corrupt", I still don't know why, either.
    It was odd that when I did Get Info for that file the Preview section actually showed (but of course, very tiny) the Automator script, so clicking (double-clicking? D-C worked this morning) it opened with no errors in Automator. Permissions are still 777 (unix), but I'll change them back to 666.
    Hey! 666 removed them from Services! And when I try to open the workflow in Automator it tells me the file is corrupt. Go figure.
    The answer to that might be that the /Library/Services directory already existed (because of the MacExplorer app I installed) so it held LaunchMacExplorer.workflow. The permissions on that file are drwxr-xr-x@ 3 padr  staff  102 Jan 27  2013 LaunchMacExplorer.workflow .
    I always wondered why write was needed for a workflow. Read or execute (unix) should be good enough.
    I changed some of the files to 751 to match the MacExplorer workflow and those not only changed the coloring (ls -al) in terminal but they also now show up in Services. Yea!

  • Producers this is a call that I make in the name of all users apple, you could add the LED flash to the camera of the new fifth-generation ipad please?

    producers this is a call that I make in the name of all users apple, you could add the LED flash to the camera of the new fifth-generation ipad please?

    This is a user to user forum. you are not addressing Apple. You can give Apple feedback here: http://www.apple.com/feedback/
    BTW: You do not speak for "all users apple". I for one have a LONG list of feature I would rather see than a flash for the iPad.

  • How do you make Motion templates availabe for all users for FCPX?

    How do you make Motion templates availabe for all users for FCPX?

    Copy your Motion Templates folder that is in your Movies folder to the movies folder of your other users.

  • How to make saved IR available for all users

    Hi,
    I've created IR and saved it to several tabs based on search conditions.
    But they're only visible for developers.
    How to make these tabs available for all end-users ?
    Does version 4.0 support this option ?
    Thank you!

    Hi
    At present this feature is not included, although I believe it may be in 4.0. Many people have provided workarounds for this. None of which I have tried. I cannot find the original thread but here is a solution from a chap called Ruud
    >
    One way to share your saved reports with others is to 'Publish' your report settings to a few intermediate tables in your application and have other users 'Import' your settings from there. The reason for using intermediate tables is so that not all your saved reports need to be 'visible' to other users (only those that you've chosen to publish).
    Basically you have available the following views and package calls that any APEX user can access:-
    - flows_030100.apex_application_pages (all application pages)
    - flows_030100.apex_application_page_ir_rpt (all saved reports - inclusing defaults and all user saved reports)
    - flows_030100.apex_application_page_ir_cond (the associated conditions/filters for above saved reports)
    - wwv_flow_api.create_worksheet_rpt (package procedure that creates a new saved report)
    - wwv_flow_api.create_worksheet_condition (package procedure that creates a condition/filter for above saved report)
    The way I've done it is that I've created 2 tables in my application schema that are straightforward clones of the 2 above views.
    CREATE TABLE user_report_settings AS SELECT * FROM flows_030100.apex_application_page_ir_rpt;
    CREATE TABLE user_report_conditions AS SELECT * FROM flows_030100.apex_application_page_ir_cond;
    ( NB. I deleted any contents that may have come across to make sure we start with a clean slate. )
    These two tables will act as my 'repository'.
    To simplify matters I've also created 2 views that look at the same APEX views.
    CREATE OR REPLACE VIEW v_report_settings AS
    SELECT r.*
    p.page_name
    FROM flows_030100.apex_application_page_ir_rpt r,
    flows_030100.apex_application_pages p
    WHERE UPPER ( r.application_name ) = <Your App Name>
    AND r.application_user 'APXWS_DEFAULT'
    AND r.session_id IS NULL
    AND p.application_id = r.application_id
    AND p.page_id = r.page_id;
    CREATE OR REPLACE VIEW v_report_conditions AS
    SELECT r.*
    p.page_name
    FROM flows_030100.apex_application_page_ir_cond r,
    flows_030100.apex_application_pages p
    WHERE UPPER ( r.application_name ) = <Your App Name>
    AND r.application_user 'APXWS_DEFAULT'
    AND p.application_id = r.application_id
    AND p.page_id = r.page_id;
    I then built 2 screens:-
    1) Publish Report Settings
    This shows 2 report regions:-
    - Region 1 - Shows a list of all your saved reports from V_REPORT_SETTINGS (filtered to only show yours)
    SELECT apex_item.checkbox ( 1, report_id ) " ",
    page_name,
    report_name
    FROM v_report_settings
    WHERE application_user = :APP_USER
    AND ( page_id = :P27_REPORT OR :P27_REPORT = 0 )
    ORDER BY page_name,
    report_name
    Each row has a checkbox to select the required settings to publish.
    The region has a button called PUBLISH (with associated process) that when pressed will copy the settings from
    V_REPORT_SETTINGS (and V_REPORT_CONDITIONS) into USER_REPORT_SETTINGS (and USER_REPORT_CONDITIONS).
    - Region 2 - Shows a list of already published reports in table USER_REPORT_SETTINGS (again filtered for your user)
    SELECT apex_item.checkbox ( 10, s.report_id ) " ",
    m.label,
    s.report_name
    FROM user_report_settings s,
    menu m
    WHERE m.page_no = s.page_id
    AND s.application_user = :APP_USER
    AND ( s.page_id = :P27_REPORT OR :P27_REPORT = 0 )
    ORDER BY m.label,
    s.report_name
    Each row has a checkbox to select a setting that you would like to delete from the repository.
    The region has a button called DELETE (with associated process) that when pressed will remove the selected
    rows from USER_REPORT_SETTINGS (and USER_REPORT_CONDITIONS).
    NB: P27_REPORT is a "Select List With Submit" to filter the required report page first.
    Table MENU is my application menu table where I store my menu/pages info.
    2) Import Report Settings
    This again shows 2 report regions:-
    - Region 1 - Shows a list of all published reports in table USER_REPORT_SETTINGS (filtered to show only other users saved reports)
    SELECT apex_item.checkbox ( 1, s.report_id ) " ",
    m.label,
    s.report_name,
    s.application_user
    FROM user_report_settings s,
    menu m
    WHERE m.page_no = s.page_id
    AND s.application_user :APP_USER
    AND ( s.page_id = :P28_REPORT OR :P28_REPORT = 0 )
    ORDER BY m.label,
    s.report_name,
    s.application_user
    Each row has a checkbox to select the setting(s) that you would like to import from the repository.
    The region has one button called IMPORT that when pressed will import the selected settings.
    It does this by using the 2 above mentioned package procedure to create a new saved report for you
    with the information form the repository. Be careful to match the right column with the right procedure
    parameter and to 'reverse' any DECODEs that the view has.
    - Region 2 - Shows a list of all your saved reports from V_REPORT_SETTINGS (filtered to only show yours)
    SELECT page_name,
    report_name
    FROM v_report_settings
    WHERE application_user = :APP_USER
    AND ( page_id = :P28_REPORT OR :P28_REPORT = 0 )
    ORDER BY page_name,
    report_name
    This is only needed to give you some feedback as to whether the import succeeded.
    A few proviso's:-
    a) I'm sure there's a better way to do all this but this works for me :-)
    b) This does not work for Computations! I have not found an API call to create computations.
    They will simply not come across into the repository.
    c) If you import the same settings twice I've made it so that the name is suffixed with (2), (3) etc.
    I did not find a way to update existing report settings. You can only create new ones.
    d) Make sure you refer to your saved reports by name, not ID, when matching APEX stored reports and the
    reports in your repository as the ID numbers may change if you re-import an application or if you
    auto-generate your screens/reports (as I do).
    Ruud
    >
    To me this is a bit too much of a hack and I personally wouldn't implement it - it's just an example to show it can be done.
    Also if you look here in the help in APEX Home > Adding Application Components > Creating Reports > Editing Interactive Reports
    ...and go to the last paragraph, you can embed predicates in the URL.
    Cheers
    Ben
    http://www.munkyben.wordpress.com
    Don't forget to mark replies helpful or correct ;)
    Edited by: Munky on Jul 30, 2009 8:03 AM

  • How to make Steam library available for all users

    Hello!
    Can someone tell me - how to make my Steam library available to ALL users of my iMac without sharing a password?
    Or any other program of my account?

    Hard drive level Users/Sharing - Do a Get Info on the folder (command - I) and set permissions to everyone read/write, then click the gear at the bottom - Apply to Enclosed Items.

  • How can I make my app available with out logging in

    Hi guys,
    How can I make my application available with out logging in. In other word, it should work as a normal website no user name or pass word is required ?
    Best Regards,
    Fateh

    Hi Fateh,
    Edit your page, and under the security of your page change the authentication from page requires authentication to page is public
    Authentication: page is PublicSo, that your page wont ask for a login.
    Brgds,
    Mini
    Mark Answers Promptly

  • How many shows in walking dead season 4 are out.  I only have ones aired through 12/1/13

    Anyone else not getting The Walking Dead episodes past 12/1/13?  Any ideas why?  I thought we had access 48 hours after they aired on AMC?  thx

    Hi Suzy Q,
    I can send and receive calls.
    I get "messaging stopped" when doing a lot of texts.
    Texts come up "ghosted" meaning they have the text on the bottom and a transparent one overlaid  on top. they then become one. But I get the ghosting most of the time when I go into a message from a contact to send a text.
    When I go to call logs or text logs, the numbers come up first, and then then the names pop up randomly, meaning not in order down the page, until they are all shown. lots of lag time.
    It runs slow.
    I have 5 apps on here. I should be able to have a  lot of apps on here, and play music, and have files, and...and....and.
    I can get online but doing a Google search, when the page with the choices comes up, it is blurred and I have to tap on the screen for it to become clear and readable.
    When online and scrolling, it hitches sometimes/lags/gets stuck then unstuck
    I get VZWAVS has stopped. (not sure if those are the right letters)
    The status bar that is supposed to be gray with the new update, goes back and forth between green--the old os--to gray. And I have found no continuity with when I get green or when I get gray.
    I get a black screen on occasion.
    sometimes the proximity sensor doesn't work.
    sometimes when I have my bluetooth on and have "hands free mode" on, I get the a text message read through the headset and also through the handset.
    I soft reboot often--turn it off wait a bit and

  • Garage Band isn't reading my entire iTunes Library, am I missing something in the settings? how do I make entire library available?

    Garage Band isn't reading my entire iTunes Library, am I missing something in the settings? how do I make entire library available?

    In general, whatever you see in your iTunes app (playlists, songs, etc) should also be displayed in GarageBand when you select the Audio tab in the Media Browser.
    One hidden feature is that you can have multiple iTunes Libraries (as you can have multiple iPhoto Libraries).
    When you click on the iTunes icon in the Dock and immediately after the click hold down the option key, the following window will pop up.
    It lets you create a new empty Library or choose to open a different existing Library (that you have created before). Whatever Library you chose the last time you opened iTunes will be the "current" iTunes Library and that is the one that is displayed in GarageBand. (it is a system wide preference). You even can have GarageBand open while switching to a different iTunes Libraries and GarageBand will update the displayed Media Browser content.
    Here are two screenshots of my GarageBand app displaying two different iTunes Libraries
    So in case you used that feature, you might see a different iTunes content than you expected.
    (BTW, this "multiple Libraries" feature comes in also very handy with iPhoto, where you can have separate Libraries for you family, your band, your business, or whatever you want to separate photos. Also good for individual backups)
    Hope that helps
    Edgar Rothermich
    http://DingDingMusic.com/Manuals
    'I may receive some form of compensation, financial or otherwise, from my recommendation or link.'

  • PL/SQL: How to make a function accessible to all users?

    How can I make a function accessible to all users?
    I have written a stored function called GET_NET_BALANCE.
    I can run it but my users cannot.
    I have tried the following, but my users still cannot
    run the function:
    GRANT EXECUTE ON GET_NET_BALANCE TO PUBLIC;
    Thanks, Eileen

    Hi,
    You can try creating a public synonym on the function so that it is accessible to all.
    To get greater response.. please post your question at
    PL/SQL
    Regards,
    Anupama

  • I''m new to Mac, how do I install Adobe CD? I put it in the CD drive and get a menu, everything I click on goes nowhere. In Microsoft, I installed many programs with no problem

    I''m new to Mac, how do I install Adobe CD? I put it in the CD drive and get a menu, everything I click on goes nowhere. In Microsoft, I installed many programs with no problem

    Is the Adobe CD a MAC app ?
    If it is a program for Windows you will not be able to install it.
    If you nedd that program you can either buy the equivalent for Mac or install a way to run Windows under Mac (may be a cheaper solution)

  • I am running 10.5.8. New to mac. Cannot find iCal in apps. folder. Seems to have disappeared. Any suggestions on how to get it back?

    I am running 10.5.8. New to mac. Cannot find iCal in apps. folder. Seems to have disappeared. Any suggestions on how to get it back?

    4mccarthys,
    If you are certain that iCal is no longer present on your computer...
    To reinstall iCal:
    1. Insert the Leopard Installation disk into the computer.
    2. The disk will appear on the desktop.
    3. Double click on the "Optional Installs" folder.
    4. Double click on the "Optional Installs.mpkg."
    5. Click on (Continue) in Introduction.
    6. Click on (Continue) in Software License Agreement.
    7. Click on (Agree) to agree to the terms of the software license agreement.
    8. Click on the disclosure arrow ▶ next to Applications.
    9. Select (✓) iCal.
    10. Click (Continue).
    11. After iCal has been reinstalled, download and install the Mac OS X 10.5.8 Combo Update to bring iCal up to the most recent version.

  • I have a PPC iMac 10.4.11 and will shortly buy a new i Mac.  What is the best way to transfer all my HD date from old to new? Thank you!

    I have a PPC iMac 10.4.11 and will shortly buy a new i Mac.  What is the best way to transfer all my HD date from old to new? Thank you!

    Migrating from PPC Macs to Intel Macs:
    https://discussions.apple.com/docs/DOC-2295
    How to use Migration Assistant:
    http://support.apple.com/kb/HT4413?viewlocale=en_US
    http://support.apple.com/kb/TS1963
    Troubleshooting Firewire target disk mode:
    http://support.apple.com/kb/HT1661

  • Hey, I'm new to mac, is there a software in App store like Endnote X5 for Microsoft word?

    Hey, I'm new to mac, is there a software in App store like Endnote X5 for Microsoft word?

    Glad you got it working OK. Because you are new to OS X and have recently made the switch I would STRONGLY recommend you bookmark and frequently visit these site:
    Switch 101
    Mac 101
    Find Out How Video tutorials
    Also if you need help with MS Office Microsoft host's a forums specifically for the Mac version. You can find it at:
    Office for Mac Product Forums.

  • My MacBook Pro died, but have a TimeMachine backup. I've bought a new one. How do I make the new one just like the old without affecting the OS on the new one?

    My MacBook Pro died, but have a TimeMachine backup. I've bought a new one. How do I make the new one just like the old without affecting the OS on the new one?

    ppauley wrote:
    My MacBook Pro died, but have a TimeMachine backup. I've bought a new one. How do I make the new one just like the old without affecting the OS on the new one?
    One you start up the new one for the first time, Setup Assistant starts and offers you the option of migrating your old Mac to your new Mac with Time Machine, among other choices, as the source. You can also use Migration Assistant (in the Utilities Folder) to do the same thing.

Maybe you are looking for

  • BouncyCastleProvider() in JDeveloper ???

    HI, I have a PKCS12 certificate do be used in web service client. The proxy client was generated successfully using the JDeveloper wizard.. But, when I am trying to "Secure proxy" using JDelevoper wizard.. the wizard is not recognizing the certificat

  • TP4 Install problems

    I am trying to install TP4 on WIndows 2003 Server (VM) and am running into issues. I am also running database v11.1.0.6. I realize this is officially unsupported, but I'm not going to run a whole separate database stack. I need 11g. I appreciate any

  • Help Diagnosing a Finder Crash

    My finder crashes every couple of minutes. Here's the contents of the finder crash log, if anyone can help me diagnose (its for an iBook g4 with 10.4.11): Host Name: jeffsmachine Date/Time: 2008-09-11 20:14:37.607 -0700 OS Version: 10.4.11 (Build 8S1

  • HP Laserjet 5P - Printing Problems

    My 5P has started to print a black smudge along the side of the paper.  I've tried shaking the toner cartridge and surface cleaning the inside.  There is a brush inside the printer but I can't find any information on where to use it.  Any ideas?

  • Please help - external hard drive security / privileges issue.

    Yesterday while messing around with my mac I stupidly changed a setting I can't seem to remedy. I may have somehow selected an obscure security / privileges option, most likely within the 'get info' option and now my external hard drive icon is not v