Reputation: 43
Seeing multiple 404 error on TFS 2018 instance.
No bigger changes have been made after installation, Only action done is one administrator who don't have access to DB just created one collection on TFS server but it didn't show up in TFS administration console.
while trying to delete the team project and an offline agent(removed from Build server) seeing 404 errors
How do we resolve this issue ?
Upvotes: 0
Views: 669
Reputation: 43
I got the solution for this issue.
The thing causing 404 erros is URL SCAN that was installed along with IIS.
it is blocking certain requests on TFS including deletion,group membership and some css(which caused change in TFS user management view)
Once after removing this from the IIS, TFS came back to normal.
Upvotes: 1
Reputation: 30372
Firstly make sure you have the correct permission to delete the team project.
To delete a team project, the user should be in Project Collection Administrators group
. See Quickstart: Add administrators, set permissions at the project-level or project collection-level to set permissions.
Besides, you can also try to delete the team project with TFSDeleteProject
command:
TFSDeleteproject [/q] [/force] [/excludewss] /collection:URL TeamProjectName
To use the TFSDeleteProject command, you must be a member of the **Team Foundation Administrators security group or the Project Administrators security group. For more information, see Set administrator permissions for Team Foundation Server.**
See Delete a team project with TFSDeleteProject for details.
Upvotes: 0