Archive for the 'Windwos' Category

If OneDrive does not start automatically on window

Sunday, March 16th, 2025

ถ้า Onedrive ไม่สามารถเปิดตอน start windows สามารถแก้ปัญหาได้โดย 2. สร้างไฟล์ OneDrive.cmd ด้วย notepad หรือ editor ที่คุณถนัด แล้วใส่ค่าตามนี้ @echo off start /D “C:\Program Files\Microsoft OneDrive\” /MIN OneDrive.exe exit

install podman on wsl2

Friday, October 15th, 2021

Step install podman on wsl2 Check version id (VERSION_ID) 1 2 3 $ $ cat /etc/lsb-release $$ $ cat /etc/lsb-release $ DISTRIB_ID=UbuntuDISTRIB_RELEASE=18.04DISTRIB_CODENAME=bionicDISTRIB_DESCRIPTION=”Ubuntu 18.04.5 LTS” => DISTRIB_RELEASE is VERSION_ID 2. Run add sources list 1 2 3 $ $ echo "deb https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_${VERSION_ID}/ /" | sudo tee /etc/apt/sources.list.d/devel:kubic:libcontainers:stable.list $$ $ echo "deb https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_${VERSION_ID}/ /" | sudo tee […]

Windows Kill Process PORT Number

Tuesday, August 27th, 2019

เปิด Command Prompt ขึ้นมา ขั้นที่ 1 หา port โดยใช้ command netstat และ findstr เพื่อหา port ที่เราต้องการอีกที 1 2 3 C:\ C:\netstat -ano | findstr :[port] C:\C:\ C:\netstat -ano | findstr :[port] C:\ ขั้นที่ 2 เมื่อได้ port มาแล้ว ก็ kill มันซะ โดยใช้ command taskkill 1 2 3 C:\ C:\taskkill /PID 20196 /F C:\C:\ C:\taskkill /PID 20196 […]