added node installer, fixed email
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
@echo off
|
@echo off
|
||||||
REM Version: 1.1
|
REM Version: 1.1
|
||||||
REM Copies all dynamo files from subfolders to a selected folder
|
REM Copies all dynamo files from subfolders to a selected folder
|
||||||
REM Created by Peter Gyetvai: gyetpet@gmail.com
|
REM Created by Peter Gyetvai: gyetpet@mailbox.org
|
||||||
REM
|
REM
|
||||||
REM Usage:
|
REM Usage:
|
||||||
REM DynamoPlayerInstaller <folder>
|
REM DynamoPlayerInstaller <folder>
|
||||||
|
|||||||
16
NodeInstaller.bat
Normal file
16
NodeInstaller.bat
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
@echo off
|
||||||
|
REM Version: 1.0
|
||||||
|
REM Copies all node files to the default nodes folder
|
||||||
|
REM Created by Peter Gyetvai: gyetpet@mailbox.org
|
||||||
|
REM
|
||||||
|
|
||||||
|
set FOLDER=%appdata%\Dynamo\Dynamo Revit\2.0
|
||||||
|
|
||||||
|
cd "%~dp0"
|
||||||
|
|
||||||
|
for /R nodes %%h in (*.dyf) do (
|
||||||
|
echo %%h
|
||||||
|
copy /y "%%h" "%FOLDER%"
|
||||||
|
)
|
||||||
|
|
||||||
|
exit /b
|
||||||
Reference in New Issue
Block a user