added node installer, fixed email

This commit is contained in:
2020-01-18 15:58:11 +01:00
parent 3a8dc26348
commit cd9e2accbf
2 changed files with 17 additions and 1 deletions

16
NodeInstaller.bat Normal file
View 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