Thursday, March 19, 2026

Windows 11 TPM issues on ESXI

 If you cannot enable vTPM, bypass the check during installation:

  1. When you see the error, press SHIFT + F10 to open the Command Prompt.
  2. Type regedit and press Enter.
  3. Navigate to HKEY_LOCAL_MACHINE\SYSTEM\Setup.
  4. Right-click Setup, select New > Key, and name it LabConfig.
  5. Inside LabConfig, create three DWORD (32-bit) values:
    • BypassTPMCheck -> Set to 1
    • BypassSecureBootCheck -> Set to 1
    • BypassCPUCheck -> Set to 1.
  6. Close the editor and Command Prompt, then proceed with installation.

Monday, December 29, 2025

You can't access this shared folder because your organization's security policies block unauthenticated guest access.

Fixed using Powershell:

Set-SmbClientConfiguration -EnableInsecureGuestLogons $true -Force

Set-SmbClientConfiguration -RequireSecuritySignature $false -Force

Set-SmbServerConfiguration -RequireSecuritySignature $false -Force

Wednesday, September 3, 2025

CHR installation ESXI 6

 https://www.youtube.com/watch?v=s3t5Mz45L8Q

 

vmkfstools -i chr-7.19.4.vmdk chrnewlicense.vmdk -d thin 

vmkfstools -X 512M chrnewlicense.vmdk 

Sunday, December 8, 2024

Office 365 SMPT

 PS C:\Users\akmyi> Connect-ExchangeOnline

----------------------------------------------------------------------------------------
This V3 EXO PowerShell module contains new REST API backed Exchange Online cmdlets which doesn't require WinRM for Client-Server communication. You can now run these cmdlets after turning off WinRM Basic Auth in your client machine thus making it more secure.

Unlike the EXO* prefixed cmdlets, the cmdlets in this module support full functional parity with the RPS (V1) cmdlets.

V3 cmdlets in the downloaded module are resilient to transient failures, handling retries and throttling errors inherently.

REST backed EOP and SCC cmdlets are also available in the V3 module. Similar to EXO, the cmdlets can be run without WinRM basic auth enabled.

For more information check https://aka.ms/exov3-module
----------------------------------------------------------------------------------------

PS C:\Users\akmyi> Set-TransportConfig -SmtpClientAuthenticationDisabled $false
PS C:\Users\akmyi> Get-TransportConfig | Format-List SmtpClientAuthenticationDisabled


SmtpClientAuthenticationDisabled : False