VATUSA Forums

General => The Control Room Floor => Topic started by: Kyle Sanders on March 08, 2020, 10:53:25 PM

Title: Workstation Auto-Setup BATCH File
Post by: Kyle Sanders on March 08, 2020, 10:53:25 PM
EDIT:
UPDATED 15MAY2020 (Added a version check to make sure you always have the most up to date BATCH File release)

---

Ever got online, primed up and realized you forgot to review something, pull up a website, launch a certain program, etc...

Or... just tired of pulling up all the information and launching all the programs you need to control?


Check this out:
https://docs.google.com/presentation/d/e/2PACX-1vTTbx5Szs5I8oveHofFnDDkJxYIWHcb7GqfyQYNXE-JtG2BX6_R0BTyj3DwOqFIRNoco1x8_XwgSc0Z/embed (https://docs.google.com/presentation/d/e/2PACX-1vTTbx5Szs5I8oveHofFnDDkJxYIWHcb7GqfyQYNXE-JtG2BX6_R0BTyj3DwOqFIRNoco1x8_XwgSc0Z/embed)



Obviously this BAT file is designed for use by ZLC ARTCC but anyone that knows how to use google could figure out how to edit this for their own use.

I welcome feedback (I am not a serious coder so take it easy) and suggestions for updates!



BATCH File (contact me via PM if link doesn't work):
https://github.com/KSanders7070/Virtual_RADAR_Client_Workstation_Setup/releases
Title: Re: Workstation Auto-Setup BATCH File
Post by: Kyle Sanders on April 01, 2020, 05:15:07 PM
MAJOR UPDATE:

Check OP for details.
Title: Re: Workstation Auto-Setup BATCH File
Post by: Kyle Sanders on April 08, 2020, 09:31:42 PM
UPDATE:

Check OP for details.
Title: Re: Workstation Auto-Setup BATCH File
Post by: Kyle Sanders on April 13, 2020, 05:48:22 PM
UPDATE
New DL Link: https://www.dropbox.com/s/67romxr1haw0pgi/ZLC%20Workstation%20Auto-Setup.bat?dl=0
Title: Re: Workstation Auto-Setup BATCH File
Post by: Kyle Sanders on April 17, 2020, 09:32:08 PM
UPDATE:

Check OP for details.
Title: Re: Workstation Auto-Setup BATCH File
Post by: Kyle Sanders on May 14, 2020, 02:00:29 PM
UPDATE:

Check OP for details.
Title: Re: Workstation Auto-Setup BATCH File
Post by: Scott Bickford on May 23, 2020, 07:27:09 AM
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++.
Title: Re: Workstation Auto-Setup BATCH File
Post by: Kyle Sanders on May 23, 2020, 10:04:54 AM
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++.

The URLs into a file for reference would be a little difficult for me as I am still knew at this. It would be easier for you to just edit the .BAT file and add the URLs that you want.
Title: Re: Workstation Auto-Setup BATCH File
Post by: Kyle Sanders 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