any way to reset everything to defults?

dq101

Registered
How would i reset my mac to defaults but not delete any apps or updates just settings and such?
 
There are many, many "defaults" spread out across the entire system. There is no one, master command you can execute to reset everything back to it's default settings.

Most applications store their preferences in .plist files, usually located in either /Library/Preferences or ~/Library/Preferences. If you wish to reset an application to its default preference settings, you would simply remove the corresponding .plist file from one of those directories.

What is the exact problem you're having?
 
Open (launch, run) 'Terminal' (in the '/Applications/Utilities/' folder), and enter ...

sudo rm -rf /Library/Preferences/ $HOME/Library/Preferences/; mkdir /Library/Preferences/ $HOME/Library/Preferences/

... (as a single line of code) and press the <return> key. When prompted for a 'password', enter the current administrator's password.

Yes, (mass) destruction is just that simple.
 
.. or you could just create a new user. Fresh, default, and you have your old account backed up.
 
Back
Top