```
from pykd import *
startProcess(r"notepad")
go()
go()
```
is there any usable option to ignore initial breakpoint? i don't want to use go() twice
and i wonder that can i use windbg/cdb command line options for pykd.
Comments: ** Comment from web user: hdarwin **
from pykd import *
startProcess(r"notepad")
go()
go()
```
is there any usable option to ignore initial breakpoint? i don't want to use go() twice
and i wonder that can i use windbg/cdb command line options for pykd.
Comments: ** Comment from web user: hdarwin **
//kernelnet
thank you that's what i want to do but if i want to pass to debugger "-bd, -o" options how can i do that???