Yuriy Samorodov

Results 10 comments of Yuriy Samorodov

@glebanya-git , nope. =(

Hi @ingepepe , could you please update module? We are already on `PnP,PowerShell 1.5.54` Personally I am not able to replicate that issue even on `PnP.PowerShell 1.5.42` Could you please...

Hey @ingepepe , could you please confirm endpoint you are connecting to? Please note you have to connect to source site to move files and folders.

@veronicageek , sorry for the confusion. My idea is to be able utilize just one credential entry for `contoso.sharepoint.com`, `contoso-admin.sharepoint.com` and possibly `contoso-my.sharepoint.com` From programming perspective that requires adding just...

Thank you @veronicageek! In fact, this is what I have tried first once I got my hands on `Add-PnPStoredCredential` cmdlet. Should not be considered as a priority anyway. Just my...

Thanks for supporting, @ToddKlindt. To extend my request: the most convenient credential implementation I have seen to date is `Connect-ExchangeOnline`, where I could fire up PowerShell as a specific user...

Seems like openconnect-sso is not there yet ![image](https://user-images.githubusercontent.com/5260172/180681521-8cb03c1e-3720-4f35-bf08-c364317b195f.png)

Can confirm the same issue. **Workaround**: In my case making both email, user name and nickmame lowercase allowed me to login successfully. It happily accepted upper case letters, special characters...

Update: Tried the following code as per the suggestion from @Zerg00s https://github.com/pnp/PnP-PowerShell/issues/847#issuecomment-327041671 ```powershell $list = Get-PnPList 'Slide' -Includes ReadSecurity, WriteSecurity $list.ReadSecurity = 1 $list.WriteSecurity = 2 $list.Update() $list.Context.ExecuteQuery() ``` However,...