Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

No one seems to ask this simple question, so I will.

My PowerShell script file is located: C:/this-folder/that-folder/another-folder/powershell-file.ps1

How do I get a variable that returns: C:/this-folder/that-folder/another-folder/

share|improve this question

3 Answers

up vote 10 down vote accepted

try this command in your script:

Split-Path -parent $MyInvocation.MyCommand.Definition
share|improve this answer
You are my hero, thank you. – Karl Morrison Jan 30 '12 at 15:10

In PowerShell 3.0 you can get it with the new $PSScriptRoot variable, and with $PSCommandPath you can get the full script path.

There's also a great post by MVP Keith hill you may want to check:

http://rkeithhill.wordpress.com/2010/09/19/determining-scriptdir-safely/

share|improve this answer

I'm assuming you want to know what folder your script is running in when it's being run.

This should do it:

Split-Path $MyInvocation.MyCommand.Path
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.