In order to run Tensorboard, you have to open a command window, type a command which resembles tensorboard --logdir ., open a browser, and then navigate to the appropriate URL; altogether this procedure is extremely difficult and entirely repulsive. The following batch script, saved as run tensorboard.bat, automates the process:
start /b tensorboard --logdir .
start /b http://Jakes-Laptop:6006Note that you shouldn't save the script simply as tensorboard.bat (source).