Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is probably a pretty basic question, but I don't find the solution right now..

I have a PowerShell script that does some stuff using the script's current directory. So when inside that directory, running .\script.ps1 works correctly.

Now I want to call that script from a different directory without changing the referencing directory of the script. So I want to call ..\..\dir\script.ps1 and still want that script to behave as it was called from inside its directory.

How do I do that, or how do I modify a script so it can run from any directory?

share|improve this question

3 Answers

up vote 59 down vote accepted

Do you mean you want the script's own path so you can reference a file next to the script? Try this:

$scriptpath = $MyInvocation.MyCommand.Path
$dir = Split-Path $scriptpath
Write-host "My directory is $dir"

You can get a lot of info from $MyInvocation and its properties.

If you want to reference a file in the current working directory, you can use Resolve-Path or Get-ChildItem:

$filepath = Resolve-Path "somefile.txt"

EDIT (based on comment from OP):

# temporarily change to the correct folder
Push-Location $folder

# do stuff, call ant, etc

# now back to previous directory
Pop-Location

There's probably other ways of achieving something similar using Invoke-Command as well.

share|improve this answer
Hmm, okay, maybe I should have been a bit more clear about my script. Actually it is a script that calls ant with some parameters. So I have to call ant from that folder to ensure that it finds the configuration file correctly. Ideally I am looking for something to temporary change the execution directory locally within that script. – poke Jan 18 '11 at 13:28
1  
Ah then in that case you will want Push-Location and Pop-Location – JohnL Jan 18 '11 at 13:41
Yes, that's it, thank you :) – poke Jan 18 '11 at 14:00

If you're calling native apps, you need to worry about [Environment]::CurrentDirectory not about PowerShell's $PWD current directory. For some reason that escapes me, PowerShell does not set the process' current working directory when you Set-Location or Push-Location, so you need to make sure you do so if you're running applications (or cmdlets) that expect it to be set.

In a script, you can do this:

Push-Location $MyInvocation.MyCommand.Path
[Environment]::CurrentDirectory = $PWD
##  Your Script Code ...
Pop-Location
[Environment]::CurrentDirectory = $PWD

There's no foolproof alternative to this. Many of us put a line in our prompt function to set [Environment]::CurrentDirectory ... but that doesn't help you when you're changing the location in a script.

Final note: $PWD isn't always a legal CurrentDirectory (you might CD into the registry provider for instance), so if you want to put this into your prompt, or into wrapper functions for the *-Location cmdlets, you need to use:

[Environment]::CurrentDirectory = Get-Location -PSProvider FileSystem
share|improve this answer

I often used the following code to import a module which sit under the same directory as the running script. It will first get the directory from which powershell is running

$currentPath=Split-Path ((Get-Variable MyInvocation -Scope 0).Value).MyCommand.Path

import-module "$currentPath\sqlps.ps1"

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.