Prev: Repost: Signed catalog file giving me "can't verify publisher" err
Next: DTM failed "Verify WDF Coinstaller Version for KMDF"
From: rogero on 9 Sep 2010 08:19 On Sep 8, 7:21 pm, Senthil <sanasent...(a)gmail.com> wrote: > Thank you for all your comments. But at this point nothing is working. > Scripting doesn't work either as suggested by Scott. Kind of > frustrating, but I guess I can live with it. > Senthil Try a space before the semicolon. Strange but true... Roger.
From: rogero on 9 Sep 2010 08:22 > Try a space before the semicolon. Post in haste, repent at leisure... The above avoids the syntax error but the subsequent command doesn't seem to work properly. Sorry for the noise. Roger.
From: Scott Noone on 9 Sep 2010 08:25 If you do that the .cls will work but everything else on the line will be ignored. -scott -- Scott Noone Consulting Associate OSR Open Systems Resources, Inc. http://www.osronline.com http://twitter.com/analyzev "rogero" <roger.orr(a)gmail.com> wrote in message news:9d9ad3d4-6f16-4683-80e1-a3a76c92ff4c(a)t7g2000vbj.googlegroups.com... > On Sep 8, 7:21 pm, Senthil <sanasent...(a)gmail.com> wrote: >> Thank you for all your comments. But at this point nothing is working. >> Scripting doesn't work either as suggested by Scott. Kind of >> frustrating, but I guess I can live with it. >> Senthil > > Try a space before the semicolon. > Strange but true... > > Roger.
From: rogero on 9 Sep 2010 08:43 On Sep 9, 1:25 pm, "Scott Noone" <sno...(a)osr.com> wrote: > If you do that the .cls will work but everything else on the line will be > ignored. > > -scott > > -- > Scott Noone > Consulting Associate > OSR Open Systems Resources, Inc.http://www.osronline.comhttp://twitter.com/analyzev > > "rogero" <roger....(a)gmail.com> wrote in message > > news:9d9ad3d4-6f16-4683-80e1-a3a76c92ff4c(a)t7g2000vbj.googlegroups.com... > > > > > On Sep 8, 7:21 pm, Senthil <sanasent...(a)gmail.com> wrote: > >> Thank you for all your comments. But at this point nothing is working. > >> Scripting doesn't work either as suggested by Scott. Kind of > >> frustrating, but I guess I can live with it. > >> Senthil > > > Try a space before the semicolon. > > Strange but true... > > > Roger.- Hide quoted text - > > - Show quoted text - Anyone know why .cls is special? Other dot commands I try seem happy with the space: windbg -c " .asm ; dd eip l1 " cmd.exe roger.
From: Scott Noone on 9 Sep 2010 09:46
"rogero" <roger.orr(a)gmail.com> wrote in message news:e86fb688-d365-42a2-b768- > Anyone know why .cls is special? Other dot commands I try seem happy > with the space: > > windbg -c " .asm ; dd eip l1 " cmd.exe ..cls is a WinDBG GUI command, not a debugger engine command. So, it's stripped out by the GUI code and not passed along to DbgEng. The list of other commands like this is here: http://msdn.microsoft.com/en-us/library/ff560137(VS.85).aspx -scott -- Scott Noone Consulting Associate OSR Open Systems Resources, Inc. http://www.osronline.com http://twitter.com/analyzev "rogero" <roger.orr(a)gmail.com> wrote in message news:e86fb688-d365-42a2-b768-bb69b4f7fcea(a)a19g2000vbi.googlegroups.com... > On Sep 9, 1:25 pm, "Scott Noone" <sno...(a)osr.com> wrote: >> If you do that the .cls will work but everything else on the line will be >> ignored. >> >> -scott >> >> -- >> Scott Noone >> Consulting Associate >> OSR Open Systems Resources, >> Inc.http://www.osronline.comhttp://twitter.com/analyzev >> >> "rogero" <roger....(a)gmail.com> wrote in message >> >> news:9d9ad3d4-6f16-4683-80e1-a3a76c92ff4c(a)t7g2000vbj.googlegroups.com... >> >> >> >> > On Sep 8, 7:21 pm, Senthil <sanasent...(a)gmail.com> wrote: >> >> Thank you for all your comments. But at this point nothing is working. >> >> Scripting doesn't work either as suggested by Scott. Kind of >> >> frustrating, but I guess I can live with it. >> >> Senthil >> >> > Try a space before the semicolon. >> > Strange but true... >> >> > Roger.- Hide quoted text - >> >> - Show quoted text - > > Anyone know why .cls is special? Other dot commands I try seem happy > with the space: > > windbg -c " .asm ; dd eip l1 " cmd.exe > > roger. |