How To Delete Osx Lifetime Download History?

Mark Lynch

Registered
There are several articles online that discuss deleting the Quarintie file that logs every signle download on your computer from a couple of years ago.

On a machine with Yosemite the Terminal window returns a "No Such Table" error.

sqlite3 ~/Library/Preferences/com.apple.LaunchServices.QuarantineEventsV* 'select LSQuarantineDataURLString from LSQuarantineEvent'

Is this an operator error on my part of does Yosemite no longer do this? I would like to be able to clear this table from time to time.

Thanks

MArk
 
I just ran that command on my machine running 10.10.5. It spat out around 2300 lines with no errors or warnings.
 
I just ran that command on my machine running 10.10.5. It spat out around 2300 lines with no errors or warnings.
Hi

HI

I am opening the Terminal window and simply cutting and pasting that exact command in and I get:

Error: no such table: LSQuarantineEvent

Any suggestions? It could be me but it seems like a pretty straightforward process.

Mark
 
That command works good for me in Yosemite, after a simple cut and paste into the terminal.
You could look to see if you actually have that file that it wants to use.
~/Library/Preferences/com.apple.LaunchServices.QuarantineEventsV2
The number after the V might be different, but the wildcard * should take care of that.
Or, maybe you don't have a V2, and the file name ends at .QuarantineEvents

I think it's likely that simply trashing the com.apple.LaunchServices.QuarantineEvents and any other file with com.apple.LaunchServices.QuarantineEventsV(somenumber) would not cause you any great difficulty, other than asking you the next time an app is launched. It would record that "transaction", and should just be a "one time only" response.
Restart your Mac after, if you decide to trash those files.
 
Those of us on Apple computers (and hackintoshes) need to be aware that our computers can betray us. There is a logging feature built into OSX that keeps track of your download history independent of your browser settings. If you are like me and value your privacy, here's how to see what your computer has to say about your activities.

(Step 1) Navigate to your "applications" folder, and find the "utilities" folder, inside you will find the "Terminal" program.

Screen_Shot_2013_01_15_at_8_54_22_PM.png


(Step 2) Launch Terminal and you should see something similiar to this:

Screen_Shot_2013_01_15_at_8_55_46_PM.png


(Step 3)Type (or copy and paste) the following syntax in Terminal and hit enter:
sqlite3 ~/Library/Preferences/com.apple.LaunchServices.QuarantineEventsV* 'select LSQuarantineDataURLString from LSQuarantineEvent'
Screen_Shot_2013_01_15_at_8_55_32_PM.png

This will cause the computer to display a list of the file names and origins of every download you have done.

To clear this list from memory, type (or copy and paste) the following syntax in Terminal and hit enter:
sqlite3 ~/Library/Preferences/com.apple.LaunchServices.QuarantineEventsV* 'delete from LSQuarantineEvent'
Screen_Shot_2013_01_15_at_8_56_28_PM.png

To check that the logs were cleared, repeat Step 3 and look for no results to show this time.

Source: http://www.xpgamesaves.com/topic/61327-how-to-viewdelete-download-history-on-osx/
 
Back
Top