- Backup Quicken data file. Copy files (there should be five) to a temporary, e.g. My Documents\quicken_bak.
- Install Quicken 2005. Note if you have to reinstall you might want to delete C:\Documents and Settings\All Users\Application Data\Intuit\Quicken to reset the installation.
- When asked, download updates.
- When asked, run Quicken.
- Select the “I am new to Quicken” option because using the other option and trying to restore from backup doesn’t work.
- Select the “I want to choose a different name and location.” option and select My Documents\quicken\my_money.qdf or something like that.
- Exit the Quicken Setup.
- If you’re not asked to register then go to Help > Register but this is important, create a new Quicken.com account for this installation, otherwise you won’t be able to synchronize with your bank accounts. See this article for more information.
- Select File > Restore Backup File and choose the QDF file you downloaded before in Step 1. When asked if you wish to overwrite your current file say yes.
Category Archives: Miscellaneous
Reply
QuickBooks Change Name on Invoice
Shell Tricks
To search for all files that contain a certain string use find with the -exec flag. For example:
find . -name "*.haystack" -type f -exec grep -l needle "{}" ";"
grep -l
flag tells grep to output only the file name if there is a match.
"{}"
is replaced iteratively by the file names found.
";"
terminates the command.
Speed up Adobe Reader 6
This is an article on how to speed up the excruciatingly slow Adobe Reader 6.
How to use liposuction to repair Adobe Reader 6
A probably better way than what is proposed in this article is to move all the unused plugins from the plug_ins
directory to the Optional
directory.
Or you could simply just upgrade to Adobe Reader 7, which is much faster. 🙂
Configuring Bugzilla
- Modify
<bugzilla>/localconfig
to have the operating systems, severities, platforms,etc. that you want. - Modify
<bugzilla>/template/en/default/bug/create/create.html.tmpl
to have the look you want for creating bugs. - Modify
<bugzilla>/template/en/default/bug/edit.html.tmpl
to have the look you want for editing bugs. - Other files that could be considered for modification under the directory
<bugzilla>/template/en/default/
:bug/show-multiple.html.tmpl
– list bugs in long formatglobal/field-descs.none.tmpl
– field descriptionslist/edit-multiple.html.tmpl
– edit multiple bugslist/table.html.tmpl
– list bugs in short formatpages/fields.html.tmpl
– description of fieldspages/bug-writing.html.tmpl
– help page for writing bugssearch/form.html.tmpl
– help page for searching for bugssearch/search-help.html.tmpl
– help page for searching for bugs
- Go to the
<bugzilla>
directory and runperl checksetup.pl
.
To learn more, Template Customization.