Hi,
I think for non-Windows platform, you may also try to write a remote
program.
Commonly the TCP/IP is implemented on almost all the platform, e.g. linux,
unix.
You can write a server application on the linux or unix, and listen to
certain port and the send the files you want to rename.
Best regards,
Peter Huang
Microsoft Online Community Support
==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
Hi,
Renaming that many files remotely will be slow, no matter what method you
use.
Your best approach is to write a OS dependand service , you better do it in
C or C++ as it's almost 100% compatible across the different OSes. You will
have to use TCP to send the commands

Signature
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation
> That wouldn't be easy to do because not all of the servers are Windows
> machines, and I'm not certain how to write a service on the non-windows
[quoted text clipped - 36 lines]
>> > better way to speed this up? It needs to be almost as fast as doing it
>> > locally on the client.
Don Curtis - 30 Mar 2006 16:36 GMT
Sounds like there's no magic bullet here like I was hoping. It's too bad
there's no way to batch up the commands rather than having to send them each
one at a time.
Thanks for your suggestions!
> Hi,
>
[quoted text clipped - 44 lines]
> >> > better way to speed this up? It needs to be almost as fast as doing it
> >> > locally on the client.
Willy Denoyette [MVP] - 30 Mar 2006 20:56 GMT
That service exists, it's called WMI.
Willy.
| Hi,
|
[quoted text clipped - 44 lines]
| >> > better way to speed this up? It needs to be almost as fast as doing it
| >> > locally on the client.
Ignacio Machin ( .NET/ C# MVP ) - 31 Mar 2006 14:55 GMT
Hi,
> That service exists, it's called WMI.
I find it difficult that WMI runs on a non Win OS , the OP said some of the
servers run another OS

Signature
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation
Willy Denoyette [MVP] - 31 Mar 2006 17:27 GMT
| Hi,
|
| > That service exists, it's called WMI.
|
| I find it difficult that WMI runs on a non Win OS , the OP said some of the
| servers run another OS
This shouldn't be an issue, WBEM (MSFT's implementation is called WMI) is
available for most commercial OS like Linux, Netware, AIX, HP-UX, there are
even a number of open-source implementations available.
Willy.