46
The Control Room Floor / Re: Workstation Auto-Setup BATCH File
« on: May 23, 2020, 12:39:13 PM »Cool utility. Thanks!
What is the possibility of placing the urls in a file instead of in the batch file?
I'd like to see VATSPY, TeamSpeak and an alias file loaded in notepad++.
I have taken another consideration into creating a "setup" for individual users to select which websites they would want opened but it is an unessessary amount of coding when it is all too obvious how to edit it yourself by clicking "edit" on the .BAT file. I am sorry.
However, I have created a custom bit of code for you to use for opening TeamSpeak and your Notepad++ docuement.
For this to work, Notepad++ MUST be added to your "PATH". For more information on how to do this refer to the attached image and this site: https://www.architectryan.com/2018/03/17/add-to-the-path-on-windows-10/
Copy and paste the following code right below the :DONE function header. Be sure to edit the directoy and file name.
Code: [Select]
cd /D "%programfiles%\TeamSpeak 3 Client"
START "" "ts3client_win64.exe"
CD /D "%userprofile%\ARTCC_ALIAS_FILE_LOCATION"
notepad++ "MyAliasFile.txt"
EDIT: Forgot to attach the image