Skip to content

Commit

Permalink
implemented install.bat
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy Tammik committed Aug 21, 2015
1 parent 0047808 commit c41c235
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions install.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
@echo off
set "D=C:\Users\%USERNAME%\Documents\Visual Studio 2012\Templates\ProjectTemplates"
set "F=%TEMP%\Revit2016AddinWizardCs2.zip"
echo Creating C# wizard archive %F%...
cd cs
zip -r "%F%" *
cd ..
echo Copying C# wizard archive to %D%\Visual C#...
copy "%F%" "%D%\Visual C#"
set "F=%TEMP%\Revit2016AddinWizardVb2.zip"
echo Creating VB wizard archive %F%...
cd vb
zip -r "%F%" *
cd ..
echo Copying VB wizard archive to %D%\Visual Basic...
copy "%F%" "%D%\Visual Basic"

0 comments on commit c41c235

Please sign in to comment.