Windows 10 LTSC 
Sunday, July 13, 2025, 02:47 PM
Posted by Administrator
Windows 10 LTSC is supported until 2032.

Download Windows 10 LTSC from Microsoft

Find a Activation key at Microsoft

add comment ( 3 views )   |  permalink   |  $star_image$star_image$star_image$star_image$star_image ( 3 / 67 )
What do you eat? 
Monday, June 9, 2025, 07:39 PM
Posted by Administrator


What do YOU eat?


How often in a day do you eat?


Watch the following
SECRETS of U.S Foods

add comment ( 71 views )   |  permalink   |  $star_image$star_image$star_image$star_image$star_image ( 3 / 268 )
Clean Windows 10/11 setup/installer .xml - iso 
Saturday, May 17, 2025, 10:32 AM
Posted by Administrator
Generate autounattend.xml files for Windows 10/11

https://schneegans.de/windows/unattend-generator/

1 comment ( 88 views )   |  permalink   |  $star_image$star_image$star_image$star_image$star_image ( 2.9 / 286 )
How to check if Microsoft Recall (Windows 11 ver. 24H2) is enabled? 
Friday, May 16, 2025, 02:04 PM
Posted by Administrator
How to check if Microsoft (Windows 11 ver. 24H2)is enabled?

cmd (Command Prompt) as Administrator
Check Status: Dism /Online /Get-Featureinfo /Featurename:Recall
Disable: Dism /Online /Disable-Feature /Featurename:Recall
Enable: Dism /Online /Enable-Feature /Featurename:Recall
add comment ( 4 views )   |  permalink   |  $star_image$star_image$star_image$star_image$star_image ( 3 / 136 )
Set an .exe to run in High Priority. 
Thursday, May 15, 2025, 07:28 AM
Posted by Administrator
To avoid manually adjusting the process priority to "high" each time, here's how you can automate it:

Method 1: Batch File

1. Open Notepad.
2. Enter the following command: `start /high "program.exe"` (Replace `"program.exe"` with the actual name of the program's executable file).
3. Save the file with a `.bat` extension (e.g., `run_program.bat`).

Double-clicking this batch file will launch the program with high priority.

Method 2: WMI Command-Line

1. Open Notepad.
2. Enter the following commands:

`start /high "program.exe"` (Replace `"program.exe"` with the actual name of the program's executable file).
`wmic process where name="program.exe" CALL setpriority "high priority"`
3. Save the file with a `.bat` extension (e.g., `run_program_high_priority.bat`).

Double-clicking this batch file will launch the program and then set its priority to high.

Method 3: Registry Editor - My preferred method!
To permanently set (program/game(s).exe) priorities to high, you can modify the Windows Registry. Here's how:

Registry Location:
Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options

Create Keys:
Create a new key under "Image File Execution Options" for each program/game executable you want to prioritize (e.g., Program.exe, Program_01.exe). (Some games or programs run more than 1)
Add "PerfOptions" Key:
Under each Program/game executable key, create a new key named "PerfOptions".
Create "CpuPriorityClass" DWORD (32-bit) Value:
Within the "PerfOptions" key, create a new DWORD (32-bit) Value named "CpuPriorityClass".
Set the value of "CpuPriorityClass" to 3 (This corresponds to "High" priority).

add comment ( 16 views )   |  permalink   |  $star_image$star_image$star_image$star_image$star_image ( 3 / 256 )

| 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Next> Last>>