vote up 2 vote down star
1

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?

flag

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 at 21:54

2 Answers

vote up 4 vote down check

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

$ScriptName = $MyInvocation.MyCommand.Name
link|flag
vote up 3 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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