Created
November 5, 2014 06:54
-
-
Save abdulhadad/5795474759d483fb4226 to your computer and use it in GitHub Desktop.
Publishing multiple Tableau document in certain folder
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rem @echo off | |
set TABLEAU_SVR_DIR="C:\Program Files\Tableau\Tableau Server\8.1" | |
set TABLEAU_TWBX_DIR="C:\Users\Administrator\Documents\tableau docs" | |
pushd %TABLEAU_SVR_DIR%\bin | |
tabcmd.exe login -u user -p password -s http://localhost | |
for %%X in (%TABLEAU_TWBX_DIR%\*) do tabcmd.exe publish "%%X" | |
popd | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment