Sample Artifacts - https://goo.gl/jK79U3
How to Change Logo - https://youtu.be/yKbQ9aXj9-c
How to Restore Logo - https://youtu.be/hqGLLjPrsd4
REM ================================ Reference ===================================
REM https://onlinehelp.tableau.com/current/server/en-us/customize_namelogo.htm
REM ============================ RESTORE DEFAULT LOGOS =============================
REM SET PATH=%PATH%;C:\Program Files\Tableau\Tableau Server\10.1\bin;
REM tabadmin customize parameter -d
REM For parameter, specify name, logo, header_logo, sign_in_logo, or smalllogo.
REM tabadmin restart
REM tabadmin customize name -d
REM tabadmin customize header_logo -d
REM tabadmin customize sign_in_logo -d
REM tabadmin customize smalllogo -d
REM ============================ Customize Site Name =============================
REM Replace new_name with your custom name, as in the following example
REM Note: To change to a name that includes Unicode characters, identify
REM the hex encoding for each Unicode character and add \u before each
REM hex value. For example, for the two-character Chinese, type the
REM command tabadmin customize name "\u6D4B\u8BD5".
REM tabadmin customize name "My Company Name"
REM tabadmin restart
SET PATH=%PATH%;C:\Program Files\Tableau\Tableau Server\10.1\bin;
tabadmin customize name "CodeCowBoy"
REM You can customize the logo that appears on the Tableau Server sign-in page,
REM the header logo in server pages, and the small logo that appears in the upper
REM left when a view is being edited in web authoring. The name "Tableau" is
REM part of this logo. It cannot be changed independently of the logo.
REM The image files you use should be in GIF, JPEG, or PNG format.
REM The header_logo image can be up to 160 by 160 pixels, but not smaller than
REM 32 by 32 pixels. For best results use an image that is 125 by 35 pixels.
REM If the image is larger than 160 by 160 pixels, it is clipped.
REM The sign_in_logo image can be a maximum of 3000 by 3000 pixels.
REM The smalllogo image can be up to 32 by 32 pixels. For best results use an
REM image that is 32 by 32 pixels.
REM =========================== Customize Header Logo ===========================
REM tabadmin customize header_logo "C:\My Pictures\logo.png"
REM tabadmin restart
tabadmin customize header_logo "C:\Temp\CodeCowBoy-HeaderLogo.png"
REM =========================== Customize Login Logo ============================
REM tabadmin customize sign_in_logo "C:\My Pictures\logo.png"
REM tabadmin restart
tabadmin customize sign_in_logo "C:\Temp\CodeCowBoy-LogonLogo.png"
REM ======================== Customize Small Icon Logo ==========================
REM tabadmin customize smalllogo "C:\My Pictures\logo.png"
REM tabadmin restart
tabadmin customize smalllogo "C:\Temp\CodeCowBoy-SmallLogo.png"
tabadmin restart
REM ======================== Restore Default Logo ==========================\
REM SET PATH=%PATH%;C:\Program Files\Tableau\Tableau Server\10.1\bin;
REM tabadmin customize name -d
REM tabadmin customize header_logo -d
REM tabadmin customize sign_in_logo -d
REM tabadmin customize smalllogo -d
REM tabadmin restart