```
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 **
ok I will check source code thanks alot :)
and I have a suggestion! as you know windbg has many command line options.
WinDbg Command-Line Options
https://msdn.microsoft.com/en-us/library/windows/hardware/ff561306(v=vs.85).aspx
so I hope pykd has feature that receiving arbitrary debug options just like windbg.
example:
startProcess(processName, windbStyleOptions="-g -hd -o -G")
how do you think about it?