I have written an installation class that extends Installer and overrides afterInstall, but I'm getting a null pointer exception. How can I got about debugging my class?
|
|
I use EventLog.WriteEntry("source", "message"), and check the EventLog when installing. Maybe not optimal, but works for me :) |
||
|
|
|
|
Something that is handy for hard to debug sections of code is
Will throw a breakpoint to be caught by an installed debugger (or remote debugger if installed). Used it to debug really tricky areas such as service start/stop etc. |
||
|
|
|
|
attach the installer process to Visual studio in Debug->Processes->Attach or CTRL + ALT + P set the breakpoint and you should be able to go |
||
|
|
|
|
build a VM, install Visual studio, make a copy of it (or create a differencing Virtual HDD) and run the installer under the debugger under the VM. That is what I would do (but I'm no expert). |
||
|
