
[AD-DS/AAD] Tools to upload profile pictures to AD-DS and AAD
I got asked several times what tools do I use to upload user pictures in AD-DS and in AAD. So, here goes: For AD-DS: http://www.cjwdev.co.uk/Software/ADPhotoEdit/Info.html […]
I got asked several times what tools do I use to upload user pictures in AD-DS and in AAD. So, here goes: For AD-DS: http://www.cjwdev.co.uk/Software/ADPhotoEdit/Info.html […]
OK, so you just found out using SPCB (https://github.com/bramdejager/spcb) that one of your columns is read-only and you want to try to make it read-write. […]
So, here goes: Site column:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
#Config Variables $SiteURL = https://tenant.sharepoint.com/ $ColumnName= "BING_x0020_BANG" #Internal Name of the column Try { #Connect to PnP Online Connect-PnPOnline -Url $SiteURL -Interactive #Remove Site column Remove-PnPField -Identity $ColumnName -Force -ErrorAction Stop Write-host "Site Column '$ColumnName' Removed From the site Successfully!" -f Green } catch { write-host "Error: $($_.Exception.Message)" -foregroundcolor Red } |
When I mentioned Internal Name of the column, I mean this one 🙂 List column:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
#Config Variables $SiteURL = https://tenant.sharepoint.com $ListName= "Projects" $ColumnName= "Column1" #Internal Name Try { #Connect to PnP Online Connect-PnPOnline -Url $SiteURL -Interactive #sharepoint online powershell delete list column Remove-PnPField -Identity $ColumnName -List $ListName -Force -ErrorAction Stop Write-host "Column '$ColumnName' Removed from the List Successfully!" -f Green } catch { write-host "Error: $($_.Exception.Message)" -foregroundcolor Red } |
Enjoy!
Copyright © 2025 | PhoeNIXBird Networks