Mar 12, 2025

Best Practics to Install Windows 10/ 11 Guest on Proxmox VE 8 | 在Proxmox VE 8 安裝 Windows 10/11 的最佳效能設置

 

To achieve the best possible performance when installing a Windows system on Proxmox VE, it's recommended to follow the official guidelines outlined here: https://pve.proxmox.com/wiki/Windows_11_guest_best_practices

The key is that in addition to some configuration options, you must first mount a specific driver ISO and load it during the installation process. Finally, install SPICE within the Windows guest to enhance remote performance.

It's worth noting that in newer versions, simply checking the box on the OS page and selecting the specific driver ISO is sufficient(enable Add a additional drive for VirtIO drivers). There's no need to manually add another CD/DVD drive, which is very convenient!


 

Troubleshooting Windows Activation: Changing Your Product Key to a Volume License KMS Key | 無法啟用 Windows,如何更改windows 序號為大量授權 KMS

 
If you've installed Windows using an ISO downloaded directly from the Microsoft website, you might find that your organization's Key Management Service (KMS) activation method doesn't work. 
This is because the default product key is not a KMS key. To resolve this, you need to change your Windows product key to a KMS version.
Change the product key to the Windows 11 Professional version: W269N-WFGWX-YVC9B-4J6C9-T83GX. Then, follow these steps to activate Windows:
  1. Go to System > Activation and select Change product key.



  2. Enter the product key: W269N-WFGWX-YVC9B-4J6C9-T83GX.
  3. Click Activate. Alternatively, you can use your organization's provided activation method.

Feb 15, 2024

Sep 15, 2020

how to add code highlight in new version of Blogger 如何在新版的 Blogger 中上色程式碼

如果要在 Blogger 中將程式碼排版並上色,需要安裝第三方的工具


Resolution 解決方案

1. Open "Theme" >  click arrow from "CUSTOMIZE" menu > "Edit HTML"

打開 "主題" >  點擊"自訂"旁的箭頭 > "編輯 HTML"

 


 2.add code below after </title> tag then click save button

在 </title> 標籤後面加入以下的程式碼後按下儲存按鈕

<title><data:blog.pageTitle/></title>

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.2.0/styles/agate.min.css"></link>
<script src='https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.2.0/highlight.min.js'></script>
<script>hljs.initHighlightingOnLoad();</script>    

3. in "HTML view" mode, add your code between <pre><code> and </pre></code>

在 "HTML 檢視" 模式中,將程式碼放在在標籤<pre><code> 與 </pre></code> 的中間


 

Reference 參考

https://therealweblog.blogspot.com/2019/05/how-to-format-code-snippets-in-blogger.html