LUU (Lawson Unix Utility)

 6 Replies
 0 Subscribed to this topic
 27 Subscribed to this forum
Sort:
Author
Messages
TJ Mann
Veteran Member Send Private Message
Posts: 44
Veteran Member
does LUU run on windows 7 ? if so, DO i need to install java SDK, SUA and perl. sure, perl will be needed since install guide says "perl luusetup.pl PathToPerl". this product is replacement of MKS Toolkit.
John Henley
Send Private Message
Posts: 3351
Haven't tried it, but it's not supported. To answer your question, requires JDK, Perl and SUA (or cygwin in latest version of LUU). What are you trying to accomplish?
Thanks for using the LawsonGuru.com forums!
John
TJ Mann
Veteran Member Send Private Message
Posts: 44
Veteran Member
I want to write shell script to stop/start windows PIDs, such as: ps -ef:grep iexplore. If exists, kill -9 $pid and so on. I have Cygwin, don't know how cd C drive
George Graham
Veteran Member Send Private Message
Posts: 201
Veteran Member
Are you talking about on the individual desktops? Or from the server? If desktop there are a variety of other batch commands and/or scripts that you could use without having to install something like LUU - but, yes, its not unix-like commands.
John Henley
Send Private Message
Posts: 3351
don't use shell script -- use powershell--it's part of Windows...
kill -processname iexplore
Thanks for using the LawsonGuru.com forums!
John
TJ Mann
Veteran Member Send Private Message
Posts: 44
Veteran Member
I have power shell too, but sure if commands like: if, else, while work as ksh
TJ Mann
Veteran Member Send Private Message
Posts: 44
Veteran Member
cygwin does the trick for me, such as:

ps -W | grep -v grep |grep iexplore

if exists, exit, else cygstart iexplore.exe

thanks for pointing out. i only cygwin for xwindows for the last 10 years.