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.

I would like to pass in a path variable --> param ([string]$w) into another parameter that store the path in power shell script. Then this power shell script is called using another batch file. I failed to pass in the $ which is the folder name that completes the full path . Please suggest me solution on this

$FilePath = "C:\Root\Main\Subfolder\param ([string]$w)\Table\" 
$FileExists = Test-Path $FilePath 

  If ($FileExists -eq $True) 
     { Get-ChildItem -path C:\Root\Main\Subfolder\param ([string]$w)\Table\ -Recurse -Filter *.sql |
      ` Sort-Object -Property DirectoryName -Desc | `
      Foreach-Object -Process {$_.FullName } |ForEach-Object {sqlcmd -i $_}
     }

  Else {Write-Host "No file at this location"}

This is my batch file command line

 PowerShell.Exe -File C:\Users\AZ\Desktop\PowerShell\untitled7.ps1 "Payment"
share|improve this question

1 Answer

up vote 0 down vote accepted

Try putting this at the top of your script:

param(
        [Parameter(
                    Mandatory=$true,
                    Position=0,
                    HelpMessage='Set path variable')]
        [string] $w
)

Replace:

param ([string]$w)

with:

$w

where it appears in your script.

share|improve this answer
Hi @nimizen , Thanks a lot for your solution. It works perfectly. Have a nice day! – Henry_Cornell Aug 8 '12 at 9:35

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.