Skip to content

Instantly share code, notes, and snippets.

@chriskuech
Created April 2, 2020 00:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chriskuech/a32f86ad2609719598b073293d09ca03 to your computer and use it in GitHub Desktop.
Save chriskuech/a32f86ad2609719598b073293d09ca03 to your computer and use it in GitHub Desktop.
function Invoke-InDirectory {
Param(
[ValidateScript( { Test-Path $_ -PathType Container } )]
[string] $Path,
[ValidateNotNullOrEmpty()]
[scriptblock] $ScriptBlock
)
try {
Push-Location $Path
& $ScriptBlock
}
finally {
Pop-Location
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment