I'm not new here, but this is my first contribution
This is what I did: (I'm a noob, advices are welcomed)
Seems to me like you have a config file .ovpn with the configuration needed, you need to create a new file that contains the username and password, you can do it like this
vi pass.txt
Add this lines, save and exit
username
password
Now go the the .ovpn config file and edit, there should be a line that reads
auth-user-pass
Add your username and password file
auth-user-pass pass.txt
Ok so now you should be able to authenticate to the VPN just by executing your .ovpn file
If you need to do something like RDP there is also a way to authenticate without typing the password everytime using a #!/bin/bash script, let me know if you need help :)