diff --git a/scripts/vm/vm_creator.sh b/scripts/vm/vm_creator.sh
index 35682ba..bd2a55c 100644
--- a/scripts/vm/vm_creator.sh
+++ b/scripts/vm/vm_creator.sh
@@ -385,9 +385,42 @@ select_interface_type
msg_ok "$(translate "Boot order set to") $BOOT_FINAL"
# Crear descripción
- local DESC="
$HN
Created with ProxMenux
$DISK_INFO
"
- qm set "$VMID" -description "$DESC" >/dev/null
- msg_ok "$(translate "VM description configured")"
+ # local DESC="$HN
Created with ProxMenux
$DISK_INFO
"
+ # qm set "$VMID" -description "$DESC" >/dev/null
+ # msg_ok "$(translate "VM description configured")"
+
+
+
+ HTML_DESC="
+
+
+
+
+ |
+
+$HN
+Created with ProxMenux
+ |
+
+
+
+
+
+
+
+
+
+
+${DISK_INFO}
+
+
"
+
+msg_info "$(translate "Setting VM description")"
+if ! qm set "$VMID" -description "$HTML_DESC" >/dev/null 2>&1; then
+ msg_error "$(translate "Failed to set VM description")"
+else
+ msg_ok "$(translate "VM description configured")"
+fi
# Arrancar la VM si corresponde
if [[ "$START_VM" == "yes" ]]; then