There is one case where Windows PowerShell cannot use the default parameter set even if a default parameter set name is specified. The Windows PowerShell runtime cannot distinguish between parameter sets based solely on object type. For example, if you have one parameter set that takes a takes...
Turns out, it’s a parameter of the Set-MsolUser cmdlet: PowerShell Commands Set-MsolUser -UserPrincipalName "johndoe@example.com" -UsageLocation US Set-MsolUserLicense -UserPrincipalName "johndoe@example.com" -AddLicenses "exampletenant:EXCHANGESTANDARD_ALUMNI" The...