Search This Blog

Friday, July 17, 2009

Team Foundation Server Administration Tool

The TFS Admin Tool allows a TFS administrator to quickly add users to all three platforms utilized by Team Foundation Server: Team Foundation Server, Sharepoint, and SQL Reporting Services, all through one common interface. The tool also allows administrators to change the current permissions on any of the three tiers, identify any errors, and view all of the users and their permission sets across Team Foundation Server, Sharepoint, and SQL Reporting Services.

Features
TFS Admin Tool allows a TFS administrator to

  • Add, delete, and modify multiple user permissions from a TFS Team Project and apply them at the same time
  • Identify missing permissions from Sharepoint or SQL Reporting Services and correct them
  • View a log of permission changes that have occured
  • Define what Sharepoint and SQL Reporting Services permissions should be automatically used when creating a new TFS user


Requirements
In order to run the TFS Administration Tool, you will need the following components installed

  • .NET Framework 2.0
  • Administrative rights for the TFS Server, Sharepoint Server, and SQL Reporting Services server you wish to add users to The account that has the admin rights must be the same account you are running the Admin Tool from on your local machine.
  • A domain-based Team Foundation Server setup
  • Microsoft Visual Studio Team Foundation Server 2008 (server-based, not necessarily local)
  • Team Explorer 2008 installed locally


Download
Team Foundation Server Administration Tool

Microsoft Download Center - Developer Tools

http://www.microsoft.com/downloads/en/resultsForProduct.aspx?displaylang=en&productID=C0037913-9E11-4A2D-8FD1-0BA441296CBC

Using Team Foundation Server 2008 with Visual Studio 2000

http://social.msdn.microsoft.com/Forums/en-US/tfsversioncontrol/thread/5831b031-3435-49a4-ba07-95f35e5a885e

Monday, July 6, 2009

Ubuntu 7.04 repositories

deb http://old-releases.ubuntu.com/ubuntu/ feisty main restricted universe multiverse
deb http://old-releases.ubuntu.com/ubuntu/ feisty-updates main restricted universe multiverse
deb http://old-releases.ubuntu.com/ubuntu/ feisty-security main restricted universe multiverse
deb http://old-releases.ubuntu.com/ubuntu/ feisty-backports main restricted universe multiverse
deb-src http://old-releases.ubuntu.com/ubuntu/ feisty-backports main restricted universe multiverse

http://ubuntuforums.org/showthread.php?p=6319924

Friday, July 3, 2009

Create Ubuntu Shared Folder in Virtual Box

  • Shutdown your VirtualBox Ubuntu session if it is running
  • In your host operating create the folder you want to share - e.g. ubuntuShared
  • From the VirtualBox control panel, click on your Ubuntu Virtual Machine
  • In the right hand panel, click shared folders
  • A window will open to manage shared folders. Click the add folder icon on the right hand side
  • Navigate to the folder you created in your host operating system and click choose
  • Click ok to close the navigator window
  • Ensure that your selected folder is highlighted in the shared folder panel and click ok
  • Start your Ubuntu session and log in
  • Open a Terminal session (Applications->Accessories->Terminal)
  • Create a mount-point directory for your Shared Folder - e.g. sudo mkdir /media/windows-shared
  • Mount your shared folder over your newly created directory - e.g. sudo mount.vboxsf ubuntuShared /media/windows-share

http://developer-repository.blogspot.com/2008/12/create-ubuntu-shared-folder-in-virtual.html