I'm trying to delete a directory through the command line on a 2003/XP
machine. Del, Delete, and Erase all work on single files- but I can't delete
a directory- without having the Y/N prompt. And I want to script it. The /y
switch doesn't work. And google doesn't know- anyone have a clue?

K

Re: OT- XP delete directories by Neil

Neil
Thu Jun 24 11:32:27 CDT 2004

"Kat" <mistyNOSPAM@NOSPAMflynt.org> wrote in
news:#isKJigWEHA.1764@TK2MSFTNGP10.phx.gbl:

> I'm trying to delete a directory through the command line on a 2003/XP
> machine. Del, Delete, and Erase all work on single files- but I can't
> delete a directory- without having the Y/N prompt. And I want to
> script it. The /y switch doesn't work. And google doesn't know- anyone
> have a clue?
>
> K
>
>
>

have you tried RD? offline...

--
Neil MCNGP #30
"you'd do what, to who, for how many biscuits?"

Re: OT- XP delete directories by Neil

Neil
Thu Jun 24 11:40:29 CDT 2004

"Kat" <mistyNOSPAM@NOSPAMflynt.org> wrote in
news:#isKJigWEHA.1764@TK2MSFTNGP10.phx.gbl:

> I'm trying to delete a directory through the command line on a 2003/XP
> machine. Del, Delete, and Erase all work on single files- but I can't
> delete a directory- without having the Y/N prompt. And I want to
> script it. The /y switch doesn't work. And google doesn't know- anyone
> have a clue?
>
> K
>
>
>

del *.* /q /f should do you...

--
Neil MCNGP #30
"you'd do what, to who, for how many biscuits?"

Re: OT- XP delete directories by Daniel

Daniel
Thu Jun 24 11:46:17 CDT 2004

If the directory is empty, use RD <dirname>. If it's not empty, you have to
empty it first, I believe. DelTree isn't working.

Just remember those good old DOS 6.0 days!

dwilson
"Kat" <mistyNOSPAM@NOSPAMflynt.org> wrote in message
news:#isKJigWEHA.1764@TK2MSFTNGP10.phx.gbl...
> I'm trying to delete a directory through the command line on a 2003/XP
> machine. Del, Delete, and Erase all work on single files- but I can't
delete
> a directory- without having the Y/N prompt. And I want to script it. The
/y
> switch doesn't work. And google doesn't know- anyone have a clue?
>
> K
>
>



Re: OT- XP delete directories by Kat

Kat
Thu Jun 24 11:54:47 CDT 2004

Deltree, del, and erase don't work. And the Dir isn't empty- has several
levels of files/dir's.

I have found a work around though, seems to work ok.

Thank you Neil:) It was a dumb question, but with 480 open tech calls over
here, I really don't have time to play around with stuff :(

Looking forward to princess :D

"Daniel Wilson" <d.wilson@embtrak.com> wrote in message
news:#kjxDrgWEHA.716@TK2MSFTNGP11.phx.gbl...
> If the directory is empty, use RD <dirname>. If it's not empty, you have
to
> empty it first, I believe. DelTree isn't working.
>
> Just remember those good old DOS 6.0 days!
>
> dwilson
> "Kat" <mistyNOSPAM@NOSPAMflynt.org> wrote in message
> news:#isKJigWEHA.1764@TK2MSFTNGP10.phx.gbl...
> > I'm trying to delete a directory through the command line on a 2003/XP
> > machine. Del, Delete, and Erase all work on single files- but I can't
> delete
> > a directory- without having the Y/N prompt. And I want to script it. The
> /y
> > switch doesn't work. And google doesn't know- anyone have a clue?
> >
> > K
> >
> >
>
>



Re: OT- XP delete directories by Neil

Neil
Thu Jun 24 12:15:56 CDT 2004

"Kat" <mistyNOSPAM@NOSPAMflynt.org> wrote in news:OXNT2vgWEHA.1128
@TK2MSFTNGP10.phx.gbl:

> And the Dir isn't empty- has several
> levels of files/dir's.

in a batch file:
del *.* /s /f /q
rd pathofdir /s /q

--
Neil MCNGP #30
"you'd do what, to who, for how many biscuits?"

Re: OT- XP delete directories by Vigo

Vigo
Thu Jun 24 12:19:30 CDT 2004

"Kat" <mistyNOSPAM@NOSPAMflynt.org> wrote in
news:#isKJigWEHA.1764@TK2MSFTNGP10.phx.gbl:

> I'm trying to delete a directory through the command line on a 2003/XP
> machine. Del, Delete, and Erase all work on single files- but I can't
> delete a directory- without having the Y/N prompt. And I want to
> script it. The /y switch doesn't work. And google doesn't know- anyone
> have a clue?

Um, how about "rd [dirname] /s" ?

The "/s" switch will delete non-empty directories.


--
http://www.vigo-alessi.com/images/products/1362.jpg

Re: OT- XP delete directories by Vigo

Vigo
Thu Jun 24 12:22:09 CDT 2004

"Kat" <mistyNOSPAM@NOSPAMflynt.org> wrote in
news:#isKJigWEHA.1764@TK2MSFTNGP10.phx.gbl:

> I'm trying to delete a directory through the command line on a 2003/XP
> machine.

Oops:

rd [dirname] /s /q to suppress the confirmation prompt, also.


--
http://www.vigo-alessi.com/images/products/1362.jpg

Re: OT- XP delete directories by Spyke

Spyke
Thu Jun 24 12:41:39 CDT 2004

Neil <neilmcse@nospamforyou.com> wrote in
news:Xns951286F22948Aneilmcsehotmailcom@207.46.248.16:

> "Kat" <mistyNOSPAM@NOSPAMflynt.org> wrote in news:OXNT2vgWEHA.1128
> @TK2MSFTNGP10.phx.gbl:
>
>> And the Dir isn't empty- has several
>> levels of files/dir's.
>
> in a batch file:
> del *.* /s /f /q
> rd pathofdir /s /q
>

Or just

rd pathofdir /s/q

--

Cheers,
Spyke

Re: OT- XP delete directories by Jtyc

Jtyc
Thu Jun 24 12:54:27 CDT 2004

> Just remember those good old DOS 6.0 days!

Y'all should just purchase a copy of XTree Gold!



Re: OT- XP delete directories by Neil

Neil
Thu Jun 24 13:27:20 CDT 2004

Spyke <spyke@mailinator.com> wrote in
news:Xns95128B4DDA06Cspykemailinator.com@207.46.248.16:

> Neil <neilmcse@nospamforyou.com> wrote in
> news:Xns951286F22948Aneilmcsehotmailcom@207.46.248.16:
>
>> "Kat" <mistyNOSPAM@NOSPAMflynt.org> wrote in news:OXNT2vgWEHA.1128
>> @TK2MSFTNGP10.phx.gbl:
>>
>>> And the Dir isn't empty- has several
>>> levels of files/dir's.
>>
>> in a batch file:
>> del *.* /s /f /q
>> rd pathofdir /s /q
>>
>
> Or just
>
> rd pathofdir /s/q
>

yup....

--
Neil MCNGP #30
"you'd do what, to who, for how many biscuits?"

Re: OT- XP delete directories by Neil

Neil
Thu Jun 24 13:35:16 CDT 2004

"Jtyc" <jtyc_mcngp@spamblockerbitch!@yahoo.com> wrote in
news:eZqGMRhWEHA.2840@TK2MSFTNGP11.phx.gbl:

> Y'all should just purchase a copy of XTree Gold!

AAAAAAAAAAAAAAAKKKKKKKKKKKKKKK!!!!
memories....
*fuzzy screen image*
<reminisant.wav>
"ok I have to Comp Surf this drive. you need to low level that one"
"can I use DiskManager or am I stuck with debug"
"dunno what controller is that"
"it's an Omti"
"SH!T, yer stuck with debug"
"DOS 3.2 install after?"
"yup and its got the AST Rampage in it so through on the QuarterDeck
thing"
"what QEMM?, what's that for anywho?"
"I dunno, something for big 1-2-3 spreadsheets or something."
<reminisant.wav>
*screen clears*

*shudder*
yeewwwwwwww, that was painful....

--
Neil MCNGP #30
"you'd do what, to who, for how many biscuits?"

Re: OT- XP delete directories by Kat

Kat
Thu Jun 24 13:40:32 CDT 2004

Umm.. What????

"Neil" <neilmcse@nospamforyou.com> wrote in message
news:Xns9512946501A96neilmcsehotmailcom@207.46.248.16...
> "Jtyc" <jtyc_mcngp@spamblockerbitch!@yahoo.com> wrote in
> news:eZqGMRhWEHA.2840@TK2MSFTNGP11.phx.gbl:
>
> > Y'all should just purchase a copy of XTree Gold!
>
> AAAAAAAAAAAAAAAKKKKKKKKKKKKKKK!!!!
> memories....
> *fuzzy screen image*
> <reminisant.wav>
> "ok I have to Comp Surf this drive. you need to low level that one"
> "can I use DiskManager or am I stuck with debug"
> "dunno what controller is that"
> "it's an Omti"
> "SH!T, yer stuck with debug"
> "DOS 3.2 install after?"
> "yup and its got the AST Rampage in it so through on the QuarterDeck
> thing"
> "what QEMM?, what's that for anywho?"
> "I dunno, something for big 1-2-3 spreadsheets or something."
> <reminisant.wav>
> *screen clears*
>
> *shudder*
> yeewwwwwwww, that was painful....
>
> --
> Neil MCNGP #30
> "you'd do what, to who, for how many biscuits?"



Re: OT- XP delete directories by Jtyc

Jtyc
Thu Jun 24 13:44:35 CDT 2004

> Umm.. What????

Stop making us feel old.



Re: OT- XP delete directories by Neil

Neil
Thu Jun 24 13:46:33 CDT 2004

"Kat" <mistyNOSPAM@NOSPAMflynt.org> wrote in news:eLVV7qhWEHA.1468
@TK2MSFTNGP10.phx.gbl:

> Umm.. What????
>

frickin kids....

--
Neil MCNGP #30
"you'd do what, to who, for how many biscuits?"

Re: OT- XP delete directories by Neil

Neil
Thu Jun 24 13:47:19 CDT 2004

"Jtyc" <jtyc_mcngp@spamblockerbitch!@yahoo.com> wrote in
news:eyP9MthWEHA.712@TK2MSFTNGP11.phx.gbl:

>> Umm.. What????
>
> Stop making us feel old.
>
>
>

but don't stop feeling us...

--
Neil MCNGP #30
"you'd do what, to who, for how many biscuits?"

Re: OT- XP delete directories by Spyke

Spyke
Thu Jun 24 13:53:56 CDT 2004

Neil <neilmcse@nospamforyou.com> wrote in
news:Xns9512946501A96neilmcsehotmailcom@207.46.248.16:

> "Jtyc" <jtyc_mcngp@spamblockerbitch!@yahoo.com> wrote in
> news:eZqGMRhWEHA.2840@TK2MSFTNGP11.phx.gbl:
>
>> Y'all should just purchase a copy of XTree Gold!
>
> AAAAAAAAAAAAAAAKKKKKKKKKKKKKKK!!!!
> memories....
> *fuzzy screen image*
> <reminisant.wav>
> "what QEMM?, what's that for anywho?"
> "I dunno, something for big 1-2-3 spreadsheets or something."
> <reminisant.wav>
> *screen clears*
>
> *shudder*
> yeewwwwwwww, that was painful....
>

Sheesh, did you hafta remind me about all that. Now I'm starting to miss
all those countless hours of tweaking an extra byte of memory under 640K
with QEMM..

--

Cheers,
Spyke

Re: OT- XP delete directories by Neil

Neil
Thu Jun 24 14:01:02 CDT 2004

Spyke <spyke@mailinator.com> wrote in
news:Xns9512978EF87B6spykemailinator.com@207.46.248.16:

>
> Sheesh, did you hafta remind me about all that. Now I'm starting to
> miss all those countless hours of tweaking an extra byte of memory
> under 640K with QEMM..
>

then you will LOVE this...

http://www.bricklin.com/visicalc.htm

--
Neil MCNGP #30
"you'd do what, to who, for how many biscuits?"

Re: OT- XP delete directories by Spyke

Spyke
Thu Jun 24 14:13:40 CDT 2004

Neil <neilmcse@nospamforyou.com> wrote in
news:Xns951298C3A17E4neilmcsehotmailcom@207.46.248.16:

> http://www.bricklin.com/visicalc.htm

I remember needing to running Visicalc on our Apple ][e. Oh those were the
days.

--

Cheers,
Spyke

Re: OT- XP delete directories by Neil

Neil
Thu Jun 24 14:19:27 CDT 2004

Spyke <spyke@mailinator.com> wrote in
news:Xns95129AE7F9C2Espykemailinator.com@207.46.248.16:

>
> I remember needing to running Visicalc on our Apple ][e. Oh those
> were the days.

and my //e had.....wait for it....32k of RAM....wait....AND 2 disk
drives...(no drive swappin for me...not to mention my nifty copy of
ProDOS 1.0)

--
Neil MCNGP #30
"you'd do what, to who, for how many biscuits?"

Re: OT- XP delete directories by JaR

JaR
Thu Jun 24 14:31:58 CDT 2004

Neil wrote:
>
> then you will LOVE this...
>
> http://www.bricklin.com/visicalc.htm
>

Oh my Ghod.

Was THAT a trip down memory lane!

Re: OT- XP delete directories by Neil

Neil
Thu Jun 24 14:43:30 CDT 2004

JaR <plentespam@nospamsofthome.net> wrote in news:OKGhoHiWEHA.1656
@TK2MSFTNGP09.phx.gbl:

> Neil wrote:
>>
>> then you will LOVE this...
>>
>> http://www.bricklin.com/visicalc.htm
>>
>
> Oh my Ghod.
>
> Was THAT a trip down memory lane!
>

scary part is that you can download the app and it still works from that
site. all for a honkin 27k file....

--
Neil MCNGP #30
"you'd do what, to who, for how many biscuits?"

Re: OT- XP delete directories by Neil

Neil
Thu Jun 24 14:44:14 CDT 2004

JaR <plentespam@nospamsofthome.net> wrote in news:OKGhoHiWEHA.1656
@TK2MSFTNGP09.phx.gbl:

> Neil wrote:
>>
>> then you will LOVE this...
>>
>> http://www.bricklin.com/visicalc.htm
>>
>
> Oh my Ghod.
>
> Was THAT a trip down memory lane!
>

/ s q y

--
Neil MCNGP #30
"you'd do what, to who, for how many biscuits?"

Re: OT- XP delete directories by JaR

JaR
Thu Jun 24 14:58:35 CDT 2004

Neil wrote:
>
> scary part is that you can download the app and it still works from that
> site. all for a honkin 27k file....
>

I got an old 386 at home I'm tempted to install it on. Just to see it
running on that old 10" orange monochrome monitor.

Time warp.

JaR
Aged Thug

Re: OT- XP delete directories by Neil

Neil
Thu Jun 24 15:08:31 CDT 2004

JaR <plentespam@nospamsofthome.net> wrote in news:esqmgWiWEHA.1368
@TK2MSFTNGP10.phx.gbl:

> I got an old 386 at home I'm tempted to install it on. Just to see it
> running on that old 10" orange monochrome monitor.

Toshiba Laptop T3xxx/5xxx or Compuke potable III?

--
Neil MCNGP #30
"you'd do what, to who, for how many biscuits?"

Re: OT- XP delete directories by Spyke

Spyke
Thu Jun 24 15:23:04 CDT 2004

Neil <neilmcse@nospamforyou.com> wrote in
news:Xns95129BE2F7736neilmcsehotmailcom@207.46.248.16:

> Spyke <spyke@mailinator.com> wrote in
> news:Xns95129AE7F9C2Espykemailinator.com@207.46.248.16:
>
>>
>> I remember needing to running Visicalc on our Apple ][e. Oh those
>> were the days.
>
> and my //e had.....wait for it....32k of RAM....wait....AND 2 disk
> drives...(no drive swappin for me...not to mention my nifty copy of
> ProDOS 1.0)
>

yeup, also had a hole puncher so I could have "double sided" diskettes to
store a whopping 320K on each one

--

Cheers,
Spyke

Re: OT- XP delete directories by JaR

JaR
Thu Jun 24 15:29:05 CDT 2004

Neil wrote:

> JaR <plentespam@nospamsofthome.net> wrote in news:esqmgWiWEHA.1368
> @TK2MSFTNGP10.phx.gbl:
>
>
>>I got an old 386 at home I'm tempted to install it on. Just to see it
>>running on that old 10" orange monochrome monitor.
>
>
> Toshiba Laptop T3xxx/5xxx or Compuke potable III?
>

Why, I'll have you know it's an Eye Bee Em Desktop! 4 megs of RAM & 80
meg HD IIRC. Haven't blown the dust off it in many, many years. I think
it has/had winders installed on it, but it coulda been PCDOS.

JaR

Re: OT- XP delete directories by Neil

Neil
Thu Jun 24 15:34:11 CDT 2004

Spyke <spyke@mailinator.com> wrote in
news:Xns9512A6ABDD307spykemailinator.com@207.46.248.16:

> hole puncher

standard fare for the // series...

"...and wrap your disks in tinfoil so that they wont become corrupt"

yikes...

--
Neil MCNGP #30
"you'd do what, to who, for how many biscuits?"

Re: OT- XP delete directories by Ken

Ken
Thu Jun 24 15:35:29 CDT 2004

"JaR" <plentespam@nospamsofthome.net> wrote in message
news:uTZcjniWEHA.1128@TK2MSFTNGP10.phx.gbl...
> Why, I'll have you know it's an Eye Bee Em Desktop! 4 megs of RAM & 80
> meg HD IIRC. Haven't blown the dust off it in many, many years. I think
> it has/had winders installed on it, but it coulda been PCDOS.
>

sounds like one of the boxes we have here

--

KB - MCNGP "silent thug" #26

first initial last name AT hotmail DOT com



Re: OT- XP delete directories by Neil

Neil
Thu Jun 24 15:36:09 CDT 2004

JaR <plentespam@nospamsofthome.net> wrote in news:uTZcjniWEHA.1128
@TK2MSFTNGP10.phx.gbl:

> Eye Bee Em Desktop!

IBM - Installed By Mistake

(10 inch monitor? TEENIE)

--
Neil MCNGP #30
"you'd do what, to who, for how many biscuits?"

Re: OT- XP delete directories by Spyke

Spyke
Thu Jun 24 15:49:31 CDT 2004

Neil <neilmcse@nospamforyou.com> wrote in
news:Xns9512A88ECCC97neilmcsehotmailcom@207.46.248.16:

> Spyke <spyke@mailinator.com> wrote in
> news:Xns9512A6ABDD307spykemailinator.com@207.46.248.16:
>
>> hole puncher
>
> standard fare for the // series...
>
> "...and wrap your disks in tinfoil so that they wont become corrupt"
>
> yikes...
>

BTDT in my last place of employment. They shipped diskettes cross Canada
wrapped in foil then in a plastic bag. And they probably still do to this
day ... lol

--

Cheers,
Spyke

Re: OT- XP delete directories by Rick

Rick
Thu Jun 24 16:06:19 CDT 2004

> frickin kids....
>
> --
> Neil MCNGP #30
> "you'd do what, to who, for how many biscuits?"

Sad thing is I knew every item he listed and experienced them all. Not
always a pleasant experience I might add

Rick



Re: OT- XP delete directories by nerd32768

nerd32768
Thu Jun 24 16:47:12 CDT 2004

"Ken Briscoe" <youcant@sendmespam.com> wrote in message
news:uWs4BriWEHA.3492@TK2MSFTNGP10.phx.gbl...
> "JaR" <plentespam@nospamsofthome.net> wrote in message
> news:uTZcjniWEHA.1128@TK2MSFTNGP10.phx.gbl...
> > Why, I'll have you know it's an Eye Bee Em Desktop! 4 megs of RAM & 80
> > meg HD IIRC. Haven't blown the dust off it in many, many years. I think
> > it has/had winders installed on it, but it coulda been PCDOS.
> >
>
> sounds like one of the boxes we have here
>
> --
>
> KB - MCNGP "silent thug" #26
>
> first initial last name AT hotmail DOT com
>

I still have a Working original IBM PC

of course it's been through some mods.....



Re: OT- XP delete directories by nerd32768

nerd32768
Thu Jun 24 16:56:28 CDT 2004

"Neil" <neilmcse@nospamforyou.com> wrote in message
news:Xns9512964F1E0FEneilmcsehotmailcom@207.46.248.16...
> "Kat" <mistyNOSPAM@NOSPAMflynt.org> wrote in news:eLVV7qhWEHA.1468
> @TK2MSFTNGP10.phx.gbl:
>
> > Umm.. What????
> >
>
> frickin kids....
>
> --
> Neil MCNGP #30
> "you'd do what, to who, for how many biscuits?"

What about us?



Re: OT- XP delete directories by JaR

JaR
Thu Jun 24 17:23:55 CDT 2004

nerd32768 wrote:
> I still have a Working original IBM PC

> of course it's been through some mods.....
>
>

Really? An 8088? What mods does it have? An acoustic coupler?

JaR

Re: OT- XP delete directories by BratŪ

Brat®
Thu Jun 24 17:32:04 CDT 2004

old farts?

--
Sue MCNGP #69
Proud member since April 8, 2002
"nerd32768" <brin{removethis}sons@spymac.com> wrote in message
news:%231TvbYjWEHA.716@TK2MSFTNGP11.phx.gbl...
> "Neil" <neilmcse@nospamforyou.com> wrote in message
> news:Xns9512964F1E0FEneilmcsehotmailcom@207.46.248.16...
> > "Kat" <mistyNOSPAM@NOSPAMflynt.org> wrote in news:eLVV7qhWEHA.1468
> > @TK2MSFTNGP10.phx.gbl:
> >
> > > Umm.. What????
> > >
> >
> > frickin kids....
> >
> > --
> > Neil MCNGP #30
> > "you'd do what, to who, for how many biscuits?"
>
> What about us?
>
>



Re: OT- XP delete directories by nerd32768

nerd32768
Thu Jun 24 18:09:44 CDT 2004

"JaR" <plentespam@nospamsofthome.net> wrote in message
news:%23wWsunjWEHA.1652@TK2MSFTNGP09.phx.gbl...
> nerd32768 wrote:
> > I still have a Working original IBM PC
>
> > of course it's been through some mods.....
> >
> >
>
> Really? An 8088? What mods does it have? An acoustic coupler?
>
> JaR

upgraded to a 386
I think it has 4 megs of ram
full expansion unit and everything.
original monitor
voice synthesis card --|use for
modem---------------|answering machine
Dos 6.22

pretty old


I also bought a working beta deck the other day too.....(the old days before
I was born)



OT- XP delete directories by Andy

Andy
Thu Jun 24 18:12:56 CDT 2004

Kat wrote
>I'm trying to delete a directory through the command line
on a 2003/XP
>machine. Del, Delete, and Erase all work on single files-
but I can't delete
>a directory- without having the Y/N prompt. And I want to
script it. The /y
>switch doesn't work. And google doesn't know- anyone have
a clue?
>

rd /s /q <folder_name>

HTH

Andy

Re: OT- XP delete directories by Neil

Neil
Thu Jun 24 18:47:50 CDT 2004

"Rick" <Rick@na.com> wrote in news:usB#S7iWEHA.1656@TK2MSFTNGP09.phx.gbl:

>> frickin kids....
>>
>> --
>> Neil MCNGP #30
>> "you'd do what, to who, for how many biscuits?"
>
> Sad thing is I knew every item he listed and experienced them all. Not
> always a pleasant experience I might add
>
> Rick
>
>
>

pull up a rocker and we can discuss it here at the old folks home...

--
Neil MCNGP #30
"you'd do what, to who, for how many biscuits?"

Re: OT- XP delete directories by Neil

Neil
Thu Jun 24 18:48:26 CDT 2004

"nerd32768" <brin{removethis}sons@spymac.com> wrote in news:#1TvbYjWEHA.716
@TK2MSFTNGP11.phx.gbl:

> What about us?

13 year olds...furrfu

--
Neil MCNGP #30
"you'd do what, to who, for how many biscuits?"

Re: OT- XP delete directories by Neil

Neil
Thu Jun 24 18:49:18 CDT 2004

"Brat®" <likeIwouldtellyou@inyourdreams.com> wrote in news:EDICc.63613
$Np3.2958595@ursa-nb00s0.nbnet.nb.ca:

> old farts?

am not...

--
Neil MCNGP #30
"you'd do what, to who, for how many biscuits?"

Re: OT- XP delete directories by Neil

Neil
Thu Jun 24 18:51:37 CDT 2004

"nerd32768" <brin{removethis}sons@spymac.com> wrote in news:ufFnXBkWEHA.204
@TK2MSFTNGP10.phx.gbl:

> .(the old days before
> I was born)
>

i hate you

--
Neil MCNGP #30
"you'd do what, to who, for how many biscuits?"

Re: OT- XP delete directories by Neil

Neil
Thu Jun 24 18:50:54 CDT 2004

JaR <plentespam@nospamsofthome.net> wrote in news:#wWsunjWEHA.1652
@TK2MSFTNGP09.phx.gbl:

> nerd32768 wrote:
>> I still have a Working original IBM PC
>
>> of course it's been through some mods.....
>>
>>
>
> Really? An 8088? What mods does it have? An acoustic coupler?
>
> JaR
>

turbo card (6Mhz)

--
Neil MCNGP #30
"you'd do what, to who, for how many biscuits?"

Re: OT- XP delete directories by Ken

Ken
Fri Jun 25 08:10:03 CDT 2004

"Neil" <neilmcse@nospamforyou.com> wrote in message
news:Xns9512C95236884neilmcsehotmailcom@207.46.248.16...
> "nerd32768" <brin{removethis}sons@spymac.com> wrote in
news:#1TvbYjWEHA.716
> @TK2MSFTNGP11.phx.gbl:
>
> > What about us?
>
> 13 year olds...furrfu

Is nerd really 13? Nerd, are you 13? I just find that hard to believe.
Although I guess kids are curious, and he may have stumbled across usenet in
his wanderings.

--

KB - MCNGP "silent thug" #26

first initial last name AT hotmail DOT com



Re: OT- XP delete directories by Ken

Ken
Fri Jun 25 08:11:04 CDT 2004

"Neil" <neilmcse@nospamforyou.com> wrote in message
news:Xns9512C9BDD97DFneilmcsehotmailcom@207.46.248.16...
>
> turbo card (6Mhz)

That's quite possibly the funniest thing I've ever read.

--

KB - MCNGP "silent thug" #26

first initial last name AT hotmail DOT com



Re: OT- XP delete directories by nerd32768

nerd32768
Fri Jun 25 08:27:45 CDT 2004

> Nerd, are you 13?

YES
I am 13, it is not a lie. my ISP provided me with a Usenet server, and I was
wanting to get some information from newsgroups before I got my MCP from
reading a couple of books. I am also very strange. I had pi memorized to the
25th digit when I was 11, and I got my A+ and Net+ when I was 12

Nerd32768, A+, Network+,



Re: OT- XP delete directories by kpg

kpg
Fri Jun 25 08:32:30 CDT 2004


"nerd32768" <brin{removethis}sons@spymac.com> wrote in message
news:%23XDz0grWEHA.2176@TK2MSFTNGP11.phx.gbl...
> # Name resolution details: file://c:\temp\132177.htm (6/25/2004 8:30:15
AM) #
> > Nerd, are you 13?
>
> YES
> I am 13, it is not a lie. my ISP provided me with a Usenet server, and I
was
> wanting to get some information from newsgroups before I got my MCP from
> reading a couple of books. I am also very strange. I had pi memorized to
the
> 25th digit when I was 11, and I got my A+ and Net+ when I was 12
>
> Nerd32768, A+, Network+,
>
>

I'm not falling for it. The last time I believed someone was
13 on the Internet it got ugly real fast.

Besides, every one knows, only fat, bald middle age white
guys are on the Internet.

kp "I Should Know" g





Re: OT- XP delete directories by nerd32768

nerd32768
Fri Jun 25 08:45:17 CDT 2004

> I'm not falling for it.

believe the truth



Re: OT- XP delete directories by billLASTINIT

billLASTINIT
Fri Jun 25 08:26:55 CDT 2004

Ken Briscoe wrote:
> "Neil" <neilmcse@nospamforyou.com> wrote in message
> news:Xns9512C9BDD97DFneilmcsehotmailcom@207.46.248.16...
>>
>> turbo card (6Mhz)
>
> That's quite possibly the funniest thing I've ever read.

Which is especially silly since he could have just bought an IBM AT which
ran at 6Mhz without a turbo card.

"The 80286 is brain dead." Bill Gates

--
Fris "I loved my AT" bee®, MCNGP #13

The MCNGP Team - We're here to help!
http://www.mcngp.tk

Certaholics
http://groups.yahoo.com/group/certaholics


Re: OT- XP delete directories by Consultant

Consultant
Fri Jun 25 08:51:29 CDT 2004

ewww, you mean to tell us you were cruising for 13 year olds, only to have
your heart crushed to find out it was really a 300 pound, 47 year old man in
stained briefs? sick.


"kpg" <ipost@thereforeiam.com> wrote in message
news:OR6bwjrWEHA.3740@TK2MSFTNGP12.phx.gbl...
>
> "nerd32768" <brin{removethis}sons@spymac.com> wrote in message
> news:%23XDz0grWEHA.2176@TK2MSFTNGP11.phx.gbl...
> > # Name resolution details: file://c:\temp\132177.htm (6/25/2004 8:30:15
> AM) #
> > > Nerd, are you 13?
> >
> > YES
> > I am 13, it is not a lie. my ISP provided me with a Usenet server, and I
> was
> > wanting to get some information from newsgroups before I got my MCP from
> > reading a couple of books. I am also very strange. I had pi memorized to
> the
> > 25th digit when I was 11, and I got my A+ and Net+ when I was 12
> >
> > Nerd32768, A+, Network+,
> >
> >
>
> I'm not falling for it. The last time I believed someone was
> 13 on the Internet it got ugly real fast.
>
> Besides, every one knows, only fat, bald middle age white
> guys are on the Internet.
>
> kp "I Should Know" g
>
>
>
>



Re: OT- XP delete directories by Spyke

Spyke
Fri Jun 25 08:54:17 CDT 2004

Frisbee® <billLASTINIT@dasi-software.com> wrote in news:#uEWhtrWEHA.3084
@TK2MSFTNGP10.phx.gbl:

> Ken Briscoe wrote:
>> "Neil" <neilmcse@nospamforyou.com> wrote in message
>> news:Xns9512C9BDD97DFneilmcsehotmailcom@207.46.248.16...
>>>
>>> turbo card (6Mhz)
>>
>> That's quite possibly the funniest thing I've ever read.
>
> Which is especially silly since he could have just bought an IBM AT which
> ran at 6Mhz without a turbo card.
>
> "The 80286 is brain dead." Bill Gates
>

Not all that sill considering the turbo card probably only cost him $1,000
instead of $4,000 for a new AT.

--

Cheers,
Spyke

Re: OT- XP delete directories by billLASTINIT

billLASTINIT
Fri Jun 25 08:56:18 CDT 2004

nerd32768 wrote:
>> Nerd, are you 13?
>
> YES
> I am 13, it is not a lie. my ISP provided me with a Usenet server,
> and I was wanting to get some information from newsgroups before I
> got my MCP from reading a couple of books. I am also very strange. I
> had pi memorized to the 25th digit when I was 11, and I got my A+ and
> Net+ when I was 12
>
> Nerd32768, A+, Network+,

Here's a way to memorize pi to 31 digits:

Sir, I bear a rhyme excelling
In mystic force, and magic spelling
Celestial sprites elucidate
All my own striving can't relate
Or locate they who can cogitate
And so finally terminate.
Finis

--
Fris "How I wish I could calculate pi" bee®, MCNGP #13

The MCNGP Team - We're here to help!
http://www.mcngp.tk

Certaholics
http://groups.yahoo.com/group/certaholics


Re: OT- XP delete directories by nerd32768

nerd32768
Fri Jun 25 09:08:32 CDT 2004

>Not all that sill considering the turbo card probably only cost him $1,000
> instead of $4,000 for a new AT.

how old can you be?!
Arts are OLD. not quite as old as the PC though...
the first computer I ever used was a dual processor capable 486 that had
one 75mhz processor installed. 16 megs of ram, EISA, 2 scsi drives

Intel proprietary case and mobo



Re: OT- XP delete directories by nerd32768

nerd32768
Fri Jun 25 09:21:27 CDT 2004

"nerd32768" <brin{removethis}sons@spymac.com> wrote in message
news:O%23zBn3rWEHA.1368@TK2MSFTNGP10.phx.gbl...
> >Not all that sill considering the turbo card probably only cost him
$1,000
> > instead of $4,000 for a new AT.
>
> how old can you be?!
> Arts are OLD. not quite as old as the PC though...
> the first computer I ever used was a dual processor capable 486 that had
> one 75mhz processor installed. 16 megs of ram, EISA, 2 scsi drives
>
> Intel proprietary case and mobo
>
>

correction- ATs are old, OE spell check is annoying



Re: OT- XP delete directories by kpg

kpg
Fri Jun 25 09:27:19 CDT 2004


"nerd32768" <brin{removethis}sons@spymac.com> wrote in message
news:uFWh1%23rWEHA.212@TK2MSFTNGP12.phx.gbl...
> # Name resolution details: file://c:\temp\132218.htm (6/25/2004 9:26:54
AM) #
> "nerd32768" <brin{removethis}sons@spymac.com> wrote in message
> news:O%23zBn3rWEHA.1368@TK2MSFTNGP10.phx.gbl...
> > >Not all that sill considering the turbo card probably only cost him
> $1,000
> > > instead of $4,000 for a new AT.
> >
> > how old can you be?!
> > Arts are OLD. not quite as old as the PC though...
> > the first computer I ever used was a dual processor capable 486 that had
> > one 75mhz processor installed. 16 megs of ram, EISA, 2 scsi drives
> >
> > Intel proprietary case and mobo
> >
> >
>
> correction- ATs are old, OE spell check is annoying
>
>

You know damn right.



Re: OT- XP delete directories by Neil

Neil
Fri Jun 25 11:02:11 CDT 2004

"kpg" <ipost@thereforeiam.com> wrote in news:OR6bwjrWEHA.3740
@TK2MSFTNGP12.phx.gbl:

>
> Besides, every one knows, only fat, bald middle age white
> guys are on the Internet.
>

WHO YOU CALLIN BALD!!!!

--
Neil MCNGP #30
"you'd do what, to who, for how many biscuits?"

Re: OT- XP delete directories by Neil

Neil
Fri Jun 25 11:04:09 CDT 2004

Frisbee® <billLASTINIT@dasi-software.com> wrote in news:#uEWhtrWEHA.3084
@TK2MSFTNGP10.phx.gbl:

> ran at 6Mhz without a turbo card.

but you could swap it with an 8Mhz crystal to make it go zoom-zoom....

--
Neil MCNGP #30
"you'd do what, to who, for how many biscuits?"

Re: OT- XP delete directories by nerd32768

nerd32768
Fri Jun 25 11:10:44 CDT 2004

> WHO YOU CALLIN BALD!!!!
you



Re: OT- XP delete directories by Neil

Neil
Fri Jun 25 11:21:05 CDT 2004

"nerd32768" <brin{removethis}sons@spymac.com> wrote in
news:O#zBn3rWEHA.1368@TK2MSFTNGP10.phx.gbl:

> the first computer I ever used was a dual processor capable 486

you are 13..

--
Neil MCNGP #30
"you'd do what, to who, for how many biscuits?"

Re: OT- XP delete directories by billLASTINIT

billLASTINIT
Fri Jun 25 11:23:37 CDT 2004

nerd32768 wrote:
>> WHO YOU CALLIN BALD!!!!
> you

Yeah, you just wait you young whippersnapper.

Check out your mother's side of the family. Any bald men there? Your
grandpa maybe?

I'll check back in about 10-15 years and we'll see if you're a baldy, too.

--
Fris "It's not a bald spot, it's a solar panel for a sex machine" bee®,
MCNGP #13

The MCNGP Team - We're here to help!
http://www.mcngp.tk

Certaholics
http://groups.yahoo.com/group/certaholics


Re: OT- XP delete directories by Neil

Neil
Fri Jun 25 11:33:46 CDT 2004

"nerd32768" <brin{removethis}sons@spymac.com> wrote in
news:eTfU57sWEHA.3200@TK2MSFTNGP09.phx.gbl:

>> WHO YOU CALLIN BALD!!!!
> you
>
>

*tosses full head of hair*

you don't know me very well then do you.

(yeah it's greying, but it's all still there)
--
Neil MCNGP #30
"you'd do what, to who, for how many biscuits?"

Re: OT- XP delete directories by JaR

JaR
Fri Jun 25 11:57:48 CDT 2004

On Fri, 25 Jun 2004 08:32:30 -0500, kpg extemporised:
>
> Besides, every one knows, only fat, bald middle age white guys are on the
> Internet.
>

WHO YOU CALLIN'... uh, well...ummm,

Nevermind.