Taken directly from Microsoft:
Users who can create groups need to have Azure AD P1 licenses.
...Taken directly from Microsoft:
Users who can create groups need to have Azure AD P1 licenses.
...Without access to vCenter, or on the host with vCenter installed:
https://tinkertry.com/easy-update-to-latest-esxi
Special thanks to tinkertry.com
...Using Powershell
Get-ChildItem d:\scripts -Directory -Recurse| ForEach-Object{ [pscustomobject]@{ FullName = $_.Fullname FileCount = $_.GetFiles().Count } } | Out-File -FilePatch c:\temp\filename.txt...
Special thanks to Shane Young https://www.youtube.com/channel/UC7_OGRP8BYvtGB8eZdPG6Ng
Powershell admin credentials
install-Module -Name SharePointPnPPowerShellOnline
Assign file to a variable:
$Variable = get-ChildItem location\file.ext
Add-PnpFile -Path $cow -Folder "Document Library Use Quotes" -Values @{Modified=VARIABLE.LastWriteTimeUtc;Created=VARIABLE.CreationTimeUtc}
Get-ChildItem '\server\share'
ForEach-Object {
Add-PnpFile -Path $_.FullName -Folder "Shared Documents" -Values @{Modified=$_.LastWriteTimeUtc;Created=$_.CreationTimeUtc}
}
When implementing Azure AD Sync in an existing Office 365 tenant with populated users it is sometimes necessary to hard match users to ensure that On-Prem users are not created as new users in Office 365.
Typically I will install AD Sync and try soft matching first (where email address and upn name are matched. If duplicates get created, pause AD-Sync, Delete the newly created users from Office 365. Purge them from the recycle bin:
Connect-MsolService
Get-MsolUser -ReturnDeletedUsers
Remove-MsolUser -UserPrincipalName EMAILADDRESSHERE -RemoveFromRecycleBin
Once the user(s) have been deleted you can match them by their immutableID. Run this in PowerShell on the Domain Controller.
$credential = Get-Credential
Connect-MsolService -Credential $credential
$ADUser = "username"
$365User = "username@emaildomainname.com"
$guid =(Get-ADUser $ADUser).Objectguid
$immutableID=[system.convert]::ToBase64String($guid.tobytearray())
Set-MsolUser -UserPrincipalName...