Poll

Do you use an autoloader bundle to deploy lisp?

Yes, it's convenient.
3 (42.9%)
No, the old way works fine.
3 (42.9%)
What's a bundle?
1 (14.3%)

Total Members Voted: 7

Voting closed: April 13, 2023, 04:29:30 PM

Author Topic: Do you use an autoloader bundle to deploy lisp?  (Read 1527 times)

0 Members and 1 Guest are viewing this topic.

PKENEWELL

  • Bull Frog
  • Posts: 309
Re: Do you use an autoloader bundle to deploy lisp?
« Reply #15 on: March 31, 2023, 11:19:16 AM »
This has been discussed: http://www.theswamp.org/index.php?topic=49774.0

This is the technology that is used for making apps for the Autodesk store.
"When you are asked if you can do a job, tell 'em, 'Certainly I can!' Then get busy and find out how to do it." - Theodore Roosevelt

BIGAL

  • Swamp Rat
  • Posts: 1398
  • 40 + years of using Autocad
Re: Do you use an autoloader bundle to deploy lisp?
« Reply #16 on: April 01, 2023, 12:51:35 AM »
Unzip a file using lisp

Code: [Select]
(setq filename (getfiled "Select the File \"CAD-TOOLS-OCT-25-2022\"" "" "ZIP" 16))
(startapp (strcat "powershell -command Expand-Archive -Path '" filename "' -DestinationPath 'C:/CAD-TOOLS' -FORCE")) ; unzip
(alert "programs unzipped to C:/CAD-TOOLS")

lisp to set paths and menu follows from here.
A man who never made a mistake never made anything