Skip to content

Instantly share code, notes, and snippets.

@abdulhadad
Created November 5, 2014 06:54
Show Gist options
  • Save abdulhadad/5795474759d483fb4226 to your computer and use it in GitHub Desktop.
Save abdulhadad/5795474759d483fb4226 to your computer and use it in GitHub Desktop.
Publishing multiple Tableau document in certain folder
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