It wasn't, not when someone pulled out in front of me at about 50mph and I was shading 140.....if there'd been anything in the lane inside of me, I'd have clipped it as my rear end started swinging about like crazy under heavy braking
You'd think I'd have grown up by now On 25 May 2012 20:54, Steve Kradel <[email protected]> wrote: > It looks like the closest approximation in US English is "divided > highway," although this does not strictly imply anything about access > limitations, vehicle requirements, or clearances. > > Whether trying to race an M6 down a divided highway is a good idea, is > another matter... > > --Steve > > On Fri, May 25, 2012 at 3:21 PM, Maglinger, Paul <[email protected]> > wrote: > > http://en.wikipedia.org/wiki/Dual_carriageway > > > > > > > > > > > > From: Rankin, James R [mailto:[email protected]] > > Sent: Friday, May 25, 2012 1:53 PM > > > > > > To: NT System Admin Issues > > Subject: Re: Is there a way... > > > > > > > > Dunno what the US term is for it. A road with two lanes on each side that > > isn't a motorway, i.e. Not subject to traffic prohibitions, no crash > > barriers, not subject to clearway restrictions, etc. > > > > ---Blackberried > > > > ________________________________ > > > > From: Micheal Espinola Jr <[email protected]> > > > > Date: Fri, 25 May 2012 11:47:46 -0700 > > > > To: NT System Admin Issues<[email protected]> > > > > ReplyTo: "NT System Admin Issues" <[email protected] > > > > > > Subject: Re: Is there a way... > > > > > > > > You guys are still riding in carriages? > > > > -- > > Espi > > > > > > > > > > > > On Fri, May 25, 2012 at 11:37 AM, Rankin, James R <[email protected] > > > > wrote: > > > > Giving my other half a lift to the pub. I just got into severe trouble > with > > her for racing a BMW M6 all the way down the dual carriageway. I get to > > babysit now and calm down :-) > > > > ---Blackberried > > > > ________________________________ > > > > From: Jonathan Link <[email protected]> > > > > Date: Fri, 25 May 2012 14:27:21 -0400 > > > > To: NT System Admin Issues<[email protected]> > > > > ReplyTo: "NT System Admin Issues" <[email protected] > > > > > > Subject: Re: Is there a way... > > > > > > > > On the way to the pub? > > > > On Fri, May 25, 2012 at 2:03 PM, Rankin, James R <[email protected]> > > wrote: > > > > I am probably mistaken as I am in the car :-o > > > > ---Blackberried > > > > ________________________________ > > > > From: "Rankin, James R" <[email protected]> > > > > Date: Fri, 25 May 2012 17:55:35 +0000 > > > > To: NT System Admin Issues<[email protected]> > > > > ReplyTo: [email protected] > > > > Subject: Re: Is there a way... > > > > > > > > It is parsing the output again with the second For command to tidy it up > > > > > > > > ---Blackberried > > > > ________________________________ > > > > From: David Lum <[email protected]> > > > > Date: Fri, 25 May 2012 17:50:39 +0000 > > > > To: NT System Admin Issues<[email protected]> > > > > ReplyTo: "NT System Admin Issues" <[email protected] > > > > > > Subject: RE: Is there a way... > > > > > > > > OK thanks. How is it not picking up the “bytes” or “time” instead? > > > > > > > > From: Rankin, James R [mailto:[email protected]] > > Sent: Friday, May 25, 2012 10:27 AM > > To: NT System Admin Issues > > Subject: Re: Is there a way... > > > > > > > > Yes, The specified delimiter is an = sign. You can specify the delimiter > or > > use the default (is the default a space?) > > > > You can echo the output out if you want to check what you're picking up > > > > ---Blackberried > > > > ________________________________ > > > > From: David Lum <[email protected]> > > > > Date: Fri, 25 May 2012 17:04:47 +0000 > > > > To: NT System Admin Issues<[email protected]> > > > > ReplyTo: "NT System Admin Issues" <[email protected] > > > > > > Subject: RE: Is there a way... > > > > > > > > The MAP-WS.txt is the data collection point > > > > > > > > How the heck does that tokens line work? I get that it is stepping > through > > the “Reply from 4.2.2.3: bytes=32 time=24ms TTL=53“ line, but how the > hell > > is it picking out the 5th entry and dropping off “time=” part? Is that > what > > the delims line is doing? > > > > > > > > Dave > > > > > > > > From: Crawford, Scott [mailto:[email protected]] > > Sent: Thursday, May 24, 2012 4:15 PM > > To: NT System Admin Issues > > Subject: RE: Is there a way... > > > > > > > > Why are you using MAP-WS_Results.txt? Just as a data collection point or > do > > you possibly need more info from it later besides the 4 things you > mention? > > If the only thing you want at the end is your master list in a text > file, I > > would parse the data during each command. Something like this, maybe? > > > > > > > > for /f “tokens=1-5” %%i in (‘FILEVER > > "%SystemRoot%\system32\Macromed\Flash\Flash*.ocx"’) do set > FlashVersion=%%m > > > > for /f "tokens=1-7 delims== " %i in ('ping -n 1 4.2.2.3 ^| find /i > "reply"') > > do set PingTime=%o > > > > echo %ComputerName%,%FlashVersion%,%PingTime% > > > > > > > > From: David Lum [mailto:[email protected]] > > Sent: Thursday, May 24, 2012 4:47 PM > > To: NT System Admin Issues > > Subject: RE: Is there a way... > > > > > > > > CMD only. > > > > > > > > Sorry I should have included more info. The commands I am already running > > are: > > > > > > > > FILEVER "%SystemRoot%\system32\Macromed\Flash\Flash*.ocx" /A /D >> > > "b:\wsdata\MAP-WS_Results.txt" > > > > Echo. >> "b:\wsdata\MAP-WS_Results.txt" > > > > ping -n 1 4.2.2.3 | find /i "reply" >> "b:\wsdata\MAP-WS_Results.txt" > > > > > > > > So what you saw was the contents of MAP-WS_Results.txt. > > > > > > > > Ultimately I’m looking to have say, 50 machines run that batch file and > end > > up with something like this in a .TXT/.CSV > > > > *** > > > > Machine name, OS, Flash version, ping > > > > JOEBOB-XP, Windows XP, 11.2.202.235,24ms > > > > MARYLOUWIN7,Windows 7,10.0.1,23ms > > > > *** > > > > > > > > From: Michael B. Smith [mailto:[email protected]] > > Sent: Thursday, May 24, 2012 2:13 PM > > To: NT System Admin Issues > > Subject: RE: Is there a way... > > > > > > > > BAT/CMD only? Or is PowerShell an option? > > > > > > > > From: David Lum [mailto:[email protected]] > > Sent: Thursday, May 24, 2012 5:08 PM > > To: NT System Admin Issues > > Subject: Is there a way... > > > > > > > > In batch to take this output: > > > > --- > > > > W32i DLL ENU 11.2.202.235 shp flash32_11_2_202_235.ocx > > > > > > > > Reply from 4.2.2.3: bytes=32 time=24ms TTL=53 > > > > --- > > > > And end up with this in a .TXT file? > > > > --- > > 11.2.202.235 , 24ms > > > > --- > > > > > > > > I’m wondering if a FOR loop can be leveraged? > > > > David Lum > > Systems Engineer // NWEATM > > Office 503.548.5229 // Cell (voice/text) 503.267.9764 > > > > > > ~ Finally, powerful endpoint security that ISN'T a resource hog! ~ > ~ <http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/> ~ > > --- > To manage subscriptions click here: > http://lyris.sunbelt-software.com/read/my_forums/ > or send an email to [email protected] > with the body: unsubscribe ntsysadmin > > -- http://appsensebigot.blogspot.co.uk IMPORTANT INFORMATION/DISCLAIMER I certainly don't have time to monitor the content of e-mail sent and received via this account for the purposes of ensuring compliance with anyone's policies and procedures. I am pretty sure that somewhere in UK legislation there is some politically-correct drivel that stipulates I must never send or store e-mails or attachments that are obscene, indecent, sexist, racist, defamatory, abusive, in breach of copyright, encrypted, amusing, overly long, slightly opinionated, anonymous, likely to harm animals or hurt the feelings of an as-yet-unspecified or as-yet-nonexistent minority (such as extraterrestrial eggplants). Emails of this nature sent in or out of this account may be intercepted and stopped by the system, but it's a long shot. This being the UK, even if I was prosecuted for breach of said email guidelines, I'd probably walk with a suspended sentence anyway, but if I'd forgotten to pay my car insurance, I'd most certainly be hung, drawn and quartered. I am not responsible for any changes made to the message after it has been sent, in more or less the same way that cyclozine manufacturers aren't responsible for drug addicts mixing it with methadone and overdosing, so I'm glad I cleared the confusion up there nice and early. Where opinions are expressed, they are not necessarily mine. However, I don't make a habit of expressing other people's opinions for them, so you shouldn't take that statement as an indication that I am in the business of providing an opinion-expressing service. In the event that I did, this discourse would provide no guarantee that I would do it anyway, but I don't, so I won't. This e-mail and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you are not the intended addressee, or the person responsible for delivering it to them, aside from the fact that you've clearly got some level of unauthorised access to their account or are at least engaged in some sort of fraud, I'm obliged to tell you that may not copy, forward disclose or otherwise use it or any part of it in any way. To do so may be unlawful, and as you're already breaking the law, I am sure that bombshell makes you quake in your boots and turn yourself over to law enforcement immediately. If you receive this e-mail by mistake, please advise the sender immediately. That would be me, and as I am clearly prone to sending emails to completely the wrong person, I should instantly be stripped of my status as a technical consultant and sent to do something more becoming of my stupidity, such as appearing on Big Brother, the X Factor or "insert country name here"'s Got Talent. ~ Finally, powerful endpoint security that ISN'T a resource hog! ~ ~ <http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/> ~ --- To manage subscriptions click here: http://lyris.sunbelt-software.com/read/my_forums/ or send an email to [email protected] with the body: unsubscribe ntsysadmin
