It can be easily done with java code...
There will be no messy command popups too
~Hemanth
Main Topics
Browse All Topics
I have a Lotus Notes @formula that I believe needs to contain 3 parts, but possibly two. Here is what I have...
Step 1: Gather Information: @Command([Execute]; "C:\\WINDOWS\\SYSTEM32\\IP
Step 2: Place Information either into a memo as text or attach INFORMATION.TXT to memo
Step 3: Reply to sender.
I can get step 3, no problem. I can not get 1 to create the IPINFORMATION.TXT file with any combo of the commands, and needless to say I can not get anything to attach or input into a notes memo.
Anyone have any experience with this? It's for a helpdesk to send out as a stationery to people to gain required information and send back to the agent for noting reasons.
Thanks in advance.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
And a really crude, nasty way of attaching to a new memo:
@Command([Execute]; "cmd"; "/C IPCONFIG.EXE /ALL > C:\\IPINFORMATION.TXT");
@Command([Compose]; @MailDbName; "Memo");
@PostedCommand( [EditInsertFileAttachment]
@Command( [EditInsertText] ; "Steve Knight/RPL" );
@Command([EditGotoField];"
@Command( [EditInsertText] ; "IP Information for this user" );
@Command([EditGotoField] ; "Body" );
Business Accounts
Answer for Membership
by: sjef_bosmanPosted on 2006-05-23 at 09:12:56ID: 16743782
Three suggestions: CONFIG.EXE /ALL > C:\\IPINFORMATION.TXT")
Step 1: @Command([Execute]; "C:\\WINDOWS\\SYSTEM32\\IP
or
Step 0: Create a batch-file using script, that contains the command in step 1
Step 1: execute the batch file
or
Step 1: @Command([Execute]; "C:\\WINDOWS\CMD\CMD.EXE /C IPCONFIG.EXE /ALL > C:\\IPINFORMATION.TXT")