I was recently working with a customer where an automated build process was not possible. Thus, we couldn’t use the steps found in Publish Symbol Data. After a few hours of research, here’s what we did:
"%ProgramW6432%\Debugging Tools for Windows (x64)\symstore.exe" add /r /f "$(TargetDir)*.pdb" /s \\server\symbols /t $(ProjectName)
Pretty easy. SymStore.exe has several command line parameters. So there are many more options to choose from to suit your needs.