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/
|
No one seems to ask this simple question, so I will. My PowerShell script file is located: How do I get a variable that returns: |
||||
|
|
|
try this command in your script:
|
|||
|
|
|
In PowerShell 3.0 you can get it with the new 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/ |
||||
|
|
|
I'm assuming you want to know what folder your script is running in when it's being run. This should do it:
|
|||
|
|