ask me คุย กับ AI




AMP



Table of Contents



การเปิดใช้งานและปิดการใช้งาน Hyper-V: สิ่งจำเป็นสำหรับการใช้งาน Docker และ WSL2 บน Windows

บทนำ: ความสำคัญของ Hyper-V สำหรับ Docker และ WSL2

Hyper-V เป็นเทคโนโลยี Virtualization ที่สำคัญของ Microsoft ซึ่งเป็นหัวใจหลักในการทำงานของ Docker Desktop และ Windows Subsystem for Linux version 2 (WSL2) บนระบบปฏิบัติการ Windows การทำความเข้าใจวิธีเปิดและปิด Hyper-V อย่างถูกต้อง รวมถึงการตั้งค่าฟีเจอร์ที่จำเป็น เป็นสิ่งสำคัญสำหรับผู้ที่ต้องการใช้เครื่องมือเหล่านี้ในการพัฒนาและจัดการแอปพลิเคชัน การเปิดใช้งาน Hyper-V จะทำให้คุณสามารถสร้างและจัดการ Virtual Machine ได้อย่างมีประสิทธิภาพ ซึ่งเป็นพื้นฐานสำคัญสำหรับการรัน Container ด้วย Docker และการใช้ Linux environment ที่ราบรื่นด้วย WSL2 บทความนี้จะพาคุณไปทำความเข้าใจทุกขั้นตอนอย่างละเอียด ตั้งแต่การตรวจสอบความพร้อมของระบบ ไปจนถึงการแก้ไขปัญหาที่อาจเกิดขึ้น เพื่อให้คุณสามารถใช้งาน Docker และ WSL2 ได้อย่างเต็มประสิทธิภาพ


HyperV_Switcher.bat
 


@echo off
setlocal

:menu
cls
echo ===============================================
echo     Hyper-V Switcher
echo ===============================================
echo [1] Disable Hyper-V and related features (Enable VMware)
echo [2] Enable Hyper-V and related features (For Docker/WSL2)
echo [3] Exit
echo ===============================================
set /p choice=Enter your choice (1/2/3): 

if "%choice%"=="1" goto disable_hyperv
if "%choice%"=="2" goto enable_hyperv
if "%choice%"=="3" exit
goto menu

:disable_hyperv
echo.
echo Disabling Hyper-V and related features...
echo -------------------------------------------
dism.exe /Online /Disable-Feature:Microsoft-Hyper-V /All /NoRestart
dism.exe /Online /Disable-Feature:VirtualMachinePlatform /NoRestart
dism.exe /Online /Disable-Feature:Windows-Subsystem-Linux /NoRestart
dism.exe /Online /Disable-Feature:Containers /NoRestart
bcdedit /set hypervisorlaunchtype off
echo.
echo Hyper-V and related features have been disabled.
echo Please restart your computer for changes to take effect.
pause
exit

:enable_hyperv
echo.
echo Enabling Hyper-V and related features...
echo -------------------------------------------
dism.exe /Online /Enable-Feature:Microsoft-Hyper-V /All /NoRestart
dism.exe /Online /Enable-Feature:VirtualMachinePlatform /NoRestart
dism.exe /Online /Enable-Feature:Windows-Subsystem-Linux /NoRestart
dism.exe /Online /Enable-Feature:Containers /NoRestart
bcdedit /set hypervisorlaunchtype auto
echo.
echo Hyper-V and related features have been enabled.
echo Please restart your computer for changes to take effect.
pause
exit





 

Introduction: The Importance of Hyper-V for Docker and WSL2

Hyper-V is a crucial virtualization technology by Microsoft, serving as the backbone for Docker Desktop and Windows Subsystem for Linux version 2 (WSL2) on Windows operating systems. Understanding how to correctly enable and disable Hyper-V, along with configuring the necessary features, is essential for anyone looking to use these tools for application development and management. Enabling Hyper-V allows you to create and manage virtual machines efficiently, which is fundamental for running containers with Docker and using a seamless Linux environment with WSL2. This article will guide you through every step in detail, from checking system readiness to troubleshooting potential issues, ensuring you can fully utilize Docker and WSL2 effectively.

การตรวจสอบความพร้อมของระบบก่อนเปิดใช้งาน Hyper-V

การตรวจสอบความเข้ากันได้ของฮาร์ดแวร์

ก่อนที่จะเริ่มเปิดใช้งาน Hyper-V คุณจำเป็นต้องตรวจสอบว่าฮาร์ดแวร์ของคุณรองรับเทคโนโลยี Virtualization หรือไม่ ซึ่งโดยทั่วไปแล้ว CPU รุ่นใหม่ๆ ส่วนใหญ่จะรองรับฟีเจอร์นี้ แต่คุณอาจต้องตรวจสอบเพิ่มเติมเพื่อความแน่ใจ วิธีที่ง่ายที่สุดคือการตรวจสอบผ่าน Task Manager โดยการกด Ctrl+Shift+Esc แล้วไปที่แท็บ Performance เลือก CPU แล้วมองหาหัวข้อ Virtualization หากขึ้นว่า Enabled แสดงว่า CPU ของคุณรองรับ หากขึ้นว่า Disabled หรือ Not supported คุณอาจต้องเข้าไปตั้งค่าใน BIOS หรือ UEFI Firmware Settings ของคอมพิวเตอร์ของคุณ โดยทั่วไปแล้วการตั้งค่านี้จะอยู่ในส่วนที่เกี่ยวข้องกับ CPU หรือ Security และมักจะเรียกว่า "Intel Virtualization Technology (VT-x)" สำหรับ CPU Intel หรือ "AMD-V" สำหรับ CPU AMD หลังจากเปิดใช้งานแล้ว คุณจะต้องทำการรีสตาร์ทคอมพิวเตอร์เพื่อให้การตั้งค่ามีผล

Checking System Readiness Before Enabling Hyper-V

Before enabling Hyper-V, you need to verify if your hardware supports virtualization technology. Most modern CPUs support this feature, but you may need to double-check to be sure. The easiest way is to check through the Task Manager. Press Ctrl+Shift+Esc, go to the Performance tab, select CPU, and look for the Virtualization section. If it says "Enabled," your CPU supports it. If it says "Disabled" or "Not supported," you may need to enable it in your computer's BIOS or UEFI Firmware Settings. This setting is typically found under the CPU or Security sections and is often called "Intel Virtualization Technology (VT-x)" for Intel CPUs or "AMD-V" for AMD CPUs. After enabling it, you will need to restart your computer for the settings to take effect.

การตรวจสอบเวอร์ชัน Windows

Hyper-V มีอยู่ใน Windows 10 Pro, Enterprise และ Education editions หากคุณใช้ Windows 10 Home คุณจะไม่สามารถเปิดใช้งาน Hyper-V ได้โดยตรง แต่คุณอาจต้องอัปเกรดเป็น Windows 10 Pro หรือใช้ทางเลือกอื่นเช่น VirtualBox หรือ VMware Workstation เพื่อใช้งาน Docker หรือ WSL2 หากคุณไม่แน่ใจว่า Windows ของคุณเป็นเวอร์ชันอะไร คุณสามารถตรวจสอบได้โดยการกดปุ่ม Windows + R พิมพ์ "winver" แล้วกด Enter หน้าต่าง About Windows จะแสดงรายละเอียดเวอร์ชันของ Windows ที่คุณใช้อยู่

Checking Windows Version

Hyper-V is available on Windows 10 Pro, Enterprise, and Education editions. If you are using Windows 10 Home, you cannot enable Hyper-V directly. You may need to upgrade to Windows 10 Pro or use alternative solutions like VirtualBox or VMware Workstation to use Docker or WSL2. If you are unsure of your Windows version, you can check by pressing Windows key + R, typing "winver," and pressing Enter. An About Windows window will display the details of your current Windows version.

การตรวจสอบ Windows Features ที่จำเป็น

ก่อนเปิดใช้งาน Hyper-V คุณควรตรวจสอบให้แน่ใจว่า Windows Features ที่จำเป็นอื่นๆ ได้เปิดใช้งานอยู่ด้วย เช่น Virtual Machine Platform และ Windows Hypervisor Platform ซึ่งจำเป็นสำหรับการทำงานของ WSL2 และ Docker Desktop หากต้องการตรวจสอบ ให้กดปุ่ม Windows พิมพ์ "Turn Windows features on or off" แล้วกด Enter มองหาฟีเจอร์ดังกล่าวและติ๊กถูก หากยังไม่ได้เปิดใช้งาน แล้วกด OK จากนั้นรีสตาร์ทคอมพิวเตอร์เพื่อทำการเปลี่ยนแปลง

Checking Required Windows Features

Before enabling Hyper-V, you should ensure that other necessary Windows Features are also enabled, such as Virtual Machine Platform and Windows Hypervisor Platform. These are required for WSL2 and Docker Desktop to function. To check, press the Windows key, type "Turn Windows features on or off," and press Enter. Look for the mentioned features and check the boxes if they are not already enabled. Then, click OK and restart your computer to apply the changes.

วิธีการเปิดใช้งาน Hyper-V

การเปิดใช้งาน Hyper-V ผ่าน Control Panel

วิธีที่ง่ายที่สุดในการเปิดใช้งาน Hyper-V คือผ่าน Control Panel โดยการกดปุ่ม Windows พิมพ์ "Control Panel" แล้วกด Enter จากนั้นเลือก Programs แล้วเลือก Turn Windows features on or off ในหน้าต่าง Windows Features ให้เลื่อนหา Hyper-V แล้วติ๊กถูกที่ช่อง Hyper-V และ Hyper-V Management Tools หากต้องการใช้งาน Hyper-V Manager ซึ่งเป็น GUI สำหรับจัดการ Virtual Machine เมื่อเลือกเสร็จแล้ว กด OK แล้วระบบจะทำการติดตั้งฟีเจอร์และขอให้รีสตาร์ทคอมพิวเตอร์

Enabling Hyper-V via Control Panel

The easiest way to enable Hyper-V is through the Control Panel. Press the Windows key, type "Control Panel," and press Enter. Select Programs, then choose Turn Windows features on or off. In the Windows Features window, scroll down to Hyper-V and check the box for Hyper-V and Hyper-V Management Tools if you want to use Hyper-V Manager, the GUI for managing virtual machines. Once selected, click OK. The system will install the features and prompt you to restart your computer.

การเปิดใช้งาน Hyper-V ผ่าน PowerShell

อีกวิธีหนึ่งในการเปิดใช้งาน Hyper-V คือผ่าน PowerShell ซึ่งเป็นวิธีที่สะดวกสำหรับผู้ที่ต้องการใช้ Command Line ในการจัดการระบบ ให้เปิด PowerShell ในฐานะ Administrator โดยการกดปุ่ม Windows พิมพ์ "PowerShell" คลิกขวาที่ PowerShell แล้วเลือก Run as administrator จากนั้นพิมพ์คำสั่งต่อไปนี้แล้วกด Enter: `Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All` ระบบจะทำการติดตั้ง Hyper-V และขอให้รีสตาร์ทคอมพิวเตอร์ เมื่อรีสตาร์ทเสร็จ Hyper-V จะถูกเปิดใช้งาน

Enabling Hyper-V via PowerShell

Another way to enable Hyper-V is via PowerShell, which is a convenient method for those who prefer using the command line for system management. Open PowerShell as an administrator by pressing the Windows key, typing "PowerShell," right-clicking on PowerShell, and selecting Run as administrator. Then, type the following command and press Enter: `Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All`. The system will install Hyper-V and prompt you to restart your computer. Once restarted, Hyper-V will be enabled.

วิธีการปิดใช้งาน Hyper-V

การปิดใช้งาน Hyper-V ผ่าน Control Panel

หากคุณต้องการปิดใช้งาน Hyper-V คุณสามารถทำได้โดยใช้ Control Panel เช่นเดิม ให้เปิด Control Panel แล้วเลือก Programs จากนั้นเลือก Turn Windows features on or off ในหน้าต่าง Windows Features ให้เลื่อนหา Hyper-V แล้วยกเลิกการติ๊กถูกที่ช่อง Hyper-V เมื่อเสร็จแล้ว กด OK แล้วระบบจะขอให้รีสตาร์ทคอมพิวเตอร์ เมื่อรีสตาร์ทเสร็จ Hyper-V จะถูกปิดใช้งาน

Disabling Hyper-V via Control Panel

If you need to disable Hyper-V, you can do so using the Control Panel. Open the Control Panel, select Programs, then choose Turn Windows features on or off. In the Windows Features window, scroll down to Hyper-V and uncheck the box for Hyper-V. Once done, click OK, and the system will prompt you to restart your computer. After restarting, Hyper-V will be disabled.

การปิดใช้งาน Hyper-V ผ่าน PowerShell

คุณยังสามารถปิดใช้งาน Hyper-V ผ่าน PowerShell ได้เช่นกัน เปิด PowerShell ในฐานะ Administrator จากนั้นพิมพ์คำสั่งต่อไปนี้แล้วกด Enter: `Disable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V-All` ระบบจะทำการปิดใช้งาน Hyper-V และขอให้รีสตาร์ทคอมพิวเตอร์ เมื่อรีสตาร์ทเสร็จ Hyper-V จะถูกปิดใช้งาน การปิด Hyper-V อาจจำเป็นในบางกรณี เช่น เมื่อคุณต้องการใช้ Virtualization Software อื่นที่ไม่สามารถทำงานร่วมกับ Hyper-V ได้

Disabling Hyper-V via PowerShell

You can also disable Hyper-V via PowerShell. Open PowerShell as an administrator, then type the following command and press Enter: `Disable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V-All`. The system will disable Hyper-V and prompt you to restart your computer. After restarting, Hyper-V will be disabled. Disabling Hyper-V might be necessary in some cases, such as when you need to use other virtualization software that is incompatible with Hyper-V.

ปัญหาและการแก้ไขที่พบบ่อย

ปัญหา Hyper-V ไม่สามารถเปิดใช้งาน

หากคุณพบปัญหา Hyper-V ไม่สามารถเปิดใช้งานได้ ปัญหาที่พบบ่อยคือ Virtualization ยังไม่ได้เปิดใช้งานใน BIOS หรือ UEFI Firmware Settings หรืออาจมีซอฟต์แวร์ Virtualization อื่นที่ขัดแย้งกันอยู่ เช่น VirtualBox หรือ VMware Workstation คุณอาจต้องปิดซอฟต์แวร์เหล่านี้ก่อนที่จะเปิดใช้งาน Hyper-V นอกจากนี้ ตรวจสอบให้แน่ใจว่าคุณได้เปิดใช้งาน Virtual Machine Platform และ Windows Hypervisor Platform แล้ว

Common Issues and Troubleshooting

If you encounter issues where Hyper-V cannot be enabled, common problems include virtualization not being enabled in the BIOS or UEFI Firmware Settings, or conflicts with other virtualization software like VirtualBox or VMware Workstation. You may need to close these programs before enabling Hyper-V. Also, make sure you have enabled Virtual Machine Platform and Windows Hypervisor Platform.

ปัญหาประสิทธิภาพการทำงานของ Virtual Machine

หาก Virtual Machine ทำงานช้า อาจเกิดจากหลายสาเหตุ เช่น การจัดสรร RAM และ CPU ไม่เพียงพอ หรือฮาร์ดดิสก์ทำงานหนักเกินไป ลองเพิ่ม RAM ให้กับ Virtual Machine หรือย้าย Virtual Machine ไปยังฮาร์ดดิสก์ที่เร็วกว่า เช่น SSD นอกจากนี้ ตรวจสอบให้แน่ใจว่าไดรเวอร์ของการ์ดจอและส่วนประกอบอื่นๆ เป็นเวอร์ชันล่าสุด

Virtual Machine Performance Issues

If virtual machines are running slowly, it could be due to various reasons, such as insufficient RAM and CPU allocation, or heavy disk usage. Try increasing the RAM for the virtual machine or moving the virtual machine to a faster hard drive, like an SSD. Also, make sure the drivers for your graphics card and other components are up to date.

สิ่งที่น่าสนใจเพิ่มเติม

การใช้ Hyper-V Manager

Hyper-V Manager เป็นเครื่องมือ GUI ที่ช่วยให้คุณสามารถสร้างและจัดการ Virtual Machine ได้อย่างง่ายดาย คุณสามารถใช้ Hyper-V Manager เพื่อสร้าง Virtual Machine ใหม่ ปรับแต่งการตั้งค่าต่างๆ เช่น RAM, CPU, Network และ Storage รวมถึงการเปิดปิดและจัดการ Virtual Machine ได้อย่างสะดวก

Additional Interesting Points

Hyper-V Manager is a GUI tool that allows you to easily create and manage virtual machines. You can use Hyper-V Manager to create new virtual machines, customize settings such as RAM, CPU, network, and storage, as well as start, stop, and manage virtual machines conveniently.

การใช้ Hyper-V กับ Docker Desktop

Hyper-V เป็นพื้นฐานสำคัญสำหรับการทำงานของ Docker Desktop บน Windows โดย Docker Desktop จะใช้ Hyper-V ในการสร้าง Virtual Machine ที่ใช้รัน Container ทำให้คุณสามารถพัฒนาและทดสอบแอปพลิเคชันในสภาพแวดล้อม Container ได้อย่างราบรื่น

Using Hyper-V with Docker Desktop

Hyper-V is the backbone for Docker Desktop on Windows. Docker Desktop uses Hyper-V to create a virtual machine that runs containers, allowing you to develop and test applications in a containerized environment seamlessly.

การใช้ Hyper-V กับ WSL2

WSL2 ใช้ Hyper-V ในการสร้าง Linux Kernel แบบ Virtual ทำให้คุณสามารถรัน Linux Distro ได้อย่างมีประสิทธิภาพบน Windows โดยไม่มีปัญหาด้านประสิทธิภาพเหมือน WSL รุ่นแรก

Using Hyper-V with WSL2

WSL2 uses Hyper-V to create a virtual Linux kernel, allowing you to run Linux distributions efficiently on Windows without the performance issues of the first WSL version.

คำถามที่พบบ่อย

Hyper-V จำเป็นต้องเปิดใช้งานตลอดเวลาหรือไม่?

ไม่จำเป็นต้องเปิดใช้งาน Hyper-V ตลอดเวลา คุณสามารถเปิดใช้งานเมื่อต้องการใช้ Docker Desktop หรือ WSL2 และปิดใช้งานเมื่อไม่ได้ใช้งาน เพื่อลดการใช้ทรัพยากรของระบบ แต่การเปิดใช้งาน Hyper-V ไม่ได้ส่งผลกระทบต่อประสิทธิภาพของคอมพิวเตอร์มากนัก หากคุณมี RAM และ CPU ที่เพียงพอ

Frequently Asked Questions

No, Hyper-V does not need to be enabled all the time. You can enable it when you need to use Docker Desktop or WSL2 and disable it when not in use to reduce system resource usage. However, enabling Hyper-V does not significantly impact computer performance if you have sufficient RAM and CPU.

ทำไม Hyper-V ถึงไม่ทำงานหลังจากเปิดใช้งาน?

สาเหตุที่ Hyper-V ไม่ทำงานหลังจากเปิดใช้งานอาจเป็นเพราะ Virtualization ยังไม่ได้เปิดใช้งานใน BIOS หรือ UEFI Firmware Settings หรืออาจมีซอฟต์แวร์ Virtualization อื่นที่ขัดแย้งกันอยู่ คุณควรตรวจสอบการตั้งค่า BIOS หรือ UEFI และปิดซอฟต์แวร์ Virtualization อื่นๆ ที่อาจขัดแย้งกัน

Why is Hyper-V not working after enabling it?

The reason Hyper-V is not working after enabling it could be that virtualization is not enabled in the BIOS or UEFI Firmware Settings, or there might be conflicting virtualization software. You should check the BIOS or UEFI settings and close other conflicting virtualization software.

สามารถใช้ VirtualBox หรือ VMware พร้อมกับ Hyper-V ได้หรือไม่?

โดยทั่วไปแล้ว Hyper-V และ Virtualization Software อื่นๆ เช่น VirtualBox หรือ VMware Workstation ไม่สามารถทำงานร่วมกันได้ในเวลาเดียวกัน หากคุณต้องการใช้ VirtualBox หรือ VMware คุณจะต้องปิด Hyper-V ก่อน

Can VirtualBox or VMware be used alongside Hyper-V?

Generally, Hyper-V and other virtualization software such as VirtualBox or VMware Workstation cannot run concurrently. If you need to use VirtualBox or VMware, you must disable Hyper-V first.

Hyper-V มีผลต่อประสิทธิภาพการเล่นเกมหรือไม่?

โดยทั่วไปแล้ว Hyper-V ไม่ได้ส่งผลกระทบต่อประสิทธิภาพการเล่นเกมมากนัก หากคุณมี RAM และ CPU ที่เพียงพอ แต่ในบางกรณีอาจมีผลกระทบเล็กน้อย หากคุณพบปัญหาด้านประสิทธิภาพ คุณอาจต้องปิด Hyper-V ในขณะที่เล่นเกม

Does Hyper-V affect gaming performance?

Generally, Hyper-V does not significantly affect gaming performance if you have sufficient RAM and CPU. However, in some cases, there may be a slight impact. If you encounter performance issues, you may need to disable Hyper-V while gaming.

Hyper-V ใช้ทรัพยากรของระบบมากน้อยแค่ไหน?

Hyper-V ใช้ทรัพยากรของระบบตามจำนวน Virtual Machine ที่เปิดใช้งานอยู่ หากไม่มี Virtual Machine ใดๆ ทำงาน Hyper-V จะใช้ทรัพยากรน้อยมาก แต่เมื่อคุณเปิด Virtual Machine ขึ้นมา Hyper-V จะใช้ RAM, CPU และ Storage ตามที่ Virtual Machine นั้นๆ ต้องการ

How much system resources does Hyper-V use?

Hyper-V uses system resources based on the number of virtual machines running. If no virtual machines are running, Hyper-V will use very few resources. However, when you start a virtual machine, Hyper-V will use RAM, CPU, and storage as needed by that virtual machine.

เว็บไซต์อ้างอิงเพิ่มเติม

เว็บไซต์ Microsoft Docs เกี่ยวกับ Hyper-V

Microsoft Docs: Hyper-V บน Windows เป็นแหล่งข้อมูลอย่างเป็นทางการจาก Microsoft ที่ให้ข้อมูลเชิงลึกเกี่ยวกับ Hyper-V รวมถึงวิธีการติดตั้ง การใช้งาน และการแก้ไขปัญหาต่างๆ ที่อาจเกิดขึ้น

Additional Reference Websites

Microsoft Docs: Hyper-V on Windows is the official source from Microsoft that provides in-depth information about Hyper-V, including how to install, use, and troubleshoot various issues.

เว็บไซต์ How To Geek เกี่ยวกับ Hyper-V

How-To Geek: วิธีเปิดใช้งาน Hyper-V บน Windows 10 เป็นบทความที่ให้คำแนะนำอย่างละเอียดเกี่ยวกับวิธีการเปิดใช้งาน Hyper-V บน Windows 10 พร้อมภาพประกอบที่เข้าใจง่าย

How To Geek Website About Hyper-V

How-To Geek: How to Enable Hyper-V on Windows 10 is an article that provides detailed instructions on how to enable Hyper-V on Windows 10, with easy-to-understand illustrations.



วิธีเปิดและปิด Hyper-V พร้อมฟีเจอร์ที่จำเป็นสำหรับ Docker และ WSL2 บน Windows
แจ้งเตือน : บทความที่คุณกำลังอ่านนี้ถูกสร้างขึ้นโดยระบบ AI

ซึ่งมีความสามารถในการสร้างเนื้อหาที่หลากหลายและน่าสนใจ แต่ควรทราบว่าข้อมูลที่นำเสนออาจไม่ได้ถูกตรวจสอบความถูกต้องอย่างละเอียดเสมอไป ดังนั้น เราขอแนะนำให้คุณใช้วิจารณญาณในการอ่านและพิจารณาข้อมูลที่นำเสนอ

Notice : The article you are reading has been generated by an AI system

The article you are reading is generated by AI and may contain inaccurate or incomplete information. Please verify the accuracy of the information again before using it to ensure the reliability of the content.


URL หน้านี้ คือ > https://ai-thai.com/1738175880-etc-th-Entertainment.html

etc


Game




Ask AI about:

Deep_Ocean

123-2341-74

แนะนำ เทคนิคลดค่าครองชีพ
ทุกครั้ง ที่ ซื้อ ของจาก marketplace อย่าลืม กดรับคูปอง และเช็คโปรโมชั่น บัตรเครดิต ก่อน กดจ่ายเงินทุกครั้ง

กดรับ คูปอง
ก่อนจ่ายเงินทุกครั้ง อยากลืม

เทคนิคลดค่าครองชีพ
ทุกครั้ง ที่ ซื้อ ของจาก marketplace อย่าลืม กดรับคูปอง และเช็คโปรโมชั่น บัตรเครดิต ก่อน กดจ่ายเงินทุกครั้ง

กดรับ คูปอง