How to preserve preferences in LaunchPad?

I recently got a new MacBook Pro & used Migration Assistant. It worked flawlessly. In the past I have opted to install everything fresh by re-installing applications & dragging anything I wanted from the old Mac to the new one using an external drive. Migration Assistant saved me literally hours, if not days; and it worked nearly flawlessly.
However, there was one thing that did not work correctly. Now I know that most people don't really use LaundPad; and I don't really launch applications that way most of the time. I typically use Alfred as a launcher. However, I do like to keep my apps organized by type in LaunchPad. I won't bore you with the details, as I"m sure they are peculiar and not applicable to most people. This brings me to my question. Even though Migration Assistant did such an excellent job of bringing everything else over, it did not preserve the folders I had set up in LaunchPad nor the organizaiton of the applications in any way that I can see.
Is there a way to do that for the future? If I had copied the LaunchPad preference file from the old Mac to the new one, would that be the answer. If so, which files?
THANKS.

If the icon shows a question mark in the middle when you click on it then the alias is gone and all you need to do is drag the icon to the trash.
If the icon still launches the app then you have an active icon.  Launchpad will find virtually all apps or app alias files on your system.
It too me several minutes to find and delete all of my redundant ...alias icons. It would have taken much longer but I had almost all of my alias files stored in stacks.  Delete the stack folder and the icons weren't active.  Drag them to the trash and the icons are gone.

Similar Messages

  • How to preserve manually maintained Hierachy?

    Gurus,
    How to preserve manually maintained Hierachy in parenth1. We are maintaining some much data manually for BPC only with hierarchy. Problem is every time when we load the hierarchy from BW system the manually maintained hierarchy gets wiped out.
    We don't want to maintain BPC only hierarchy as seperate parenth2. I read this article Understanding how to Preserve Manually maintained Alternate Hierarchies with the new BPC Data Manager Package to Load from BW Hierarchies but this is maintaining as seperate parenth2 or 3.
    Please suggest.
    Thanks.

    Hi,
    You can not maintain the hierarchy in BPC and load from BW, it will be wiped out every time.
    What we did was that we created a new custom hierarchy in BW with the extra nodes.
    Andy

  • How to store preferences in file system on Windows?

    I have 2 questions related to preferences using.
    1. How to store preferences in file system (not in registry) on Windows? I see file system implementation of Preferences (java.util.prefs.FileSystemPreferences). But this implementation is linux-specific (use native methods). Does universal implementation exist?
    2. How to store custom files in preferences? I need to store some user-specific files (XML files, for example) somewhere. These files are naturally user preferences. So my idea is to store it using Preferences. But it seems like there is no such posibility in standard preferences. I believe many peoples have the same problem. Does anyone have solution?
    Please help me!
    Thank you in advance.

    Preferences is supposed to keep all this data
    handling away from you, so you shouldn't bother. If
    you'd like to write a file, just write a file. You
    could create a "Settings" object and serialize it.I understand your reasonings. But unfortunately I have requirements to use file system preferences both on Linux and Windows. My bosses think there are many problems because of registry. Don't ask what problems, they didn't say. I cannot change their requirements. I must to implement it.
    Maybe somebody already solved this proplem. I will very grateful for help.
    Once again: simply write and read a custom file. Why
    do you use Preferences at all costs when they don't
    do what you want to?I have requirements to implement saving of files in the same manner as saving of preferences. It may be different code from Preferences. But it will be the best to have the same code if it possible.
    Any way I believe the need to save user-specific files as preferences is quite widespread.

  • How to preserve database user details before cloning

    Hi Experts,
    How to preserve database user details before cloning,
    I am cloning the test database with the prod database, so my concern is how to preserve the users details which they have in TEST database( like roles, privilges, profiles , passwords, etc.....). Because that all gone after cloning from PROD.
    Thanks
    Sam

    use the following script to take the backup of roles,pwd & other  details of DEV . after cloning  execute the scripts back in DEV to restore the old values....
    set head off
    set lines 200
    set pages 9999
    col owner for a20
    col db_link for a30
    col username for a15
    col host for a40
    col created for a12
    spool db_details.lst
    select * from global_name;
    select * from dba_db_links;
    select name from v$controlfile;
    select member from v$logfile;
    select file_name from dba_data_files;
    select file_name from dba_temp_files;
    spool off
    spool create_db_links.lst
    select 'create DATABASE LINK '||owner#||'.'||NAME|| ' connect to '|| userid || ' identified by '|| password || ' using '||''''|| host ||''''||'; ' FROM sys.link$ order by owner#;
    select username,user_id from dba_users where user_id in (select distinct owner# from link$);
    spool off
    spool alter_user.lst
    select ' alter user '||username||' identified by values ' || chr(39)||password||chr(39) || ';' from dba_users;
    spool off
    Set verify off
    Set space 0
    set feedback off;
    set echo off;
    set pages 1000;
    set lines 150;
    spool create_synonym.sql
    Select 'CREATE SYNONYM '||owner||'.'||synonym_name||' FOR '||table_owner||'.'||table_name||'@'||db_link||';' from dba_synonyms where db_link is not null and table_owner is not null;
    Select 'CREATE SYNONYM '||owner||'.'||synonym_name||' FOR '||table_name||'@'||db_link||';' from dba_synonyms where db_link is not null and table_owner is null;
    spool off;
    Spool profile.sql
    select ' alter user '||username||' profile '||PROFILE||';' from dba_users;
    spool off

  • How to preserve my chained backtrace

    Hi friends,
    This is a peculiar problem where in the websphere created stub file for my stateless session ejb is creating a
    copy of my app's exception(which has chained backtraces due to exception chaining)[i believe that it is doing this for
    portability purposes] and setting those backtraces to null, so that by the time i catch this exception in the web tier, i
    have no stack trace!
    In the stub file for my stateless session ejb auto-generated by websphere 5.1, inside the business method,
    Also, am using Local Communication, so the else gets executed.
    //if remote communication with ejbs,
    if (!Util.isLocal(this)) {
    else //if local communication with ejbs
    try {
    //some exception occurs...
    } catch (Throwable ex) {
    //The throwable "ex" which is being used to make a copy has chained tracebacks.
    //But now, the below statement is creating a copy of "ex" with all the tracebacks being set to null in the chain!
              Throwable exCopy = (Throwable)Util.copyObject(ex,_orb());
    if (exCopy instanceof myappException) {
    throw (myappException)exCopy; // throwing the copy with the tracebacks set to null to the web tier!
    throw Util.wrapException(exCopy);
    } finally {
    servantpostinvoke(so);
    //Inside the business implementation class for my stateless session ejb,
    public mybusinessmethod () throws myappException{
    try {
              //some exception occurs....          
    } catch (Exception e) {
                   throw new myappException(e);
    So, how to preserve my backtraces from being set to null by websphere's generated stub files and pass them to the web-tier??
    thanks a lot

    so um I'm moving my files from my computer to my mybook. And i unintentionally removed itunes in the process....so how do i recover all my music and playlists. I have a lot of music and for some reason i have a lot of duplicates. And i do not feel like sitting at my computer for 6 hours deleting every single duplicate and recreating all my playlists. Or do i have to it this way? any help would be great thanks.

  • How to preserve battery life ~ used to last all day, now it runs out by lunchtime

    How to preserve battery life ~ used to last all day, now it runs out by lunchtime

    I would advise updating to iOS 7. It might improve your battery and the bugs are worked out by now.
    If not wanting to update because of the new look, here are some tips:
    -Turn off bluetooth when not needed.
    -Connect to wifi and turn off cellular data when possible.
    -When not around wifi, turn wifi off.
    -Keep your screen at around 50% brightness.
    -Disbale certain apps or features in Settings<Privacy<Location Services if they are not necessary.
    -Close out of apps in the multitasking bar.
    -Enable airplane mode when you plan on not using your phone for a while.
    Hopefully these tips help you. If your battery does eventually get too bad, you can get it changed out by apple. If youve had your device for under a year, you can take it into an Apple store and theyll give you a new phone in return. Have a good night and good luck!

  • How to preserve or embedded history in photo when exporting?

    Does anyone know how to preserve a photo develop history when exporting to new folder so that editing can continue?

    Thanks Jim and DJ - perhaps my process needs to change. I use a folder structure within each photo shoot.  Capture (for all raw files) - Master (for working photos that are being edited / developed) - and finally an Output folder for photos being printed or posted to web etc. I export to each. I understand that you can always go back to the original raw capture or any point in the history but sometimes I want to compare different editions of develop settings for an image against each other while preserving both. When using a copy of an image the develop settings only start at time of copy and likewise when using an exported image the history starts from the export going forward
    What I want to do is take photos from the various Master folders that have develop changes to them and move or copy them to another folder; as example a "2015 Art Show folder" for an upcoming photo exhibit etc. and then do additional develop changes specific for the Art Show  - being able to see the previous develop settings would be useful during this edit phase and you could continue to work in the one folder without needing to hunt around to numerous folders all over Lightroom
    I hope that explains what I am trying to do, I appreciate any ideas you may have
    Thanks,
    Paul

  • How to reset Preference settings in Acrobat.

    How to reset Preference settings in Acrobat to default settings.

    Remove restriction passcode
    1. Restore to Factory Default
    http://support.apple.com/kb/HT1414
    2. You can restore from a backup that was done before you enable the Restriction Code.

  • How to add apps to launchpad?

    How to add apps to launchpad? When I came back to my MAC today the launchpad was empty! Has someone an idea how I can get the apps back, I quite liked it the way it was.
    Regards,
    R.

    Roland --
    Welcome!  Have you checked your Applications folder to see if they're all still in thre?

  • How to preserve old dtd when using writetofile method

    Hi,
    I have one doubt.How to preserve the dtd of xmlfile before parsing it with the xml parser for pl/sql ,write this saved dtd to the document object and use to writofile method of the dom object.If this is possible then can anyone ,please give me suggestions.
    I illustrate the situation ,given below is the dtd of the file before parsing :-
    <!DOCTYPE family [
    <!ELEMENT family (member*)>
    <!ATTLIST family lastname CDATA #REQUIRED>
    <!ELEMENT member (#PCDATA)>
    <!ATTLIST member memberid ID #REQUIRED>
    <!ATTLIST member dad IDREF #IMPLIED>
    <!ATTLIST member mom IDREF #IMPLIED>
    ]>
    After parsing and using the writetofile method ,the dtd present below is the changed dtd of the new xml file.
    <!DOCTYPE family [
    <!ELEMENT member ANY>
    <!ATTLIST member memberid ID >
    ]>
    Can anyone say how to stop this.Any help would be great
    Regards
    gopal

    Hi, Kiran,
    As the others have said, the only way ^1^ to get the result set in any particular order is to use an ORDER BY clause.
    Here's the general way to do that in SQL in case of a UNION:
    WITH  union_results     AS
         select 'a' AS txt, 1 AS sort_key from DUAL
        union
         select 'd',        2             from DUAL
        union
         select 'b',        3           from DUAL
        union
         select 'c',        4           from dual
    SELECT    txt
    FROM       union_results
    ORDER BY  sort_key
    ;In SQL, you can only ORDER BY expressions that arei n the SELECT clause, so to avoid displaying sort_key, the sub-query is necessary. A lot of people don't use pure SQL for this; they have their front end hide the sort_key column. In SQL*Plus, for example, you can say COLUMN sort_key NOPRINT.
    ^1^ There is one exception, which does NOT apply to this case, or most others. CONNECT BY, even without ORDER BY, does impose a partial ordering.

  • Exif info desappears after postprocessing in ps cs5. How to preserve it

    The exif info desappears after postprocessing in ps cs5. How to preserve it ?

    Photoshop and other programs can strip meta-data including EXIF data frome images for example save for web and devices has that as an option. You can use that option to make files a little smaler and keep prying eyes from being able to see your meta.  If you edit a image file stripped of metadata and and save a PSD file it will not have EXIF data.  Stitching programs may also save PSD files without Exif data for even if all the image stitched were shot using the same setting their exif data would not be the same the time stamps would at least differ.  PSD file may also be created form a new document that have images placed or pasted into it. Photoshop would not create Exif data for open new document and pasteing an image from the clipboard content would not have exif data. If you placed in images into your new document their Smart Object layer many have EXIF data if you double click on the smart object Photoshop will open the embedded object in Photoshop.  So the question you need to answer is did the PSD file ever have EXIF data. How was the PSD file created in the first place.
    Why is your question in a scripting forum not the Photoshop Windows/Mac foums. Also Photoshop can be used to change images size and I do not beleive it would change any EXIF data to reflect that the image's size has been changed. Or is that what your verifying that the current images pixel size is the same as the exif pixel size. But then canvas could have been so there would ba a border around an image the may or may not have been resized.  What is it that you are trying to verify?

  • How to Preserve Colors

    I have a set of photos taken of different color objects illuminated by different types of lights at night along with a photo of each object in daylight.  Color temp of the lights ranged from 2000K to 6000k. I want to show the difference in color rendering between the different light sources.  I don't want to "improve" the photos -- just show the color distortion as it was -- that's the point.  Photos were taken on a Nikon D50 SLR in raw with auto white balance.
    My question is:  I've used "as shot" white balance when importing into Photoshop.  Is that correct?  I'm concerned that the white balance computed by the camera will be used and will distort the original colors.

    I'm looking to render whites (and several other colors) at the same distorted color captured by the camera due to differences in the spectral composition of the light used for the scene
    There is no such thing as "preserving the colors" but "reproducing the colors", because the camera's way of recording the image is different from what you get at the end (already the thread title How to Preserve Colors showed this misconception).
    The pixels of a camera with Bayer type sensor are often described as "red", "green" and "blue". This is comfortable, but incorrect; the pixels should be called Rgb, Grb, Brg, i.e. "mainly red, somewhat green, somewhat blue", the other one "mainly green, somewhat red, somewhat blue" and the third one is "mainly blue, somewhat red, somewhat green".
    Let's see an example created with your camera (the sample is from Imaging Resources). We concentrate on the red, green and blue patches of the color checker card. The captures show a crop from the raw, i.e. undemosaiced, non-WBd image. The first capture shows the image in "composite color" mode: the "red" pixel value was used for the R component of RGB, the "blue" pixel value for the B component, and the average of the two "green" pixels became the G component.
    The patches appear blue, green and red, more or less. But how are they really? The following captures show only the red, the green and the blue components. If a patch were red, then the green and blue component would be null (black in the display), likewise with the green and blue. Is that so?
    It is obvious, that the "natural" color component is the strongest, but the others are far from being black.
    The next issue is, that this appearance does not depend only on the color of the object and on the illumination, but on the sensor (on the filters over the sensels) as well. Look at the same patch under the same illumination, created by the D90. It is close, but not identical to the D60:
    Again, all the above was without white balancing.
    If you want to show, how the D60 (but only the D60!) records a scenery under a givel illumination, you have to use a neutral white balance. First, create such a template shot. The easiest way (though not all cameras like this) is to make a shot of something, which totally clips, like the cloudy sky or a white sheet, at least three stops overexposed (do NOT shoot the sun). Then use this image for setting the custom WB in the camera and select "custom WB" for the demo shot. Now the colors are not adjusted to the illumination.
    This is still far from what the camera captured, but somewhat closer. If you want to see really the captured data, use Rawnalyze (free): http://www.cryptobola.com/PhotoBola/Rawnalyze.htm
    Gabor

  • How to preserve the column headings from my playlist when I transfer the list as WAV files to a flash drive?

    I have digitized several old vinyls as WAV files and have them in my MacBook Pro in an iTunes playlist. I have arranged the list under the column headings of "Grouping", "Name", "Time", "Artist", "Album" and "Genre". When I copy the files to a flash drive by drag-and-drop, none of the headings except "Name" show up. How to preserve all of the column headings when copying the file to an external device?  Thanks - RC@gnv.

    I have the same issue when trying to sync from iTunes 11 on my MacBook to my iPhone 4 iOS6.1. I blindly did the iOS upgrade to 6.1 (more fool me) and since then have not been able to use my phone as an iPod.
    I have tried restoreing it, I ve tried restoring it to a new phone but it hasn't worked for me.
    The sync starts and the capacity bar in iTunes shows capacity including and music or films etc that are to be included in the sync and then iTunes stops the sync and nothing has been transfered. As with your experience the music is shown in iTunes under Music, under Devices as greyed out with the syncing icon (dotted circle) to the left of it.
    When I try to include photos in the sync, I also get an error msg stating the connection to the iPhone has been lost. I am trying to do the sync vis USB, so I dont why I get this error.
    I can of course download any music I've bought from Apple from my iCloud to my phone but I want to be able to put any music I want on to it like I could before on iOS5.

  • How can I  reclaim my launchpad icon? ? now appears in Dock

    How can I  reclaim my launchpad icon? ? now appears in Dock

    Did you try changing your picture in your contacts. 

  • LR 4 AVCHD support - how to preserve quality for future use?

    I was excited to see that LR 4 would support the AVCHD format, but I've run into a bit of a Catch-22.  I have a Panasonic Lumix GH2 that records very good video in AVCHD format, and previous to LR 4 I've had to use Final Cut Pro to import the video files from the SD card, which can be hard to remember to do (a dumb problem, but a real one).  So with LR 4 being able to import and work with AVCHD files, it's a step forward, but the question becomes how to preserve maximum qualtiy of the files for future, possibly professional, use.
    AVCHD is of course a compressed format, and so is h.264.  When I saw that one can export from LR 4 in "Original" format, I assumed it would be possible to establish a workflow wherein the files could be imported from the card into LR 4, then, if desired, exported (using "Original" format) and imported into Final Cut in Apple Pro Res format (minimal compression) for instance.
    But the problem is that Final Cut doesn't see anything valid in the directory structure that LR creates in its export process, whereas it does see valid files when it's pointed to the original files on the card.  Is it a simple problem of directory sturcture?
    I think there should be more professional export options for AVCHD files, such as Apple Pro Res, or an uncompressed format.  At the very least, there should be a simple and obvious workflow in which LR imports the files and, in copying the files from the card, creates the directory structure that apps such as Final Cut need in order to see the video files.
    Thanks

    Hi,
    DSS has inbuilt functionalities to compare the transactions against the in built rules.If the transactions take place not in accordance with the in-built rules,it is treated as a "violation" and is reporetd.
    Virsa is an example of DSS tool.Here you can build rules for access and process ;constantly compare the actuals Vs the rules;report the violations.
    In SAP R3 for example,the T/code:pfcg is tailored for access control,while the invoice parking [f-63] is tailored for process control.Using VIRSA,you can address to risks involved both,namely,access and process control.This is an example of how DSS can help in Risk integration.
    In these tools,we have an Engine for building the rules-based on this we build the rules.These rules are stored in a table.when a transaction-for which we have built a rule - takes place,the system compares the rules VS actuals.The inconsistencies if any are reported as violations.
    Hope this helps.
    Regards,
    Ramesh

Maybe you are looking for

  • How do I transfer Voice Memos from my iPhone 5 to my PC?

    Hi! I recently got an iPhone 5 and I have a bunch of Voice Memos on it already. I already tried syncing the voice memos on iTunes, but when I go and try, it was ask me "Would you like to copy these voice memos to your iTunes library?", I would click

  • How to display data in pageframe

    Hi to all, This is my problem. I have created a form with a Pageframe. The pageframe has 2 pages, List and Details. The table used in order to populate the form is like this: CODE VARCHAR2(10); DESC1 VARCHAR2(40); DESC2 VARCHAR2(40); PERC1 NUMBER(7,2

  • Show channels with own time channel and different length in one 3D graph

    Hi, How can i show channels with own time channel and different length in one 3D graph? My consideration looks like this, but i didn't found a solution with acceptable performance. ( i have many channels to merge and many data in them) i have 4 Chann

  • How to change charset into extended set?

    Hi, my server is setup with en_US.iso8859-1, I would necessity to change this set to get a special accented chars, such as "�,�,�,�" and so on. In practice, I would change this charset to it_IT.iso8859-15. I tried to change var locale, such as LC_* b

  • Printer won't install on Windows 7 Business edition

    I bought this today and I went to install it via the disc. The installation stopped me and told me I had the wrong operating system when surely Windows 7 Buisness edition should be supported?  Is there a way around this or do I need to buy another op