https://vmware.digiboy.ir/8.X/
https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/release-notes/esxi-update-and-patch-release-notes/vsphere-esxi-80u3g-release-notes.html
https://mirror.mahanserver.net/?dir=VMware/ESXI/80u3
Adam Cushing's Blog. Information interesting to Adam Cushing
https://vmware.digiboy.ir/8.X/
https://techdocs.broadcom.com/us/en/vmware-cis/vsphere/vsphere/8-0/release-notes/esxi-update-and-patch-release-notes/vsphere-esxi-80u3g-release-notes.html
https://mirror.mahanserver.net/?dir=VMware/ESXI/80u3
Install-Module Microsoft.Graph.Identity.DirectoryManagement -Scope AllUsers -Force
Import-Module Microsoft.Graph.Identity.DirectoryManagement
Connect-MgGraph -Scopes "Organization.ReadWrite.All", "Directory.ReadWrite.All"
$orgId = (Get-MgOrganization).Id
Update-MgOrganization -OrganizationId $orgId -OnPremisesSyncEnabled:$false
(Get-MgOrganization).OnPremisesSyncEnabled
# Should return: False
To force user to change at next login and log them out.
Install-Module Microsoft.Graph.Users -Scope AllUsers -Force
Install-Module Microsoft.Graph.Users.Actions -Scope AllUsers -Force
Import-Module Microsoft.Graph.Users
Import-Module Microsoft.Graph.Users.Actions
Connect-MgGraph -Scopes "User.ReadWrite.All", "Directory.AccessAsUser.All"
$email = "user@domain.com"
# Force password change at next login
Update-MgUser -UserId $email -PasswordProfile @{ ForceChangePasswordNextSignIn = $true }
# Confirm it's flagged
Get-MgUser -UserId $email -Property PasswordProfile | Select-Object UserPrincipalName, @{Name="ForceChange";Expression={$_.PasswordProfile.ForceChangePasswordNextSignIn}}
# Revoke sign-in sessions (log them out of everything)
Revoke-MgUserSignInSession -UserId $email
Forget all of the former connection to 365. Microsoft broke it as of ... 3/2025.
Find-Module ExchangeOnlineManagement -AllVersions
Remove-Module ExchangeOnlineManagement
Uninstall-Module ExchangeOnlineManagement -AllVersions -Force
Install-Module ExchangeOnlineManagement -RequiredVersion 3.7.2 -Scope AllUsers
Import-Module ExchangeOnlineManagement -RequiredVersion 3.7.2
Connect-ExchangeOnline
regedit
and press Enter.HKEY_LOCAL_MACHINE\SYSTEM\Setup
1
1
1
(if needed)
Resolving FortiClient Stuck on 'Connecting' with SAML on Windows 11
I encountered an issue where FortiClient would hang on "connecting" when using SAML authentication on new Windows 11 machines. After some troubleshooting, I found the solution: install the latest version of the Microsoft Visual C++ Redistributable.
https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170