Skip to content

Instantly share code, notes, and snippets.

View jakobjs's full-sized avatar

Jakob jakobjs

  • Reykjavík, Iceland
View GitHub Profile
@jakobjs
jakobjs / Sync-TfsIdentity.ps1
Created May 8, 2019 14:51 — forked from jstangroome/Sync-TfsIdentity.ps1
Force TFS 2012 to synchronize Active Directory group memberships
[CmdletBinding()]
param (
[Parameter(Mandatory=$true, Position=0)]
[uri]
$ServerUri
)
$ErrorActionPreference = 'Stop'
Set-StrictMode -Version Latest
@jakobjs
jakobjs / Sync-TfsIdentity.ps1
Created May 8, 2019 14:51 — forked from f-bader/Sync-TfsIdentity.ps1
Force TFS 2018 to synchronize Active Directory group memberships
[CmdletBinding()]
param (
[Parameter(Mandatory=$true, Position=0)]
[uri]
$ServerUri
)
$ErrorActionPreference = 'Stop'
Set-StrictMode -Version Latest