Force OS X to do its cleaning

I understand that OS X does daily weekly and monthly tasks in the small hours so it is unobtrusive.
I used to leave my iMac on all night but after working out how much I could save by turning all my computers off when not in use, the iMac is now only on for a maximum 15 hours a day.
How can I force OS X to do the tasks it misses? I think I read somewhere that it does them automatically when it is on if it has missed them a lot, but I would like to have control just in case. Preferably a way to just do all at once.
Regards

Click here for information. The note about the tasks not running if the computer is asleep isn't applicable to Mac OS X 10.5.
(41383)

Similar Messages

  • FB4 Implicit Paging: Any way to force current page  to refresh its values from server?

    I have a datagrid that I am using the new Flash Builder 4 implicit paging feature on.  Currently if a user clicks a grid item and modifies its values in a popup i want to force the current page of the datagrid to retrieve those values from my server again.
    Here is the scenario I want to reslove:
    Say I have a 1000 records to be shown in the grid but I have utilized implicit paging and only show 100 records at a time.  Say the user has scrolled down and they are now seeing the page containing records 300-399.  If the user changes a value concerning one of the records in 300-399 I want that "page" to be refreshed from the server side data. 
    Now i have tested updating the data directly in the grid but have run into an issue.  Say I change a value displayed in the grid on the client side, now if I get data from the server again it will only reflect what i changed earlier and not what is actually coming from the server.

    Well i figured out how to refresh the grid with:
    service.getDataManager(service.DATA_MANAGER_FUNCTION).refresh();
    Anyone know how to just refresh only one page out of a all the implicit pages?

  • I installed mackeeper and used its Cleaning feature, and ever since then my macbook has been restarting on its own. Can anyone tell me how to fix this problem.

    Hi,
    I installed mackeeper four days ago, and I used the cleaning feature. Ever since, my macbook pro has been restarting on its own. I was wondering if their was a way to fix the problem that it caused and remove it safely.

    https://discussions.apple.com/docs/DOC-3036

  • Forcing ComboBox to lose its focus when isPopupVisible()==false

    Hi,
    I'm in a situation where I need to force my comboBox to lose its focus, in a case when user clicks the comboBox to pull down the popup but does not click any value inside the comboBox popup. In such a situation I need to force the comboBox to lose its focus.
    I looked for some method like setFocus in comboBox api, but did not find anything such.
    appreciated..

    import javax.swing.*;
    import javax.swing.table.*;
    public class JTableComboSSCCE extends javax.swing.JFrame {
        JTable table;
        DefaultTableModel model;
        public JTableComboSSCCE() {
            initComponents();
            createTable();
        public void createTable() {
            model = new DefaultTableModel();
            model.addColumn("Name");
            model.addRow(new Object[]{"Julia"});
            model.addRow(new Object[]{"Sara"});
            model.addRow(new Object[]{"David"});
            model.addRow(new Object[]{"Mauricio"});
            model.addRow(new Object[]{"Tina"});
            table = new JTable(model);
            scrollPane.setViewportView(table);
            TableColumn firstColumn = table.getColumnModel().getColumn(0);
            JComboBox comboBox = new JComboBox();
            comboBox.addItem("Snowboarding");
            comboBox.addItem("Teaching high school");
            comboBox.addItem("None");
            firstColumn.setCellEditor(new DefaultCellEditor(comboBox));
        void updateTable() {
            model.removeRow(4);
        private void initComponents() {
            scrollPane = new javax.swing.JScrollPane();
            jButton1 = new javax.swing.JButton();
            jLabel1 = new javax.swing.JLabel();
            jLabel2 = new javax.swing.JLabel();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            addWindowListener(new java.awt.event.WindowAdapter() {
                public void windowClosed(java.awt.event.WindowEvent evt) {
                    formWindowClosed(evt);
            jButton1.setText("Update Table");
            jButton1.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton1ActionPerformed(evt);
            jLabel1.setText("1- Click the last row, but do not pick any value, then click outside the table");
            jLabel2.setText("2- Click Update Table button, then click any row to edit cell");
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addComponent(scrollPane, javax.swing.GroupLayout.DEFAULT_SIZE, 670, Short.MAX_VALUE)
                .addGroup(layout.createSequentialGroup()
                    .addGap(21, 21, 21)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING, false)
                        .addComponent(jLabel2, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                        .addComponent(jLabel1, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, 469, Short.MAX_VALUE))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 52, Short.MAX_VALUE)
                    .addComponent(jButton1)
                    .addGap(29, 29, 29))
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addGroup(layout.createSequentialGroup()
                            .addGap(24, 24, 24)
                            .addComponent(jButton1)
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED))
                        .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
                            .addContainerGap(37, Short.MAX_VALUE)
                            .addComponent(jLabel1)
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)))
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                    .addComponent(jLabel2)
                    .addGap(15, 15, 15)
                    .addComponent(scrollPane, javax.swing.GroupLayout.PREFERRED_SIZE, 214, javax.swing.GroupLayout.PREFERRED_SIZE))
            pack();
        private void formWindowClosed(java.awt.event.WindowEvent evt) {
            this.dispose();
        private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
            updateTable();
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new JTableComboSSCCE().setVisible(true);
        private javax.swing.JButton jButton1;
        private javax.swing.JLabel jLabel1;
        private javax.swing.JLabel jLabel2;
        private javax.swing.JScrollPane scrollPane;
    }

  • Clean install Snow Leopard

    I have a 2006 24'' iMac. It now has serious graphic issues and is not usable at all. I understand this is a known issue witht this model and that it has something to do with overheating and CPU/videocard malfunction. I have tried different OSX versions, but there are problems with all of them.
    I do not use this iMac anymore, and i am selling it to guy as a "defect computer" (he is fully aware of that the iMac is non functional).
    The iMac has now Lion installed on it. The one I am selling it to, has asked me to install Snow Leopard from a retail DVD I have used on this iMac earlier before shipping the machine.
    I have done clean installation of different OSX versions many times before, and this is not a problem.
    BUT: How can I do this installation of Snow Leopard without doing the final setup of the OS. I would like that when my buyer start up the iMac, he gets the "Welcome" screen where he sets up an admin account on the computer.
    Remember I have to be able to eject the SL DVD for shipping the iMac.

    What the buyer is instructing you to do is incorrect and violates Apple's license.
    To correctly sell or transfer ownership of a Mac, even to someone in your family, you should follow these instructions.
    Disregard anything you are unable to accomplish. For example, Step 6 does not apply because your Mac shipped with discs. The buyer will need those discs. If you no longer have them, replacements can be obtained from Apple for a nominal fee.
    Refer to What to do before selling or giving away your Mac
    If you enabled FileVault, disable it in System Preferences > Security & Privacy.
    "Deauthorize" your iTunes account. Same for Audible if you have one.
    System Preferences > iCloud > de-select "Back to My Mac" and "Find my Mac".
    Sign out of iCloud. Select "Delete from Mac" when it appears.
    Next: Remove all your personal information by completely erasing the Mac's internal storage.
    If your Mac shipped with a grey System Install DVD, start your Mac with that disc inserted in the optical drive while holding the c key to boot from it instead of its internal volume, which should be erased before selling it.
    If your Mac did not ship with discs, boot OS X Internet Recovery:
    using three fingers press and hold the following keys: ⌘(command), option, and R.
    With a fourth finger press the power button to turn on the Mac.
    Keep the other three fingers where they are until you see the "spinning globe" icon.
    This method forces the Mac to download its originally installed OS from Apple's servers, which will not require an Apple ID to install.
    Remove any Open Firmware password if you created one: select Firmware Password Utility from the Utilities menu and remove it.
    Select Disk Utility from the Utilities menu.
    Remove any partitions you may have created.
    Select the Mac's hard disk icon, then select the "Erase" tab.
    Select the "Security Options" button and erase the disk.
    The more "securely" you erase the disk, the longer it will take.
    The fastest method is sufficient since all but the most expensive techniques and equipment will be able to recover securely erased data.
    When it finishes, quit Disk Utility.
    Select Install Mac OS X from the Utilities menu.
    An Apple ID will not be required. If a prompt for an Apple ID appears, return to Step 5.
    Do not create any user accounts.
    When it finishes, shut down the computer.
    If you want to install the bundled apps that were included with your Mac, restart by using your Applications DVD if one was included, and install the bundled apps. Apps bundled with newer Macs that shipped without discs cannot be transferred. Its new owner must purchase them from the Mac App Store using his or her own Apple ID.
    If the Mac is being sold to someone outside the family consider the following additional information:
    System Install DVDs that came with your Mac should remain with it forever, and must be included with the sale.
    Consider including your AppleCare certificate if you bought it, printed documentation, even the box if you still have it. AppleCare stays with the equipment and is transferable.
    Execute a bill of sale showing the Mac's serial number.
    Once no longer in your possession, remove the Mac from your devices in My Support Profile.

  • Outlook 2007 .ost file corrupt / scanpst.exe 3-4x daily & 3 to 4 runs before "clean", long term issue - need help on how to repair my .OST FILE once and for all, please...

    I've had many issues with my .ost data file (couple years) with:  very slow going into outlook 2007, scanpst.exe 3-4x before its "clean", and have to run it few times daily.
    No major issues i can pinpoint, but just SLOW, hangs at times, file less than 1GB, IT people just mess it up more, etc.
    NEED some PROFESSIONAL minds to help me get this data file cleaned up once and for all... forever hopefully.
    Any help greatly appreciated.

    Why the need to repair it?
    You could:
    1. Create a new Outook profile a different name and a new ost will be created ( leaving the old one there)
    2. Close up Outlook completely, delete the existing.ost and re-open Outlook to create a new one.
    3. Close Outlook completely and rename the existing .ost and re-open Outlook to create a new one.

  • How can i force the source link to look in current folder? Using dropbox as source location

    My data source is an Excel file located on a dropbox folder which is shared between team members. 
    The report file is also located in the same dropbox folder. 
    My problem is that when other people refreshed the data source they get an error saying that the data source is located on MY local machine even though they have it in their dropbox folder as well. 
    Is it possible to build the link to the data source in a way that forces powerpivot to look in its current folder..? 
    If i just write the file name and refreshes it seems to work, but when reopening the file the url has changed to this and only works on my computer.
    C:\Users\Myname\Dropbox\01 Company\Reports\Report Source Data.xlsx

    Fenixxen,
    Is this still an issue?
    Thanks!
    Ed Price, Power BI & SQL Server Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • [CS3 JS] How to force XMP metadata update for a thumbnail?

    Hi Folks,
    In a JavaScript in Bridge CS3, I'm updating a value in the XMP metadata for a Thumbnail. Later in the script I want to read the updated XMP metadata information from the Thumbnail, but often Bridge hasn't updated the metadata by the time I read it. In other words, my script reads the value prior to the update. I'm guessing there's a caching issue going on.
    I'm new to Bridge scripting, and I am hoping someone here can offer suggestions on how I can (or, even *if* I can) force Bridge to update the XMP metadata cache for a file so that when I read it later in the script it will reflect the recent changes. I've tried using Thumbnail.refresh(), but that doesn't seem to do the trick. I don't mind a slower script, I just want to be able to read the correct value.
    Thanks in advance for any help!
    -- Jim

    Hi David,
    I'm running this script on a MacBook Pro, 2.5GHz, 4GB RAM.
    Here is a sample JSX that shows the issue I'm having:
    #target "bridge-2.0"
    main();
    function main() {
        if( xmpLib == undefined ) {
            var pathToLib = Folder.startup.fsName + "/AdobeXMPScript.framework";
            var libfile = new File( pathToLib );
            var xmpLib = new ExternalObject("lib:" + pathToLib );
        var myValue = "Headline Test";
        var myFilePath = "~/Desktop/TestFile.tif";
        var curHeadlineStr = XMPGetHeadline(myFilePath);
        $.writeln("Headline value: \"" +  curHeadlineStr + "\"");
        XMPWriteHeadline(myFilePath, myValue);
        // *** I would like to refresh the cache here ***
        curHeadlineStr = XMPGetHeadline(myFilePath);
        $.writeln("Headline value: \"" +  curHeadlineStr + "\"");
    function XMPGetHeadline(theFilePath) {
        var thumb = new Thumbnail(File (theFilePath) );
        md = thumb.synchronousMetadata;   
        xmp = new XMPMeta(md.serialize());
        var myHeadlineXMPProp = xmp.getProperty
            (XMPConst.NS_PHOTOSHOP, "Headline", XMPConst.STRING);
        return myHeadlineXMPProp;
    function XMPWriteHeadline(theFilePath, theTextStr){
        var thumb = new Thumbnail(File (theFilePath) );
        md = thumb.synchronousMetadata;   
        xmp = new XMPMeta(md.serialize());
        var myOrigHeadlineXMPProp = xmp.getProperty
            (XMPConst.NS_PHOTOSHOP, "Headline", XMPConst.STRING);
        xmp.deleteProperty(XMPConst.NS_PHOTOSHOP, "Headline");
        xmp.setProperty(XMPConst.NS_PHOTOSHOP, "Headline", theTextStr, 0, XMPConst.STRING);
        var updatedPacket = xmp.serialize
            (XMPConst.SERIALIZE_OMIT_PACKET_WRAPPER | XMPConst.SERIALIZE_USE_COMPACT_FORMAT);
        thumb.metadata = new Metadata(updatedPacket);
    To run this script, in main(), set the myFilePath variable to the path of a file that has an "IPTC Code" "Headline" property.
    This script, when run, sets the "Headline" property value to the value of myValue. After runing the script for the first time, take a look at the console log. You should see that Headline value displayed does not change between the two console entries. My log looks like this after the first run:
      Headline value: "undefined"
      Headline value: "undefined"
    The thing is, the second entry in the console listing, above, was created after the Headline value was set by XMPWriteHeadline(). The two values should be different between the two console entries.
    If you run the script a second time against the same file, you will see that the Headline value does contain the value that was written in the first run of the script--it just took some time to update the cache, I'm guessing. Here's the second run's log:
      Headline value: "Headline Test"
       Headline value: "Headline Test"
    So, what I'm looking for is a way to insert code (where the comment line "//*** I would like to refresh the cache here ***" appears), to force Bridge CS3 to refresh its cache so that when I call XMPGetHeadline() after calling XMPWriteHeadline(), the Headline value will return the value that was just written.
    I hope this is clear enough...
    Thanks!!!!
    -- Jim

  • Facebook hang when adobe flash player is enabled, and doesnt when its not

    Just as title, running facebook will cause firefox completely to hang, untill a "unresponsive script" message pops out after couple of minutes, disabling the flash player will fix this issue but yet again would disable using flash completely (its a bypass, not a solution)
    I'm not having any sort of antivirus, or malware kind of programs installed (though I gave it in depth scan couple of weeks ago and its clean, i dont use anti's anymore because IMO it slows the computer dramaticly, and cause issues.)
    when the "unresponsive script" message pops out, hitting "stop script" will load the site and it will unfreeze, the message itself wont pop that often so it takes a log time ending me to task kill it (because navigating in facebook will cause it to happen again) it feels like it happens just about when the chat loads, but I cant figure it out myself.
    The flash itself works fine @youtube/other kinds of sites,
    note that facebook loads fine on other browsers, such as internet explorer/chrome

    Best is to allow Flash local storage globally and use the defaults.
    See also:
    Flash Website Storage Settings panel:
    *http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager07.html
    Global Storage Settings Panel:
    *http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager03.html

  • I'm scared to death of cleaning my screen!

    Hi, folks - My iMac G5 (iSight) display is starting to collect a bit of dust & fingerprints. But I'm scared to death of using the wrong type of cleaner on this surfce, it looks so finnicky. I can't help but think of all the monitors at work where people have used wet-wipes, etc to clean these types of monitors and are left with those permanent streak-lines, like vacuum-lines in carpet, that never seem to go away once you've done it once.
    What IS the correct solution for cleaning an iMac G5 display, that is more than a dry cloth (for fingerprints/smudges), but isn't going to give me those dreaded permanent streaks?
    Thanks!

    iKlear mentions iMac (All generations) but that has said that for 6 years now and I doubt its the iMac G5 it specificaly means.
    Me? I only EVER use one of those blue Spontex-Microfibre cleaning cloths. Its dry, contains no liquid and cleans the dust from my screens and case of my iMac G5 perfectly. And it's only dust its cleaning too, I NEVER, EVER, EVER touch or let my screen be touched by fingers! So theres no oils to clean. Im not sure if the cloth would take off finger prints to be honest.
    The manual for our iMac G5s says to only use a "damp" (only using water), dust free cloth. So using ANY of these iKlear type products is against Apple's own advice. So if you have fingerprint oils to get off use a damp cloth to answer the original question.

  • Forced Data Plan's

    Why must Verizon force a data plan on its customer's just because they want a nice phone.  I have 5 phones on my plan and its upgrade time.  If I get 3G Multimedia capable phones I must pay for a Data pkg that we do not want or will ever use.  This Data pkg is not used when making a normal calls or texting.  We looked at the Samsung Alias 2 when it orginally cameout and it didnot require a data pkg.  Now that we are ready to buy it suddenly needs a data pkg.  Verizon make the data plan optional or I'm going to take my 5 phones to sprint, along

    Bluedevil_2014 wrote:
    Maybe you know, is there a data charge for Back up Assistant?. I have been told yes and no.
    When you initially download and install backup Assistant to your phone, it uses a small amount of data ($1.99 will be the one time charge if you are on a PAYG plan, or it will be taken from your 25 BM allottment if that is what you have.  It's less than 1 MB though.
    After that, there is no charge for backup assistant when you have a MyVerizon account.  That only makes sense because part of Backup Assistant is to view your contacts, edit them, import and export to CSV files, through your MyVerizon account.  Your contact list is automatically backed up every day based on the schedule you set, and your contacts are always available online, or on a file you can save on your computer.

  • I have a iPhone 4s from Verizon and clean esn but using for other carrier. How can I reset phone setting so I can get us contact setting? (My default contact setting is to Netherland.)

    My contact setting is default for Netherland and want to resync with *228 but because of I'm not active account holder with Verizon, they can't reset it for me.
    I bought it from other people and I checked the ESN , its clean one with no contract.
    What's my option now? Can apple unlock it? I want to use it for GSM carrier. 

    Only Verizon can authorize it to be unlocked.  If they won't, you'll have to sell it to someone who can use it.

  • Force Word to start each document in separate process

    We have 64 bit windows 7 with Office Word 2013. Native word 2013 document starts every document in its own winword.exe process.
    However, if i open a word document created with word 2010 it will reuse an already existing winword.exe process(if it exists).
    Hence, i need to prevent old documents from reusing existing word processes.
    What I know is that you can send the switch “/w” along with the old document to force it to start within its own winword.exe process.
    Though this might be one solution i need another approach to force documents to start within its own process.
    One solution that I have been investigating is to modify the switch in the windows registry in order to force documents to start within its own process.
    So, if you know of any other solution or any other resource that could help me modify the registry, please send me a message
    Br
    /Peter
    Peter

    Hi Peter,
    >> We have 64 bit windows 7 with Office Word 2013. Native word 2013 document starts every document in its own winword.exe process.
    In my test environment (Windows 8.1 + Office 2013), the document created by Word 2013 also use the existing winword.exe process.
    >> One solution that I have been investigating is to modify the switch in the windows registry in order to force documents to start within its own process.
    As far as I know, you could add “/w” parameter in registry:
    ”HKEY_CLASSES_ROOT\Word.Document.12\shell\Open\command”
    Hope it will help. By the way, for questions about features for Office Products, I recommend you posting them on
    Technet forums - Microsoft Office.
    Regards,
    Jeffrey
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Cleaning up downloadsoes

    Everytime I download something the downloads box appears and then sits there forever telling me its "cleaning up the files".
    I never goes away and the X option to stop it is greyed out.
    Anyone else have this issue?

    The New update cleared everything up

  • Oracle SQL trim() vs MS Excel clean()

    I have some data being extracted from Oracle 11 db views into CSV files.
    When importing the data into some other system, said other system's data importer crashes.
    I can open the CSV files in MS Excel, apply its clean() function to some columns, paste the values of that, and then the CSV file is a bit smaller, unprintable characters are removed, and data importer in new system is OK.
    Its a cumbersome process.
    I tried Oracle SQL trim() but it doesn't remove all the chars, it seems, that MS Excel clean() function removes.
    Is there a comparable Oracle SQL function that does what [MS Excel clean()|http://office.microsoft.com/en-us/excel-help/clean-HP005209014.aspx] does?
    Edited by: 972095 on Nov 19, 2012 2:35 PM

    I've used: regexp_replace(your_string,'[[:cntrl:]]') for this.
    SQL> declare
      2     s varchar2(30) := chr(10) || 'hello' || chr(10);
      3  begin
      4     dbms_output.put_line('*' || s || '*');
      5     dbms_output.put_line('*' || regexp_replace(s,'[[:cntrl:]]') || '*');
      6  end;
      7  /
    hello
    *hello*
    PL/SQL procedure successfully completed.

Maybe you are looking for

  • Update for iTunes version 11.1.4.62

    Once again tried to install new update for iTunes and once again the version would not install.  Had an error code of MSVCR80.dll is missing.  Another error that stated there was a corrupted file.  Doesn't Apple test their updates?  Third time this h

  • Value Mapping in BPM

    We are using Value Mapping in XI 3.0 in the integration builder under the configuration. Value Mapping is not working during the transformation step in BPM. See help.sap.com under transformation step: http://help.sap.com/saphelp_nw04/helpdata/en/14/8

  • Individual Edit of Dynamic Text?

    I am creating a Flash website and have managed to get the default Flash scroll bar to work with some Dynamic Text. As I have alot of textual content I want to make it look a little more interesting and appealing by editing in - some in bold, some bul

  • Many PCs fail -- object is locked by user BWremote

    Hi friends,   Today many of Process chains failed at process load IP with the following error:object is locked by user BWremote.  repeat is done and chains are okie now .. i want to knw  wht this error occurs and possible precautions not to occur the

  • How do I convert a secquence for emailing?

    I have been searching the old posts for the answer and have not found it. I have a 2:20sec secquence that i want to email potential clients. I assume i will be using quick time conversion or export as quick time movie. but does anyone know a good set