My client wants to be able to do an unattended install of a TFS application tier. I have found how to use the TFSConfig tool in order to create the .ini file, but it seems that the .ini file is missing a bunch of optional parameters. For example, the .ini
file has the parameter for IsServiceAccountBuiltIn:
; Boolean to determine whether the account is a built-in account
IsServiceAccountBuiltIn=True
; Account that the TFS web site will run as. …
ServiceAccountName=NT AUTHORITY\NETWORK SERVICE
My problem is, we’re not using a build in service account. So, I can set that IsServiceAccountBuiltIn to false and I can specify the ServiceAccountName – but nowhere do I see what the parameter name would be for the service account password.
I’d also like to set up reporting but the only parameter they give for reporting is:
; A Boolean to determine whether reporting is enabled
UseReporting=False
So, if I want to set the above to true, I have no idea what the other parameter names are to set up the rest of reporting – like the Report Instance Id, the SSAS server, the report reader account.
If that all made sense, do you know where I can find these parameter names?