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 have a powershell script Process-OU.ps1 to which I need to pass an argument -OU dc=LON,dc=NOM. How can this be done?

share|improve this question

1 Answer

up vote 2 down vote accepted

Like so:

 .\Process-OU.ps1 -OU "dc=LON,dc=NOM"
share|improve this answer
or .\Process-OU.ps1 -OU 'dc=LON,dc=NOM' – Kalyan Ghosh Jul 23 '11 at 20:16
@Kalyan Ghosh - Oh, the -OU was param? Updating my answer for that. – manojlds Jul 23 '11 at 20:20
1  
Or, just for fun, .\Process-OU -OU dc=LON`,dc=NOM – Keith Hill Jul 25 '11 at 2:23

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.