Tuesday, April 21, 2026
Wednesday, April 15, 2026
windows 11 l2tp with ipsec issue
REG ADD HKLM\SYSTEM\CurrentControlSet\Services\PolicyAgent /v AssumeUDPEncapsulationContextOnSendRule /t REG_DWORD /d 0x2 /f
REG ADD HKLM\SYSTEM\CurrentControlSet\Services\RasMan\Parameters /v ProhibitIpSec /t REG_DWORD /d 0x0 /f
Thursday, March 19, 2026
Windows 11 TPM issues on ESXI
If you cannot enable vTPM, bypass the check during installation:
- When you see the error, press SHIFT + F10 to open the Command Prompt.
- Type
regeditand press Enter. - Navigate to
HKEY_LOCAL_MACHINE\SYSTEM\Setup. - Right-click
Setup, select New > Key, and name itLabConfig. - Inside
LabConfig, create three DWORD (32-bit) values:BypassTPMCheck-> Set to1BypassSecureBootCheck-> Set to1BypassCPUCheck-> Set to1.
- 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
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
Tuesday, July 22, 2025
Monday, June 16, 2025
Tuesday, May 27, 2025
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
Thursday, September 12, 2024
Cannot import exchangeonline powershell
To fix this you need to change the execution policy for this computer. To do this, you need to run PowerShell with administrator rights, then run this command and accept changes.
Set-ExecutionPolicy Bypass
Tuesday, August 27, 2024
Friday, August 16, 2024
Git
git remote add origin https://<PAT>@github.com/<account>/<repo>.git
git init
git add .
commit -m "
git switch master
Or:
git checkout master git remote -v
# View existing remotes
# origin https://github.com/user/repo.git (fetch)
# origin https://github.com/user/repo.git (push)
git remote set-url origin https://github.com/user/repo2.git To check/get old values:
git config --global user.email
git config --global user.name
git config --global user.email '<git-commit-address>'git config --global user.name yournewgoodnamegit config --global --unset credential.helper git config --list --show-origin //git make a ophan brnach and checkout
git checkout --orphan latest_branch
//git add all files
git add .
//git commit message
git commit -m "commit message"
//git delete your main/master brnach (if you have main write main instead of master everywhere below)
git branch -D master
//git rename your orphan latest_branch to master
git branch -m master
//git push damn everything
git push -f origin master git fetch repo_link branchgit add .git commit -a -m "message"git push origin master
Deployment Laravel on cloud by Github
1) Git Clone
2) composer install
3) npm install
4) cp .env.example .env5) php artisan key:generate6) php artisan migrate:fresh --seed
php artisan passport:installphp artisan passport:keys --forcesudo chmod -R 0777 ./storage
Monday, August 12, 2024
folder permission for Laravel deployment
sudo chgrp -R www-data storage bootstrap/cache
sudo chmod -R ug+rwx storage bootstrap/cache
sudo chmod -R 0777 ./storage
Saturday, August 10, 2024
Sending email with Queue
php artisan queue:table.env
php artisan make:job xxxxxx php artisan make:mail xxxxx create template for mail under view\email Controller * * * * * cd /var/www/html/ilhapp && php artisan queue:work --stop-when-empty
Monday, July 29, 2024
Fontawesome in Laravel
npm install --save-dev vite
npm install --save @fortawesome/fontawesome-free
Edit or create resources/css/app.css and add the following code:
@import '@fortawesome/fontawesome-free/css/fontawesome.css';
@import '@fortawesome/fontawesome-free/css/regular.css';
@import '@fortawesome/fontawesome-free/css/solid.css';
@import '@fortawesome/fontawesome-free/css/brands.css';
Edit or create vite.config.js file in the root directory of your Laravel project and configure Vite to bundle Font Awesome along with your asset
import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';
export default defineConfig({
plugins: [
laravel({
input: ['resources/css/app.css', 'resources/js/app.js'],
refresh: true,
}),
],
});
Should you prefer SASS over CSS follow the steps outlined below.
First install SASS by running:
npm install -D sass
Then edit resources/app.js and copy+paste the following code:
import './bootstrap';
import '@fortawesome/fontawesome-free/scss/fontawesome.scss';
import '@fortawesome/fontawesome-free/scss/brands.scss';
import '@fortawesome/fontawesome-free/scss/regular.scss';
import '@fortawesome/fontawesome-free/scss/solid.scss';
import '@fortawesome/fontawesome-free/scss/v4-shims.scss';
