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.

Note: PowerShell 1.0
I'd like to get the current executing PowerShell file name. That is, if I start my session like this:

powershell.exe .\myfile.ps1

I'd like to get the string ".\myfile.ps1" (or something like that). EDIT: "myfile.ps1" is preferable.
Any ideas?

share|improve this question
Thanks, current answers are almost the same, but I only need the file name (and not the whole path), so the accepted answer is @Keith's. +1 to both answers, though. Now I know about the $MyInvocation thingy :-) – Ron Klein May 3 '09 at 21:54
How about getting the parent script from an included script? – Florin Sabau Apr 25 at 17:06

3 Answers

up vote 20 down vote accepted

If you only want the filename (not the full path) use this:

$ScriptName = $MyInvocation.MyCommand.Name
share|improve this answer

Try the following

$path =  $MyInvocation.MyCommand.Definition

This may not give you the actual path typed in but it will give you a valid path to the file.

share|improve this answer
1  
@Hamish the question specifically says if invoked from a file. – JaredPar May 18 '11 at 23:16
FYI: This give you the full path and the file name (Powershell 2.0) – Ralph Willgoss Oct 8 '12 at 15:13

If you are looking for the current directory in which the script is being executed, you can try this one:

$fullPathIncFileName = $MyInvocation.MyCommand.Definition
$currentScriptName = $MyInvocation.MyCommand.Name
$currentExecutingPath = $fullPathIncFileName.Replace($currentScriptName, "")

Write-Host $currentExecutingPath
share|improve this answer
That wouldn't work correctly on C:\ilike.ps123\ke.ps1, would it? – fridojet Jun 6 '12 at 19:48
@fridojet - Not sure, not near a PS terminal to test it. Why dont you try it and see? – Ryk Jun 6 '12 at 23:00
No, just a rhetorical question ;-) - It would be just logical because the Replace() method replaces every occurrence of the needle (not just the last occurrence) and I also tested it. However, it's a nice idea to do something like subtraction on strings. – fridojet Jun 7 '12 at 18:19
... What about String.TrimEnd() ($currentExecutingPath = $fullPathIncFileName.TrimEnd($currentScriptName))? - It's working correctly: "Ich bin Hamster".TrimEnd("ster") returns Ich bin Ham and "Ich bin Hamsterchen".TrimEnd("ster") returns Ich bin Hamsterchen (instead of Ich bin Hamchen) - Fine! – fridojet Jun 7 '12 at 19:24

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.