RE: batch route add

2008-06-30 Thread René de Haas
Thanks to both of you, very nice.

You probably already know , but for those who don't you can also redirect 
stderr to a file with 2> .
That way you may not need to copy the text from the window.

-Original Message-
From: Free, Bob [mailto:[EMAIL PROTECTED] 
Sent: Friday, June 27, 2008 10:43 PM
To: NT System Admin Issues
Subject: RE: batch route add

Ah, a man after my own heart, my explorations came up with different
registry paths, I will have to check out yours, it's slightly different
approach but essentially the same result.. 
I love the Autorun...never seen that used in this context before.. I can
ditch my little cmd file I set my prompt with.[1] Thanks!

The other benefit I find, in addition to those you mentioned, is in
logging and documenting things, especially when jumping around
troubleshooting or doing things like schema extensions. I  bump the
buffer up to some huge value, even in some scripts leave everything
echoed to the screen, edit, select all and you have a log for change
management, permanent logs, notifications and/or future reference.

[1] I use %computername%\%userdomain%\%username%$_$D$S$T$_$_$M$P$G right
now but it's infinitely  flexible and fun to play with.

-Original Message-
From: Kurt Buff [mailto:[EMAIL PROTECTED] 
Sent: Friday, June 27, 2008 1:09 PM
To: NT System Admin Issues
Subject: Re: batch route add

For those who RTFM, or do some exploring on their own, it's probably
better to:

Select the cmd window
ALT+CTRL+Space to drop down the options window, or click on the
upper-left corner of the cmd box
Select Properties
Under the options tab mark at least Quick Edit Mode and Edit Mode - I
also like to check Discard Old Duplicates the the Large cursor size
Under layout, put 5000 (or more) in the Screen Buffer Size Height
field - the others will depend on your preferences and screen
resolution

Then make the following registry changes (first line optional, but I
like this prompt) which will give you tab completion, among other
things:

--Start Reg Entry file--
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Command Processor]
"AutoRun"="prompt [%computername%]$S$T$S$D$S$P$S$M$G$+$_#"
"CompletionChar"=dword:0009
"DefaultColor"=dword:
"EnableExtensions"=dword:0001
"PathCompletionChar"=dword:0009

--End Reg Entry File--

you will have a command prompt that looks like this (note that the
cursor follows the '#', and is two lines long):

[KBUFF2003] 11:09:12.80 2007-07-23 C:\ }
#

Note that the date/time formats will vary depending on what your
Regional settings are, as set in the Control Panel. I strongly suggest
setting your time format to HH:mm:ss and your date format to
-MM-DD. This will produce output and displays that sort better and
are less ambiguous, and ultimately more readable, once you get used to
them.

Kurt


On Fri, Jun 27, 2008 at 12:23 PM, Salvador Manzo <[EMAIL PROTECTED]> wrote:
> For those following along at home
> Right click in CMD window
> MARK
> (select area)
> PASTE resulting text.
>
> Alternately
> CMD command > somefile.txt
>
>
> (yes, I'm a Luddite who prefers plain text emails whenever possible)
>
>
> On 6/27/08 12:16 PM, "Bob Free" <[EMAIL PROTECTED]> wrote:
>
>>> In future, perhaps you could embed a standard JPG instead
>>
>> ./rant on
>>
>> Are you serious? How about learn how to use the clipboard to freaking
copy the
>> text from a cmd prompt instead of sending a picture. Major pet peeve
of mine.
>>
>> Sorry to be harsh but that's about as lame as it gets, only thing
worse
>> sending a graphic of a cmd window is sending the entire desktop
...oops,
>> that's what just happened.
>>
>> Besides that, I have gotten screenshots of the desktop, in freaking
multi-MB
>> bitmaps no less from ppl trying to send me a single event from event
viewer. I
>> tell them they need to learn to use the clipboard before I will help
them..or
>> find a new line of work.
>>
>>
>>
>>
>>
>> From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]
>> Sent: Friday, June 27, 2008 11:54 AM
>> To: NT System Admin Issues
>> Cc: NT System Admin Issues
>> Subject: RE: batch route add
>>
>>
>>
>> "Ara Avvali" <[EMAIL PROTECTED]> wrote on 06/26/2008 02:58:00 PM:
>>
>>> Screen shot attachted
>>>
>>> [image removed]
>>
>> For anyone interested, Lotus Notes has no intrinsic view for .PNG
graphics
>> such as this. In future, perhaps you could embed a standard JPG
instead,
>> please? JPGs are much more ubiquitous than .PNGs.
>>
>> Thanks
>
>
> ~ Upgrade to

Re: batch route add

2008-06-27 Thread Kurt Buff
I'm adopting your prompt, with a slight modification - I like my
cursor after the sharp on a separate line - having to begin my typing
so far into the screen, after the prompt, annoys me, as does the extra
CR/LF in the prompt. And, I changed the format of the first line a
bit.

Thus: prompt [%userdomain%\%username% on %computername%]$_$D$S$T$_$P$_#

Nice...

Thanks!

On Fri, Jun 27, 2008 at 1:42 PM, Free, Bob <[EMAIL PROTECTED]> wrote:
> Ah, a man after my own heart, my explorations came up with different
> registry paths, I will have to check out yours, it's slightly different
> approach but essentially the same result..
> I love the Autorun...never seen that used in this context before.. I can
> ditch my little cmd file I set my prompt with.[1] Thanks!
>
> The other benefit I find, in addition to those you mentioned, is in
> logging and documenting things, especially when jumping around
> troubleshooting or doing things like schema extensions. I  bump the
> buffer up to some huge value, even in some scripts leave everything
> echoed to the screen, edit, select all and you have a log for change
> management, permanent logs, notifications and/or future reference.
>
> [1] I use %computername%\%userdomain%\%username%$_$D$S$T$_$_$M$P$G right
> now but it's infinitely  flexible and fun to play with.
>
> -Original Message-
> From: Kurt Buff [mailto:[EMAIL PROTECTED]
> Sent: Friday, June 27, 2008 1:09 PM
> To: NT System Admin Issues
> Subject: Re: batch route add
>
> For those who RTFM, or do some exploring on their own, it's probably
> better to:
>
> Select the cmd window
> ALT+CTRL+Space to drop down the options window, or click on the
> upper-left corner of the cmd box
> Select Properties
> Under the options tab mark at least Quick Edit Mode and Edit Mode - I
> also like to check Discard Old Duplicates the the Large cursor size
> Under layout, put 5000 (or more) in the Screen Buffer Size Height
> field - the others will depend on your preferences and screen
> resolution
>
> Then make the following registry changes (first line optional, but I
> like this prompt) which will give you tab completion, among other
> things:
>
> --Start Reg Entry file--
> Windows Registry Editor Version 5.00
>
> [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Command Processor]
> "AutoRun"="prompt [%computername%]$S$T$S$D$S$P$S$M$G$+$_#"
> "CompletionChar"=dword:0009
> "DefaultColor"=dword:
> "EnableExtensions"=dword:0001
> "PathCompletionChar"=dword:0009
>
> --End Reg Entry File--
>
> you will have a command prompt that looks like this (note that the
> cursor follows the '#', and is two lines long):
>
> [KBUFF2003] 11:09:12.80 2007-07-23 C:\ }
> #
>
> Note that the date/time formats will vary depending on what your
> Regional settings are, as set in the Control Panel. I strongly suggest
> setting your time format to HH:mm:ss and your date format to
> -MM-DD. This will produce output and displays that sort better and
> are less ambiguous, and ultimately more readable, once you get used to
> them.
>
> Kurt
>
>
> On Fri, Jun 27, 2008 at 12:23 PM, Salvador Manzo <[EMAIL PROTECTED]> wrote:
>> For those following along at home
>> Right click in CMD window
>> MARK
>> (select area)
>> PASTE resulting text.
>>
>> Alternately
>> CMD command > somefile.txt
>>
>>
>> (yes, I'm a Luddite who prefers plain text emails whenever possible)
>>
>>
>> On 6/27/08 12:16 PM, "Bob Free" <[EMAIL PROTECTED]> wrote:
>>
>>>> In future, perhaps you could embed a standard JPG instead
>>>
>>> ./rant on
>>>
>>> Are you serious? How about learn how to use the clipboard to freaking
> copy the
>>> text from a cmd prompt instead of sending a picture. Major pet peeve
> of mine.
>>>
>>> Sorry to be harsh but that's about as lame as it gets, only thing
> worse
>>> sending a graphic of a cmd window is sending the entire desktop
> ...oops,
>>> that's what just happened.
>>>
>>> Besides that, I have gotten screenshots of the desktop, in freaking
> multi-MB
>>> bitmaps no less from ppl trying to send me a single event from event
> viewer. I
>>> tell them they need to learn to use the clipboard before I will help
> them..or
>>> find a new line of work.
>>>
>>>
>>>
>>>
>>>
>>> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]
>>> Sent: Friday, June 27, 2008 11:54 AM
>>

RE: batch route add

2008-06-27 Thread Free, Bob
Ah, a man after my own heart, my explorations came up with different
registry paths, I will have to check out yours, it's slightly different
approach but essentially the same result.. 
I love the Autorun...never seen that used in this context before.. I can
ditch my little cmd file I set my prompt with.[1] Thanks!

The other benefit I find, in addition to those you mentioned, is in
logging and documenting things, especially when jumping around
troubleshooting or doing things like schema extensions. I  bump the
buffer up to some huge value, even in some scripts leave everything
echoed to the screen, edit, select all and you have a log for change
management, permanent logs, notifications and/or future reference.

[1] I use %computername%\%userdomain%\%username%$_$D$S$T$_$_$M$P$G right
now but it's infinitely  flexible and fun to play with.

-Original Message-
From: Kurt Buff [mailto:[EMAIL PROTECTED] 
Sent: Friday, June 27, 2008 1:09 PM
To: NT System Admin Issues
Subject: Re: batch route add

For those who RTFM, or do some exploring on their own, it's probably
better to:

Select the cmd window
ALT+CTRL+Space to drop down the options window, or click on the
upper-left corner of the cmd box
Select Properties
Under the options tab mark at least Quick Edit Mode and Edit Mode - I
also like to check Discard Old Duplicates the the Large cursor size
Under layout, put 5000 (or more) in the Screen Buffer Size Height
field - the others will depend on your preferences and screen
resolution

Then make the following registry changes (first line optional, but I
like this prompt) which will give you tab completion, among other
things:

--Start Reg Entry file--
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Command Processor]
"AutoRun"="prompt [%computername%]$S$T$S$D$S$P$S$M$G$+$_#"
"CompletionChar"=dword:0009
"DefaultColor"=dword:
"EnableExtensions"=dword:0001
"PathCompletionChar"=dword:0009

--End Reg Entry File--

you will have a command prompt that looks like this (note that the
cursor follows the '#', and is two lines long):

[KBUFF2003] 11:09:12.80 2007-07-23 C:\ }
#

Note that the date/time formats will vary depending on what your
Regional settings are, as set in the Control Panel. I strongly suggest
setting your time format to HH:mm:ss and your date format to
-MM-DD. This will produce output and displays that sort better and
are less ambiguous, and ultimately more readable, once you get used to
them.

Kurt


On Fri, Jun 27, 2008 at 12:23 PM, Salvador Manzo <[EMAIL PROTECTED]> wrote:
> For those following along at home
> Right click in CMD window
> MARK
> (select area)
> PASTE resulting text.
>
> Alternately
> CMD command > somefile.txt
>
>
> (yes, I'm a Luddite who prefers plain text emails whenever possible)
>
>
> On 6/27/08 12:16 PM, "Bob Free" <[EMAIL PROTECTED]> wrote:
>
>>> In future, perhaps you could embed a standard JPG instead
>>
>> ./rant on
>>
>> Are you serious? How about learn how to use the clipboard to freaking
copy the
>> text from a cmd prompt instead of sending a picture. Major pet peeve
of mine.
>>
>> Sorry to be harsh but that's about as lame as it gets, only thing
worse
>> sending a graphic of a cmd window is sending the entire desktop
...oops,
>> that's what just happened.
>>
>> Besides that, I have gotten screenshots of the desktop, in freaking
multi-MB
>> bitmaps no less from ppl trying to send me a single event from event
viewer. I
>> tell them they need to learn to use the clipboard before I will help
them..or
>> find a new line of work.
>>
>>
>>
>>
>>
>> From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]
>> Sent: Friday, June 27, 2008 11:54 AM
>> To: NT System Admin Issues
>> Cc: NT System Admin Issues
>> Subject: RE: batch route add
>>
>>
>>
>> "Ara Avvali" <[EMAIL PROTECTED]> wrote on 06/26/2008 02:58:00 PM:
>>
>>> Screen shot attachted
>>>
>>> [image removed]
>>
>> For anyone interested, Lotus Notes has no intrinsic view for .PNG
graphics
>> such as this. In future, perhaps you could embed a standard JPG
instead,
>> please? JPGs are much more ubiquitous than .PNGs.
>>
>> Thanks
>
>
> ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
> ~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~
>

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


Re: batch route add

2008-06-27 Thread John Cook
Aren't Ludites a religious cult?! :-)


From: [EMAIL PROTECTED]
To: NT System Admin Issues
Sent: Fri Jun 27 16:27:21 2008
Subject: Re: batch route add

John Cook <[EMAIL PROTECTED]> wrote on 06/27/2008 04:07:14 PM:

> Hair Club?

Club Luddite, the hippest club in town ...

> From: [EMAIL PROTECTED]
> To: NT System Admin Issues
> Sent: Fri Jun 27 16:05:01 2008
> Subject: Re: batch route add
>
> Salvador Manzo <[EMAIL PROTECTED]> wrote on 06/27/2008 03:23:13 PM:
>
> > For those following along at home
> > Right click in CMD window
> > MARK
> > (select area)
> > PASTE resulting text.
> >
> > Alternately
> > CMD command > somefile.txt
> >
> >
> > (yes, I'm a Luddite who prefers plain text emails whenever possible)
>
> A fellow club member! :-) Yeah, I'm olde skool about that myself.

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


Re: batch route add

2008-06-27 Thread Michael . Leone
John Cook <[EMAIL PROTECTED]> wrote on 06/27/2008 04:07:14 PM:

> Hair Club?

Club Luddite, the hippest club in town ...

> From: [EMAIL PROTECTED] 
> To: NT System Admin Issues 
> Sent: Fri Jun 27 16:05:01 2008
> Subject: Re: batch route add 
> 
> Salvador Manzo <[EMAIL PROTECTED]> wrote on 06/27/2008 03:23:13 PM:
> 
> > For those following along at home
> > Right click in CMD window
> > MARK
> > (select area)
> > PASTE resulting text.
> > 
> > Alternately
> > CMD command > somefile.txt
> > 
> > 
> > (yes, I'm a Luddite who prefers plain text emails whenever possible) 
> 
> A fellow club member! :-) Yeah, I'm olde skool about that myself. 

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~

RE: batch route add

2008-06-27 Thread Free, Bob
Thanks...   I agree with your ludditeness, you can join my 
ServerCoreOnly-No-GUI in Server2010 campaign :-)  


Even easier..to me at least is Default|Options-Quick Edit mode. Right click 
becomes paste and left-click/highlight  is copy like in other 
applications. I forget it even works the way you describe most of the time. I 
saved a reg file to my home directory years ago that sets my cmd environment to 
at least the basics I need and run it on every system I use. Just set it all 
the way you want it and export [HKEY_CURRENT_USER\Console] & 
[HKEY_CURRENT_USER\Console\%SystemRoot%_system32_cmd.exe] to a reg file. I do 
the same for my prompt so I can see the UNC/Date/time/system/domain/username in 
all my cmd windows.

 

-Original Message- 
From: Salvador Manzo [mailto:[EMAIL PROTECTED] 
Sent: Friday, June 27, 2008 12:23 PM
To: NT System Admin Issues
Subject: Re: batch route add

For those following along at home
Right click in CMD window
MARK
(select area)
PASTE resulting text.

Alternately
CMD command > somefile.txt


(yes, I'm a Luddite who prefers plain text emails whenever possible)


On 6/27/08 12:16 PM, "Bob Free" <[EMAIL PROTECTED]> wrote:

>> In future, perhaps you could embed a standard JPG instead
> 
> ./rant on
> 
> Are you serious? How about learn how to use the clipboard to freaking copy the
> text from a cmd prompt instead of sending a picture. Major pet peeve of mine.
> 
> Sorry to be harsh but that's about as lame as it gets, only thing worse
> sending a graphic of a cmd window is sending the entire desktop ...oops,
> that's what just happened.
> 
> Besides that, I have gotten screenshots of the desktop, in freaking multi-MB
> bitmaps no less from ppl trying to send me a single event from event viewer. I
> tell them they need to learn to use the clipboard before I will help them..or
> find a new line of work.
> 
> 
> 
> 
> 
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: Friday, June 27, 2008 11:54 AM
> To: NT System Admin Issues
> Cc: NT System Admin Issues
> Subject: RE: batch route add
> 
> 
> 
> "Ara Avvali" <[EMAIL PROTECTED]> wrote on 06/26/2008 02:58:00 PM:
> 
>> Screen shot attachted
>>   
>> [image removed] 
> 
> For anyone interested, Lotus Notes has no intrinsic view for .PNG graphics
> such as this. In future, perhaps you could embed a standard JPG instead,
> please? JPGs are much more ubiquitous than .PNGs.
> 
> Thanks 


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


RE: batch route add

2008-06-27 Thread Barsodi.John
He uses Lotus.  :O :P ;)

 

- John Barsodi

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Friday, June 27, 2008 1:14 PM
To: NT System Admin Issues
Subject: RE: batch route add

 

+1

 

Let's hear it for clean, simple mail messaging!

 



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Friday, June 27, 2008 4:05 PM
To: NT System Admin Issues
Subject: Re: batch route add

 

 

 

 

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~

RE: batch route add

2008-06-27 Thread EricB
+1

 

Let's hear it for clean, simple mail messaging!

 

  _  

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Friday, June 27, 2008 4:05 PM
To: NT System Admin Issues
Subject: Re: batch route add

 

 

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~

Re: batch route add

2008-06-27 Thread Kurt Buff
For those who RTFM, or do some exploring on their own, it's probably better to:

Select the cmd window
ALT+CTRL+Space to drop down the options window, or click on the
upper-left corner of the cmd box
Select Properties
Under the options tab mark at least Quick Edit Mode and Edit Mode - I
also like to check Discard Old Duplicates the the Large cursor size
Under layout, put 5000 (or more) in the Screen Buffer Size Height
field - the others will depend on your preferences and screen
resolution

Then make the following registry changes (first line optional, but I
like this prompt) which will give you tab completion, among other
things:

--Start Reg Entry file--
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Command Processor]
"AutoRun"="prompt [%computername%]$S$T$S$D$S$P$S$M$G$+$_#"
"CompletionChar"=dword:0009
"DefaultColor"=dword:
"EnableExtensions"=dword:0001
"PathCompletionChar"=dword:0009

--End Reg Entry File--

you will have a command prompt that looks like this (note that the
cursor follows the '#', and is two lines long):

[KBUFF2003] 11:09:12.80 2007-07-23 C:\ }
#

Note that the date/time formats will vary depending on what your
Regional settings are, as set in the Control Panel. I strongly suggest
setting your time format to HH:mm:ss and your date format to
-MM-DD. This will produce output and displays that sort better and
are less ambiguous, and ultimately more readable, once you get used to
them.

Kurt


On Fri, Jun 27, 2008 at 12:23 PM, Salvador Manzo <[EMAIL PROTECTED]> wrote:
> For those following along at home
> Right click in CMD window
> MARK
> (select area)
> PASTE resulting text.
>
> Alternately
> CMD command > somefile.txt
>
>
> (yes, I'm a Luddite who prefers plain text emails whenever possible)
>
>
> On 6/27/08 12:16 PM, "Bob Free" <[EMAIL PROTECTED]> wrote:
>
>>> In future, perhaps you could embed a standard JPG instead
>>
>> ./rant on
>>
>> Are you serious? How about learn how to use the clipboard to freaking copy 
>> the
>> text from a cmd prompt instead of sending a picture. Major pet peeve of mine.
>>
>> Sorry to be harsh but that's about as lame as it gets, only thing worse
>> sending a graphic of a cmd window is sending the entire desktop ...oops,
>> that's what just happened.
>>
>> Besides that, I have gotten screenshots of the desktop, in freaking multi-MB
>> bitmaps no less from ppl trying to send me a single event from event viewer. 
>> I
>> tell them they need to learn to use the clipboard before I will help them..or
>> find a new line of work.
>>
>>
>>
>>
>>
>> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
>> Sent: Friday, June 27, 2008 11:54 AM
>> To: NT System Admin Issues
>> Cc: NT System Admin Issues
>> Subject: RE: batch route add
>>
>>
>>
>> "Ara Avvali" <[EMAIL PROTECTED]> wrote on 06/26/2008 02:58:00 PM:
>>
>>> Screen shot attachted
>>>
>>> [image removed]
>>
>> For anyone interested, Lotus Notes has no intrinsic view for .PNG graphics
>> such as this. In future, perhaps you could embed a standard JPG instead,
>> please? JPGs are much more ubiquitous than .PNGs.
>>
>> Thanks
>
>
> ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
> ~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~
>

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


Re: batch route add

2008-06-27 Thread John Cook
Hair Club?


From: [EMAIL PROTECTED]
To: NT System Admin Issues
Sent: Fri Jun 27 16:05:01 2008
Subject: Re: batch route add

Salvador Manzo <[EMAIL PROTECTED]> wrote on 06/27/2008 03:23:13 PM:

> For those following along at home
> Right click in CMD window
> MARK
> (select area)
> PASTE resulting text.
>
> Alternately
> CMD command > somefile.txt
>
>
> (yes, I'm a Luddite who prefers plain text emails whenever possible)

A fellow club member! :-) Yeah, I'm olde skool about that myself.

--
Michael Leone
Network Administrator, ISM
Philadelphia Housing Authority
2500 Jackson St
Philadelphia, PA 19145
Tel:  215-684-4180
Cell: 215-252-0143
<mailto:[EMAIL PROTECTED]>

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


Re: batch route add

2008-06-27 Thread Michael . Leone
Salvador Manzo <[EMAIL PROTECTED]> wrote on 06/27/2008 03:23:13 PM:

> For those following along at home
> Right click in CMD window
> MARK
> (select area)
> PASTE resulting text.
> 
> Alternately
> CMD command > somefile.txt
> 
> 
> (yes, I'm a Luddite who prefers plain text emails whenever possible)

A fellow club member! :-) Yeah, I'm olde skool about that myself.

-- 
Michael Leone
Network Administrator, ISM
Philadelphia Housing Authority
2500 Jackson St
Philadelphia, PA 19145
Tel:  215-684-4180
Cell: 215-252-0143


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~   ~

RE: batch route add

2008-06-27 Thread Michael . Leone
"Free, Bob" <[EMAIL PROTECTED]> wrote on 06/27/2008 03:16:38 PM:

> > In future, perhaps you could embed a standard JPG instead
> 
> ./rant on
> 
> Are you serious? 

I am. Since I couldn't see the image, I had no idea what it was.

But yes, a copy and paste from the command prompt window would have been 
easier.


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~   ~

RE: batch route add

2008-06-27 Thread Michael . Leone
"Rod Trent" <[EMAIL PROTECTED]> wrote on 06/27/2008 02:57:32 PM:

> I?ve noticed that png files are becoming more and more a common 
> default these days.  Anyone else notice that?

I've gotten 2, in the last 2 days. That's how I found out that Loathsome 
Notes won't display them by default. I had to view page source, to see 
what the embedded image was, and then request a JPG copy, so I could see 
the silly thing.


> 
> I suspect Lotus Notes may support them a few years from now.  J

Optimist.

> 
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
> Sent: Friday, June 27, 2008 2:54 PM
> To: NT System Admin Issues
> Cc: NT System Admin Issues
> Subject: RE: batch route add
> 
> 
> 
> "Ara Avvali" <[EMAIL PROTECTED]> wrote on 06/26/2008 02:58:00 PM:
> 
> > Screen shot attachted 
> > 
> > [image removed] 
> 
> For anyone interested, Lotus Notes has no intrinsic view for .PNG 
> graphics such as this. In future, perhaps you could embed a standard
> JPG instead, please? JPGs are much more ubiquitous than .PNGs. 
> 
> Thanks 
> 
> 

> 
> 

> 

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~

Re: batch route add

2008-06-27 Thread Micheal Espinola Jr
Amen brother!

And to further the virtual spanking...  PNG was the correct image
format to use for a screen shot (although, as Bob rightfully pointed
out - it shouldn't have been used at all).  JPGs are for photos.  This
says it all:

http://en.wikipedia.org/wiki/JPG#Recommended_usage


Since, IIRC ~1996, PNG has been the intended successor to GIF.


On Fri, Jun 27, 2008 at 3:16 PM, Free, Bob <[EMAIL PROTECTED]> wrote:
>> In future, perhaps you could embed a standard JPG instead
>
> ./rant on
>
> Are you serious? How about learn how to use the clipboard to freaking copy 
> the text from a cmd prompt instead of sending a picture. Major pet peeve of 
> mine.
>
> Sorry to be harsh but that's about as lame as it gets, only thing worse 
> sending a graphic of a cmd window is sending the entire desktop ...oops, 
> that's what just happened.
>
> Besides that, I have gotten screenshots of the desktop, in freaking multi-MB 
> bitmaps no less from ppl trying to send me a single event from event viewer. 
> I tell them they need to learn to use the clipboard before I will help 
> them..or find a new line of work.
>
>
>
>
>
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: Friday, June 27, 2008 11:54 AM
> To: NT System Admin Issues
> Cc: NT System Admin Issues
> Subject: RE: batch route add
>
>
>
> "Ara Avvali" <[EMAIL PROTECTED]> wrote on 06/26/2008 02:58:00 PM:
>
>> Screen shot attachted
>>
>> [image removed]
>
> For anyone interested, Lotus Notes has no intrinsic view for .PNG graphics 
> such as this. In future, perhaps you could embed a standard JPG instead, 
> please? JPGs are much more ubiquitous than .PNGs.
>
> Thanks
>
> ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
> ~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~
>




-- 
ME2

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


Re: batch route add

2008-06-27 Thread Salvador Manzo
For those following along at home
Right click in CMD window
MARK
(select area)
PASTE resulting text.

Alternately
CMD command > somefile.txt


(yes, I'm a Luddite who prefers plain text emails whenever possible)


On 6/27/08 12:16 PM, "Bob Free" <[EMAIL PROTECTED]> wrote:

>> In future, perhaps you could embed a standard JPG instead
> 
> ./rant on
> 
> Are you serious? How about learn how to use the clipboard to freaking copy the
> text from a cmd prompt instead of sending a picture. Major pet peeve of mine.
> 
> Sorry to be harsh but that's about as lame as it gets, only thing worse
> sending a graphic of a cmd window is sending the entire desktop ...oops,
> that's what just happened.
> 
> Besides that, I have gotten screenshots of the desktop, in freaking multi-MB
> bitmaps no less from ppl trying to send me a single event from event viewer. I
> tell them they need to learn to use the clipboard before I will help them..or
> find a new line of work.
> 
> 
> 
> 
> 
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: Friday, June 27, 2008 11:54 AM
> To: NT System Admin Issues
> Cc: NT System Admin Issues
> Subject: RE: batch route add
> 
> 
> 
> "Ara Avvali" <[EMAIL PROTECTED]> wrote on 06/26/2008 02:58:00 PM:
> 
>> Screen shot attachted
>>   
>> [image removed] 
> 
> For anyone interested, Lotus Notes has no intrinsic view for .PNG graphics
> such as this. In future, perhaps you could embed a standard JPG instead,
> please? JPGs are much more ubiquitous than .PNGs.
> 
> Thanks 


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


RE: batch route add

2008-06-27 Thread Free, Bob
> In future, perhaps you could embed a standard JPG instead

./rant on

Are you serious? How about learn how to use the clipboard to freaking copy the 
text from a cmd prompt instead of sending a picture. Major pet peeve of mine.

Sorry to be harsh but that's about as lame as it gets, only thing worse sending 
a graphic of a cmd window is sending the entire desktop ...oops, that's what 
just happened.

Besides that, I have gotten screenshots of the desktop, in freaking multi-MB 
bitmaps no less from ppl trying to send me a single event from event viewer. I 
tell them they need to learn to use the clipboard before I will help them..or 
find a new line of work. 





From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Friday, June 27, 2008 11:54 AM
To: NT System Admin Issues
Cc: NT System Admin Issues
Subject: RE: batch route add



"Ara Avvali" <[EMAIL PROTECTED]> wrote on 06/26/2008 02:58:00 PM:

> Screen shot attachted 
>   
> [image removed] 

For anyone interested, Lotus Notes has no intrinsic view for .PNG graphics such 
as this. In future, perhaps you could embed a standard JPG instead, please? 
JPGs are much more ubiquitous than .PNGs. 

Thanks 

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


RE: batch route add

2008-06-27 Thread Chris Blair
Great, just another benefit of moving to Notes. Man I can't wait! ;)

 

 

 



From: Rod Trent [mailto:[EMAIL PROTECTED] 
Sent: Friday, June 27, 2008 1:58 PM
To: NT System Admin Issues
Subject: RE: batch route add

 

I've noticed that png files are becoming more and more a common default
these days.  Anyone else notice that?

 

I suspect Lotus Notes may support them a few years from now.  :-)

 

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Friday, June 27, 2008 2:54 PM
To: NT System Admin Issues
Cc: NT System Admin Issues
Subject: RE: batch route add

 



"Ara Avvali" <[EMAIL PROTECTED]> wrote on 06/26/2008 02:58:00 PM:

> Screen shot attachted 
>   
> [image removed] 

For anyone interested, Lotus Notes has no intrinsic view for .PNG
graphics such as this. In future, perhaps you could embed a standard JPG
instead, please? JPGs are much more ubiquitous than .PNGs. 

Thanks 

 

 



 This e-mail is confidential and may be privileged and/or proprietary. If you 
are not the intended recipient, any review, disclosure, copying, or use of 
this e-mail is prohibited.
~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~

Re: batch route add

2008-06-27 Thread Micheal Espinola Jr
.png is the wave of the future (already past), as far as the Interweb
is concerned.

On Fri, Jun 27, 2008 at 2:57 PM, Rod Trent <[EMAIL PROTECTED]> wrote:
> I've noticed that png files are becoming more and more a common default
> these days.  Anyone else notice that?
>
>
>
> I suspect Lotus Notes may support them a few years from now.  J
>
>
>
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: Friday, June 27, 2008 2:54 PM
> To: NT System Admin Issues
> Cc: NT System Admin Issues
> Subject: RE: batch route add
>
>
>
> "Ara Avvali" <[EMAIL PROTECTED]> wrote on 06/26/2008 02:58:00 PM:
>
>> Screen shot attachted
>>
>> [image removed]
>
> For anyone interested, Lotus Notes has no intrinsic view for .PNG graphics
> such as this. In future, perhaps you could embed a standard JPG instead,
> please? JPGs are much more ubiquitous than .PNGs.
>
> Thanks
>




-- 
ME2

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


RE: batch route add

2008-06-27 Thread Rod Trent
I've noticed that png files are becoming more and more a common default
these days.  Anyone else notice that?

 

I suspect Lotus Notes may support them a few years from now.  J

 

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Friday, June 27, 2008 2:54 PM
To: NT System Admin Issues
Cc: NT System Admin Issues
Subject: RE: batch route add

 



"Ara Avvali" <[EMAIL PROTECTED]> wrote on 06/26/2008 02:58:00 PM:

> Screen shot attachted 
>   
> [image removed] 

For anyone interested, Lotus Notes has no intrinsic view for .PNG graphics
such as this. In future, perhaps you could embed a standard JPG instead,
please? JPGs are much more ubiquitous than .PNGs. 

Thanks 


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~

RE: batch route add

2008-06-27 Thread Michael . Leone
"Ara Avvali" <[EMAIL PROTECTED]> wrote on 06/26/2008 03:09:52 PM:

> You serious? 

Yep. Think: recursion ...

> 
> -Original Message-
> From: Carl Houseman [mailto:[EMAIL PROTECTED] 
> Sent: June 26, 2008 3:08 PM
> To: NT System Admin Issues
> Subject: RE: batch route add
> 
> Change the name to "addroutes.cmd".
> 
> Then your assignment is to explain why it fixed it.
> 
> -Original Message-
> From: Ara Avvali [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, June 26, 2008 2:59 PM
> To: NT System Admin Issues
> Subject: RE: batch route add
> 
> Hehe I tried all combination. Name and extension no luck
> 
> -Original Message-
> From: Carl Houseman [mailto:[EMAIL PROTECTED] 
> Sent: June 26, 2008 2:55 PM
> To: NT System Admin Issues
> Subject: RE: batch route add
> 
> I bet the script is called "route.cmd" or "route.bat".
> 
> Carl
> 
> -Original Message-
> From: Klint Price - ArizonaITPro [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, June 26, 2008 2:51 PM
> To: NT System Admin Issues
> Subject: Re: batch route add
> 
> is this the entire script?  do you get an error?
> 
> Ara Avvali wrote:
> > Hello everyone
> >
> > I am trying to make a batch file that does route add for me
> >
> > So I copied these lines in notepad, saved as ip.bat but it get stuck
> on
> > first line and loops. Any idea why?
> >
> > route add 64.238.199.200 mask 255.255.255.248 10.133.151.193 -p 
> > route add 216.83.186.48 mask 255.255.255.240 10.133.151.193 -p 
> >
> > ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
> > ~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~
> > 
> 
> 
> ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
> ~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~
> 
> 
> ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
> ~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~
> 
> ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
> ~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~
> 
> 
> ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
> ~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~
> 
> ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
> ~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~

RE: batch route add

2008-06-27 Thread Michael . Leone
"Ara Avvali" <[EMAIL PROTECTED]> wrote on 06/26/2008 02:58:00 PM:

> Screen shot attachted
> 
> [image removed] 

For anyone interested, Lotus Notes has no intrinsic view for .PNG graphics 
such as this. In future, perhaps you could embed a standard JPG instead, 
please? JPGs are much more ubiquitous than .PNGs. 

Thanks


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~   ~

Re: batch route add

2008-06-26 Thread Klint Price - ArizonaITPro

It happens to the best of us (aside from Shook).



Ara Avvali wrote:
Damn I feel stupid 

From: Klint Price - ArizonaITPro [mailto:[EMAIL PROTECTED] 
Sent: June 26, 2008 3:26 PM

To: NT System Admin Issues
Subject: Re: batch route add

Assuming the file was called route.cmd or route.bat, when the script is run, the command prompt takes the first word of the line and is recalling the batch file instead of calling route.exe.  That is why renaming the file works because it is no longer calling itself. 


I imagine if he put route.exe in the script instead of just route, it would 
work fine too.  But using a reserved word as the name of the batch file is 
asking for problems, as Ara has found out.

Klint

Kurt Buff wrote: 
Uh - try


route -p add 216.83.186.48 mask 255.255.255.240 10.133.151.193

instead of

route add 216.83.186.48 mask 255.255.255.240 10.133.151.193 -p

On Thu, Jun 26, 2008 at 11:45 AM, Ara Avvali <[EMAIL PROTECTED]> wrote:
  
Hello everyone


I am trying to make a batch file that does route add for me

So I copied these lines in notepad, saved as ip.bat but it get stuck on
first line and loops. Any idea why?

route add 64.238.199.200 mask 255.255.255.248 10.133.151.193 -p
route add 216.83.186.48 mask 255.255.255.240 10.133.151.193 -p

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~




~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~
  




~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~
  



~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


RE: batch route add

2008-06-26 Thread Ara Avvali
Damn I feel stupid 

From: Klint Price - ArizonaITPro [mailto:[EMAIL PROTECTED] 
Sent: June 26, 2008 3:26 PM
To: NT System Admin Issues
Subject: Re: batch route add

Assuming the file was called route.cmd or route.bat, when the script is run, 
the command prompt takes the first word of the line and is recalling the batch 
file instead of calling route.exe.  That is why renaming the file works because 
it is no longer calling itself. 

I imagine if he put route.exe in the script instead of just route, it would 
work fine too.  But using a reserved word as the name of the batch file is 
asking for problems, as Ara has found out.

Klint

Kurt Buff wrote: 
Uh - try

route -p add 216.83.186.48 mask 255.255.255.240 10.133.151.193

instead of

route add 216.83.186.48 mask 255.255.255.240 10.133.151.193 -p

On Thu, Jun 26, 2008 at 11:45 AM, Ara Avvali <[EMAIL PROTECTED]> wrote:
  
Hello everyone

I am trying to make a batch file that does route add for me

So I copied these lines in notepad, saved as ip.bat but it get stuck on
first line and loops. Any idea why?

route add 64.238.199.200 mask 255.255.255.248 10.133.151.193 -p
route add 216.83.186.48 mask 255.255.255.240 10.133.151.193 -p

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~



~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~
  



~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


RE: batch route add

2008-06-26 Thread Ara Avvali
I mean those 2 words on beginning on files
Route add

-Original Message-
From: Carl Houseman [mailto:[EMAIL PROTECTED] 
Sent: June 26, 2008 3:16 PM
To: NT System Admin Issues
Subject: RE: batch route add

  Try again.

You've never said what "all combination" was that you had tried.  "first
to
words" means nothing to me.

-Original Message-
From: Ara Avvali [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 26, 2008 3:12 PM
To: NT System Admin Issues
Subject: RE: batch route add

My god it worked.
My first guess "space between first to words?"

-Original Message-
From: Carl Houseman [mailto:[EMAIL PROTECTED] 
Sent: June 26, 2008 3:08 PM
To: NT System Admin Issues
Subject: RE: batch route add

Change the name to "addroutes.cmd".

Then your assignment is to explain why it fixed it.

-Original Message-
From: Ara Avvali [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 26, 2008 2:59 PM
To: NT System Admin Issues
Subject: RE: batch route add

Hehe I tried all combination. Name and extension no luck

-Original Message-
From: Carl Houseman [mailto:[EMAIL PROTECTED] 
Sent: June 26, 2008 2:55 PM
To: NT System Admin Issues
Subject: RE: batch route add

I bet the script is called "route.cmd" or "route.bat".

Carl

-Original Message-
From: Klint Price - ArizonaITPro [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 26, 2008 2:51 PM
To: NT System Admin Issues
Subject: Re: batch route add

is this the entire script?  do you get an error?

Ara Avvali wrote:
> Hello everyone
>
> I am trying to make a batch file that does route add for me
>
> So I copied these lines in notepad, saved as ip.bat but it get stuck
on
> first line and loops. Any idea why?
>
> route add 64.238.199.200 mask 255.255.255.248 10.133.151.193 -p 
> route add 216.83.186.48 mask 255.255.255.240 10.133.151.193 -p 
>
> ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
> ~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~
>   


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


Re: batch route add

2008-06-26 Thread Klint Price - ArizonaITPro
Assuming the file was called route.cmd or route.bat, when the script is 
run, the command prompt takes the first word of the line and is 
recalling the batch file instead of calling route.exe.  That is why 
renaming the file works because it is no longer calling itself.

I imagine if he put route.exe in the script instead of just route, it 
would work fine too.  But using a reserved word as the name of the batch 
file is asking for problems, as Ara has found out.

Klint

Kurt Buff wrote:
> Uh - try
>
> route -p add 216.83.186.48 mask 255.255.255.240 10.133.151.193
>
> instead of
>
> route add 216.83.186.48 mask 255.255.255.240 10.133.151.193 -p
>
> On Thu, Jun 26, 2008 at 11:45 AM, Ara Avvali <[EMAIL PROTECTED]> wrote:
>   
>> Hello everyone
>>
>> I am trying to make a batch file that does route add for me
>>
>> So I copied these lines in notepad, saved as ip.bat but it get stuck on
>> first line and loops. Any idea why?
>>
>> route add 64.238.199.200 mask 255.255.255.248 10.133.151.193 -p
>> route add 216.83.186.48 mask 255.255.255.240 10.133.151.193 -p
>>
>> ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
>> ~   ~
>>
>> 
>
> ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
> ~   ~
>   


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~   ~

Re: batch route add

2008-06-26 Thread Kurt Buff
Uh - try

route -p add 216.83.186.48 mask 255.255.255.240 10.133.151.193

instead of

route add 216.83.186.48 mask 255.255.255.240 10.133.151.193 -p

On Thu, Jun 26, 2008 at 11:45 AM, Ara Avvali <[EMAIL PROTECTED]> wrote:
> Hello everyone
>
> I am trying to make a batch file that does route add for me
>
> So I copied these lines in notepad, saved as ip.bat but it get stuck on
> first line and loops. Any idea why?
>
> route add 64.238.199.200 mask 255.255.255.248 10.133.151.193 -p
> route add 216.83.186.48 mask 255.255.255.240 10.133.151.193 -p
>
> ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
> ~   ~
>

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~   ~


Re: batch route add

2008-06-26 Thread Micheal Espinola Jr
+1 (looping)

On Thu, Jun 26, 2008 at 2:54 PM, Carl Houseman <[EMAIL PROTECTED]> wrote:
> I bet the script is called "route.cmd" or "route.bat".
>
> Carl
>
> -Original Message-
> From: Klint Price - ArizonaITPro [mailto:[EMAIL PROTECTED]
> Sent: Thursday, June 26, 2008 2:51 PM
> To: NT System Admin Issues
> Subject: Re: batch route add
>
> is this the entire script?  do you get an error?
>
> Ara Avvali wrote:
>> Hello everyone
>>
>> I am trying to make a batch file that does route add for me
>>
>> So I copied these lines in notepad, saved as ip.bat but it get stuck on
>> first line and loops. Any idea why?
>>
>> route add 64.238.199.200 mask 255.255.255.248 10.133.151.193 -p
>> route add 216.83.186.48 mask 255.255.255.240 10.133.151.193 -p
>>
>> ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
>> ~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~
>>
>
>
> ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
> ~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~
>
>
> ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
> ~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~
>




-- 
ME2

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


Re: batch route add

2008-06-26 Thread Klint Price - ArizonaITPro
Good catch Carl.



Carl Houseman wrote:
> I bet the script is called "route.cmd" or "route.bat".
>
> Carl
>
> -Original Message-
> From: Klint Price - ArizonaITPro [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, June 26, 2008 2:51 PM
> To: NT System Admin Issues
> Subject: Re: batch route add
>
> is this the entire script?  do you get an error?
>
> Ara Avvali wrote:
>   
>> Hello everyone
>>
>> I am trying to make a batch file that does route add for me
>>
>> So I copied these lines in notepad, saved as ip.bat but it get stuck on
>> first line and loops. Any idea why?
>>
>> route add 64.238.199.200 mask 255.255.255.248 10.133.151.193 -p 
>> route add 216.83.186.48 mask 255.255.255.240 10.133.151.193 -p 
>>
>> ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
>> ~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~
>>   
>> 
>
>
> ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
> ~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~
>
>
> ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
> ~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~
>   


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~

RE: batch route add

2008-06-26 Thread Carl Houseman
  Try again.

You've never said what "all combination" was that you had tried.  "first to
words" means nothing to me.

-Original Message-
From: Ara Avvali [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 26, 2008 3:12 PM
To: NT System Admin Issues
Subject: RE: batch route add

My god it worked.
My first guess "space between first to words?"

-Original Message-
From: Carl Houseman [mailto:[EMAIL PROTECTED] 
Sent: June 26, 2008 3:08 PM
To: NT System Admin Issues
Subject: RE: batch route add

Change the name to "addroutes.cmd".

Then your assignment is to explain why it fixed it.

-Original Message-
From: Ara Avvali [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 26, 2008 2:59 PM
To: NT System Admin Issues
Subject: RE: batch route add

Hehe I tried all combination. Name and extension no luck

-Original Message-
From: Carl Houseman [mailto:[EMAIL PROTECTED] 
Sent: June 26, 2008 2:55 PM
To: NT System Admin Issues
Subject: RE: batch route add

I bet the script is called "route.cmd" or "route.bat".

Carl

-Original Message-
From: Klint Price - ArizonaITPro [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 26, 2008 2:51 PM
To: NT System Admin Issues
Subject: Re: batch route add

is this the entire script?  do you get an error?

Ara Avvali wrote:
> Hello everyone
>
> I am trying to make a batch file that does route add for me
>
> So I copied these lines in notepad, saved as ip.bat but it get stuck
on
> first line and loops. Any idea why?
>
> route add 64.238.199.200 mask 255.255.255.248 10.133.151.193 -p 
> route add 216.83.186.48 mask 255.255.255.240 10.133.151.193 -p 
>
> ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
> ~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~
>   


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


RE: batch route add

2008-06-26 Thread Joseph L. Casale
lol


From: Ara Avvali [EMAIL PROTECTED]
Sent: Thursday, June 26, 2008 1:11 PM
To: NT System Admin Issues
Subject: RE: batch route add

My god it worked.
My first guess "space between first to words?"

-Original Message-
From: Carl Houseman [mailto:[EMAIL PROTECTED]
Sent: June 26, 2008 3:08 PM
To: NT System Admin Issues
Subject: RE: batch route add

Change the name to "addroutes.cmd".

Then your assignment is to explain why it fixed it.

-Original Message-
From: Ara Avvali [mailto:[EMAIL PROTECTED]
Sent: Thursday, June 26, 2008 2:59 PM
To: NT System Admin Issues
Subject: RE: batch route add

Hehe I tried all combination. Name and extension no luck

-Original Message-
From: Carl Houseman [mailto:[EMAIL PROTECTED]
Sent: June 26, 2008 2:55 PM
To: NT System Admin Issues
Subject: RE: batch route add

I bet the script is called "route.cmd" or "route.bat".

Carl

-Original Message-
From: Klint Price - ArizonaITPro [mailto:[EMAIL PROTECTED]
Sent: Thursday, June 26, 2008 2:51 PM
To: NT System Admin Issues
Subject: Re: batch route add

is this the entire script?  do you get an error?

Ara Avvali wrote:
> Hello everyone
>
> I am trying to make a batch file that does route add for me
>
> So I copied these lines in notepad, saved as ip.bat but it get stuck
on
> first line and loops. Any idea why?
>
> route add 64.238.199.200 mask 255.255.255.248 10.133.151.193 -p
> route add 216.83.186.48 mask 255.255.255.240 10.133.151.193 -p
>
> ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
> ~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~
>


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


RE: batch route add

2008-06-26 Thread Ara Avvali
My god it worked.
My first guess "space between first to words?"

-Original Message-
From: Carl Houseman [mailto:[EMAIL PROTECTED] 
Sent: June 26, 2008 3:08 PM
To: NT System Admin Issues
Subject: RE: batch route add

Change the name to "addroutes.cmd".

Then your assignment is to explain why it fixed it.

-Original Message-
From: Ara Avvali [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 26, 2008 2:59 PM
To: NT System Admin Issues
Subject: RE: batch route add

Hehe I tried all combination. Name and extension no luck

-Original Message-
From: Carl Houseman [mailto:[EMAIL PROTECTED] 
Sent: June 26, 2008 2:55 PM
To: NT System Admin Issues
Subject: RE: batch route add

I bet the script is called "route.cmd" or "route.bat".

Carl

-Original Message-
From: Klint Price - ArizonaITPro [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 26, 2008 2:51 PM
To: NT System Admin Issues
Subject: Re: batch route add

is this the entire script?  do you get an error?

Ara Avvali wrote:
> Hello everyone
>
> I am trying to make a batch file that does route add for me
>
> So I copied these lines in notepad, saved as ip.bat but it get stuck
on
> first line and loops. Any idea why?
>
> route add 64.238.199.200 mask 255.255.255.248 10.133.151.193 -p 
> route add 216.83.186.48 mask 255.255.255.240 10.133.151.193 -p 
>
> ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
> ~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~
>   


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


RE: batch route add

2008-06-26 Thread Ara Avvali
You serious? 

-Original Message-
From: Carl Houseman [mailto:[EMAIL PROTECTED] 
Sent: June 26, 2008 3:08 PM
To: NT System Admin Issues
Subject: RE: batch route add

Change the name to "addroutes.cmd".

Then your assignment is to explain why it fixed it.

-Original Message-
From: Ara Avvali [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 26, 2008 2:59 PM
To: NT System Admin Issues
Subject: RE: batch route add

Hehe I tried all combination. Name and extension no luck

-Original Message-
From: Carl Houseman [mailto:[EMAIL PROTECTED] 
Sent: June 26, 2008 2:55 PM
To: NT System Admin Issues
Subject: RE: batch route add

I bet the script is called "route.cmd" or "route.bat".

Carl

-Original Message-
From: Klint Price - ArizonaITPro [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 26, 2008 2:51 PM
To: NT System Admin Issues
Subject: Re: batch route add

is this the entire script?  do you get an error?

Ara Avvali wrote:
> Hello everyone
>
> I am trying to make a batch file that does route add for me
>
> So I copied these lines in notepad, saved as ip.bat but it get stuck
on
> first line and loops. Any idea why?
>
> route add 64.238.199.200 mask 255.255.255.248 10.133.151.193 -p 
> route add 216.83.186.48 mask 255.255.255.240 10.133.151.193 -p 
>
> ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
> ~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~
>   


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


RE: batch route add

2008-06-26 Thread Carl Houseman
Change the name to "addroutes.cmd".

Then your assignment is to explain why it fixed it.

-Original Message-
From: Ara Avvali [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 26, 2008 2:59 PM
To: NT System Admin Issues
Subject: RE: batch route add

Hehe I tried all combination. Name and extension no luck

-Original Message-
From: Carl Houseman [mailto:[EMAIL PROTECTED] 
Sent: June 26, 2008 2:55 PM
To: NT System Admin Issues
Subject: RE: batch route add

I bet the script is called "route.cmd" or "route.bat".

Carl

-Original Message-
From: Klint Price - ArizonaITPro [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 26, 2008 2:51 PM
To: NT System Admin Issues
Subject: Re: batch route add

is this the entire script?  do you get an error?

Ara Avvali wrote:
> Hello everyone
>
> I am trying to make a batch file that does route add for me
>
> So I copied these lines in notepad, saved as ip.bat but it get stuck
on
> first line and loops. Any idea why?
>
> route add 64.238.199.200 mask 255.255.255.248 10.133.151.193 -p 
> route add 216.83.186.48 mask 255.255.255.240 10.133.151.193 -p 
>
> ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
> ~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~
>   


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


RE: batch route add

2008-06-26 Thread Ara Avvali
Hehe I tried all combination. Name and extension no luck

-Original Message-
From: Carl Houseman [mailto:[EMAIL PROTECTED] 
Sent: June 26, 2008 2:55 PM
To: NT System Admin Issues
Subject: RE: batch route add

I bet the script is called "route.cmd" or "route.bat".

Carl

-Original Message-
From: Klint Price - ArizonaITPro [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 26, 2008 2:51 PM
To: NT System Admin Issues
Subject: Re: batch route add

is this the entire script?  do you get an error?

Ara Avvali wrote:
> Hello everyone
>
> I am trying to make a batch file that does route add for me
>
> So I copied these lines in notepad, saved as ip.bat but it get stuck
on
> first line and loops. Any idea why?
>
> route add 64.238.199.200 mask 255.255.255.248 10.133.151.193 -p 
> route add 216.83.186.48 mask 255.255.255.240 10.133.151.193 -p 
>
> ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
> ~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~
>   


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


RE: batch route add

2008-06-26 Thread Ara Avvali
Screen shot attachted

 

 

 

-Original Message-
From: Klint Price - ArizonaITPro [mailto:[EMAIL PROTECTED] 
Sent: June 26, 2008 2:51 PM
To: NT System Admin Issues
Subject: Re: batch route add

 

is this the entire script?  do you get an error?

 

Ara Avvali wrote:

> Hello everyone

> 

> I am trying to make a batch file that does route add for me

> 

> So I copied these lines in notepad, saved as ip.bat but it get stuck
on

> first line and loops. Any idea why?

> 

> route add 64.238.199.200 mask 255.255.255.248 10.133.151.193 -p 

> route add 216.83.186.48 mask 255.255.255.240 10.133.151.193 -p 

> 

> ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~

> ~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~

>   

 

 

~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~

~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~<>

RE: batch route add

2008-06-26 Thread Carl Houseman
I bet the script is called "route.cmd" or "route.bat".

Carl

-Original Message-
From: Klint Price - ArizonaITPro [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 26, 2008 2:51 PM
To: NT System Admin Issues
Subject: Re: batch route add

is this the entire script?  do you get an error?

Ara Avvali wrote:
> Hello everyone
>
> I am trying to make a batch file that does route add for me
>
> So I copied these lines in notepad, saved as ip.bat but it get stuck on
> first line and loops. Any idea why?
>
> route add 64.238.199.200 mask 255.255.255.248 10.133.151.193 -p 
> route add 216.83.186.48 mask 255.255.255.240 10.133.151.193 -p 
>
> ~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
> ~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~
>   


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~ <http://www.sunbelt-software.com/SunbeltMessagingNinja.cfm>  ~


Re: batch route add

2008-06-26 Thread Klint Price - ArizonaITPro

is this the entire script?  do you get an error?

Ara Avvali wrote:

Hello everyone

I am trying to make a batch file that does route add for me

So I copied these lines in notepad, saved as ip.bat but it get stuck on
first line and loops. Any idea why?

route add 64.238.199.200 mask 255.255.255.248 10.133.151.193 -p 
route add 216.83.186.48 mask 255.255.255.240 10.133.151.193 -p 


~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~   ~
  



~ Upgrade to Next Generation Antispam/Antivirus with Ninja!~
~   ~