Monday, September 1, 2025

Wednesday, August 27, 2025

Using Command and Script for Shutdown Window

+Using the Run Dialog or Command Prompt (One-Time Timer) 

    1. Open Run:
    Press the Windows key + R to open the Run dialog.
    2. Enter the command:
    Type shutdown -s -f -t [seconds] into the dialog box.
        Replace [seconds] with the number of seconds for your desired shutdown time (e.g., 3600 for one hour, 300 for five minutes). For an immediate shutdown, use 0.
    3. Press Enter:
    Click OK or press Enter to schedule the shutdown. A notification will appear confirming the scheduled shutdown.
    4. To cancel:
    Open the Run dialog again (Win + R) and type shutdown -a. Press Enter to cancel the pending shutdown.
+Using Script
    -Open Notepad and write
        @echo off
        shutdown -s -f -t 1800
        @echo off
    -save file .bat

    

Tuesday, March 11, 2025

Remove Language keyboard layout From Windows 11 / 10 | How To Delete Extra & Unwanted language

1-Window PowerShell=>Run As administrator

Windows PowerShell
Copyright (C) Microsoft Corporation. All rights reserved.
Try the new cross-platform PowerShell https://aka.ms/pscore6
 

2-user command: Get-WinUserLanguageList

LanguageTag     : en-US
Autonym         : English (United States)
EnglishName     : English
LocalizedName   : English (United States)
ScriptName      : Latin
InputMethodTips : {0409:00020409}
Spellchecking   : True
Handwriting     : False

LanguageTag     : zh-Hans-CN
Autonym         : 中文(中华人民共和国)
EnglishName     : Chinese
LocalizedName   : Chinese (Simplified, China)
ScriptName      : Chinese (Simplified)
InputMethodTips : {0804:{81D4E9C9-1D3B-41BC-9E6C-4B40BF79E35E}{FA550B04-5AD7-411F-A5AC-CA038EC515D7}}
Spellchecking   : True
Handwriting     : True

3-user command> Set-WinUserLanguageList en-us,zh-Hans-CN

Confirm
Continue with this operation?
[Y] Yes  [N] No  [S] Suspend  [?] Help (default is "Y"): y
PS C:\WINDOWS\system32> 

------------------------------

4-install KhmerUnicode2.0.1.exe

    

Tuesday, February 13, 2024

Fix Khmer font size on Telegram for desktop

 Khmer font on Telegram for desktop is very tiny by default.To fix this problem, you have change default font Microsoft windows by update registry.
Option 1:
Hold Winkey + R to open Run -> type “regedit“ (user must have Administrator privileged)
Navigate to : Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontSubstitutes

Modify file Name: MS Shell Dlg 2 to value data to your preferred font name. ex: “Khmer OS Content”
Restart your computer  

Option 2:
Don’t need to follow step in option 1. You just download this registry file save on your computer. Fix Telegram Font to KhmerOSContent.reg.

1. after download please rename file remove extension .txt(rename from Fix Telegram to KhmerOSContent.reg.txt to Fix Telegram to KhmerOSContent.reg)

    

Saturday, September 23, 2023

How to Show Hidden Files Windows 10 with CMD

 Step 1. Press Windows + R, type cmd, and press Ctrl + Shift + Enter to open elevated Command Prompt in your Windows 10 computer.

Step 2. Then you can type this command line: attrib -h -r -s /s /d E:\*.*, and hit Enter to unhide the files and folders in drive E. You should replace the drive letter with the exact drive letter of your computer. You can open This PC to check the drive letters of your computer hard drive partitions.

To help you better understand this attrib command, below is the explanation of each part of the command line.

  • –h: It clears the Hidden file attribute to show hidden files.
  • –r: It clears the Read-only file attribute to allow you modify the file after it shows.
  • –s: It clears the System file attribute.
  • /s: It applies attrib and any command-line options to matching files in the current directory and all of its subdirectories.
  • /d: It applies attrib and any command-line options to directories.