A powerful and easy-to-use cutlist optimizer for cabinetry and woodworking professionals. Save materials, reduce costly mistakes, and generate accurate quotes.
- Optimize cutting plans with minimal waste
- Generate accurate quotations effortlessly
- Automate workflows with CLI integration
📢 Try MaxCut for free → https://maxcutsoftware.com
Download and install MaxCut (free)
This repository provides examples of how to integrate MaxCut with your workflow using the command line. The MaxCut CLI (Command Line Interface) comes pre-packaged with MaxCut. We have created several C# examples in a .Net console application to help you get started.
Run the following command in your windows command prompt cmd.exe
"C:\Program Files (x86)\MaxCut Software\MaxCut\MaxCut.exe" import --file "file path" --format kdmax
Example: ImportKdMaxCommand.cs is used in Program.cs.
Run the following command in your windows command prompt cmd.exe
"C:\Program Files (x86)\MaxCut Software\MaxCut\MaxCut.exe" import --file "file path" --format cabmaster
Example: ImportCabMasterCommand.cs is used in Program.cs.
To run the optimization on an imported or opened file include the --optimize
option in your arguments
Run the following command in your windows command prompt cmd.exe
"C:\Program Files (x86)\MaxCut Software\MaxCut\MaxCut.exe" open --file "file path"
Example: OpenMaxCutJobCommand.cs is used in Program.cs.
Run the following command in your windows command prompt cmd.exe
"C:\Program Files (x86)\MaxCut Software\MaxCut\MaxCut.exe" license --activate "license code"
Example: LicenseActivateCommand.cs is used in Program.cs.
Run the following command in your windows command prompt cmd.exe
"C:\Program Files (x86)\MaxCut Software\MaxCut\MaxCut.exe" license --details
Example: LicenseInfoCommand.cs is used in Program.cs.
Run the following command in your windows command prompt cmd.exe
"C:\Program Files (x86)\MaxCut Software\MaxCut\MaxCut.exe" license --deactivate
Example: LicenseDeactivateCommand.cs is used in Program.cs.