Open all 3D printing programs with one click
por Zefram_Cochrane
1
Descargas
1
Likes
0
Makes
When I wanted to start a new 3d-printing project, it was annoying to have to open various programs and websites one by one.
Fortunately, Microsoft Windows offers to write simple batch files to relieve you of such tedious tasks. Some may call it laziness, I call it optimization.
The best way is to create these batch files in the "Windows Editor" as *.txt file.
Example:
@ECHO OFF
ECHO Please wait, all programs will be started...
START "Designspark" /B "D:\Program Files\DesignSpark\DesignSpark Mechanical 5.0\SpaceClaim.exe""
START "Cura" /B "D:\Program Files\Ultimaker Cura 4.6\Cura.exe"
START "Octoprint" /B "http://192.168.129.17/"
START "Thingiverse" /B "https://www.thingiverse.com/"
ECHO All programs started!
You only need to match the file path to the programs you are using. Also websites, including print servers like "Octoprint", can be started directly (via IP adress). The website is loaded via the set default browser.
The file is saved normally as a *.txt file
Fortunately, Microsoft Windows offers to write simple batch files to relieve you of such tedious tasks. Some may call it laziness, I call it optimization.
The best way is to create these batch files in the "Windows Editor" as *.txt file.
Example:
@ECHO OFF
ECHO Please wait, all programs will be started...
START "Designspark" /B "D:\Program Files\DesignSpark\DesignSpark Mechanical 5.0\SpaceClaim.exe""
START "Cura" /B "D:\Program Files\Ultimaker Cura 4.6\Cura.exe"
START "Octoprint" /B "http://192.168.129.17/"
START "Thingiverse" /B "https://www.thingiverse.com/"
ECHO All programs started!
You only need to match the file path to the programs you are using. Also websites, including print servers like "Octoprint", can be started directly (via IP adress). The website is loaded via the set default browser.
The file is saved normally as a *.txt file
¿Has impreso este modelo? Inicia sesión y comparte tu make.
Inicia sesión para dejar un comentario
Iniciar sesiónAún no hay comentarios – ¡sé el primero!