Can I disable Auto Update (for example, while running tests)?
The IDE often checks for updates on startup. This behavior may not be desired in some cases; for example, when running tests on the GUI, because they can slow the application down or potentially change its behavior from what you expected. In order to prevent the Auto Update check, run the application with the netbeans.full.hack system property set to true. For example, use -J-Dnetbeans.full.hack=true on the command line. Setting this property has some other side-effects. Among them: • The Exit IDE dialog which checks for running processes is not shown on shutdown. • When first starting on a user directory, you are not prompted to • accept a license • register the product • submit usage statistics • The RSS feed in the Start Page window is suppressed. (In NetBeans 6.7, the Start Page will also not be shown by default). Functional tests using NbModuleSuite get this property set automatically. So do unit tests using NbTestCase (though they would rarely need it anyway). Applies to: NetBean