- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- converting Unix scripts to Windows.
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2005 01:25 AM
06-17-2005 01:25 AM
converting Unix scripts to Windows.
I'm tasked with converting about 100 small remote Unix servers to run windows 2003. They are scattered all around the world.
Currently I make use of ftp, rcp, rcmd, and even nfs to perform periodic database additions to all these servers at the same time.
(homegrown database)
I need to push a script containing the updates to these servers, then execute the script from my home location. I've not found anything like a remote command in windows, and I don't want to depend on a scheduler.
Is there something in the dark world of windows that I can do this with?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2005 01:39 AM
06-17-2005 01:39 AM
Re: converting Unix scripts to Windows.
http://www.networksimplicity.com/openssh
Openssh is what really should have been used for Unix anyway.
Haval(too bad) Unix is being replaced with an inferior product.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2005 01:43 AM
06-17-2005 01:43 AM
Re: converting Unix scripts to Windows.
A.) ActiveState Perl
B.) WSH (Windows scripting host)
or learn Visual Basic (yuck).
Here are links:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/script56/html/wsoriwindowsscripthost.asp
http://www.activestate.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2005 02:10 AM
06-17-2005 02:10 AM
Re: converting Unix scripts to Windows.
http://www.microsoft.com/windowsserversystem/sfu/default.mspx
Plan B. Linux
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2005 02:21 AM
06-17-2005 02:21 AM
Re: converting Unix scripts to Windows.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2005 02:28 AM
06-17-2005 02:28 AM
Re: converting Unix scripts to Windows.
http://www.cygwin.com/
It's basically a DLL that enables GNU utilities to be compiled on Windows. Give you a more familiar environment, including shell, all your favourite tools, GCC, X Windows if you want it, etc etc.
If you don't need the flexibility of Cygwin you can always use UNIX tools. Basically just grep, awk etc compiled for Win32.
http://unxutils.sourceforge.net/
Either one should make your life scripting on a Winblows box a WHOLE load easier!