Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
641 views
in Technique[技术] by (71.8m points)

powershell - The input object cannot be bound to any parameters?

I'm trying to set user extension properties from a powershell code with an input coming from a CSV file.

I'm getting this error:

Set-AzureADUserExtension : The input object cannot be bound to any parameters for the command either because the command does not take pipeline input or the input and its properties do not match any of the parameters that take pipeline input. At line:14 char:17

  • ... $user | Set-AzureADUserExtension -ObjectId $upn -ExtensionName "e ...
  • CategoryInfo : InvalidArgument: (class User { ...Type: Member } :PSObject) [Set-AzureADUserExtension], ParameterBindingException
  • FullyQualifiedErrorId : InputObjectNotBound,Microsoft.Open.AzureAD.Graph.PowerShell.Custom.SetAzureADUserExtension

I'm kind of new to this, so it's for sure not the best.

Does anyone have any suggestions?

Thanks!

question from:https://stackoverflow.com/questions/65602386/the-input-object-cannot-be-bound-to-any-parameters

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

If you are looking for help you will need to share your code, not just the error. I verified for you that Set-AzureADUserExtension does take pipeline input for all properties. What I can't tell is where you set $UPN or why you are piping $user to the command since I can't see your code.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...