Saturday, September 12, 2026

Install Sysmon with SwiftOnSecurity

# Download Sysmon

 

Invoke-WebRequest -Uri https://live.sysinternals.com/Sysmon64.exe -OutFile "C:\tools\Sysmon64.exe"

 

# Use SwiftOnSecurity community configuration file to install

 

Invoke-WebRequest -Uri https://raw.githubusercontent.com/SwiftOnSecurity/sysmon-config/master/sysmonconfig-export.xml -OutFile "C:\tools\sysmonconfig.xml"

 

# Install sysmon by apply those configuration (Required administrator right)

 

C:\tools\Sysmon64.exe -accepteula -i "C:\tools\sysmonconfig.xml"

 

Uploaded Image

 

Uploaded Image

 

Print Friendly and PDF
Share/Bookmark

ASUS Ascent GX10 — USB 開機重灌指南

 NVIDIA DGX OS 7.4.0-3 安裝流程

前置準備

Step 1:製作可開機 USB

標準的直接複製檔案或基本 Rufus 設定,往往會破壞 NVIDIA DGX Spark 架構所需的 EFI 分區配置。請嚴格按照以下設定操作:

  1. 打開 RufusWindows
  2. 裝置:選擇目標 USB 隨身碟
  3. 開機選項:點「選取」載入 DGX OS .iso 檔案
  4. 關鍵設定
    • 分割配置類型:GPT
    • 目標系統:UEFI(非 CS M
    • 檔案系統:FAT32
  5. 點擊 開始ISO 映像模式寫入(非 DD 模式)

 

Step 2:清除並調整 UEFI/BIOS 設定

GX10 會在系統金鑰或 Secure Boot 配置處於無效狀態時,封鎖恢復媒體。必須重置這些設定:

2a. 重置 UEFI 預設值

  1. 開機反覆按 [Del] 進入 BIOS
  2. 導航至 Save & Exit 頁籤
  3. 選擇 Restore DefaultsLoad Optimized Defaults確認

2b. 修復 Secure Boot 金鑰

  1. 進入 SecuritySecure Boot
  2. Secure Boot 改為 Custom
  3. 選擇 Restore Factory Keys確認
  4. Secure Boot 改回 Enabled / Standard
  5. [F4] 儲存變更並重啟

 

Step 3:使用 Boot Override 啟動安裝程式

GX10 預設優先載入內部 NVMe 儲存,如果先前發生過開機錯誤,標準的開機優先順序設定會被忽略。必須使用 Boot Override

  1. 保持 USB 已插入重啟時反覆按 [Del] 進入 BIOS
  2. 直接導航至 Save & Exit 頁籤
  3. 向下捲動至 Boot Override 區塊
  4. 選擇標示為 UEFI: USB... Partition 1 的項目 Enter
  5. GRUB 選單載入後:
    • DGX Spark Installation Options
    • Install DGX OS 7.4.0 for DGX Spark
  6. 等待安裝完成
Print Friendly and PDF
Share/Bookmark

Monday, February 23, 2026

Fortinet Fortigate Firewall - SSL Inspection - Certificate Inspection and Deep (Full) Inspection

 


Print Friendly and PDF
Share/Bookmark

Wednesday, February 18, 2026

oCam suddenly required administrator right to open under normal user right account

 Solution:

1. Go to %AppData%\bxview under normal user right account, rename the folder "bxview".

2. Change normal user right account from "Users" group to "Administrators" group. Reboot the machine.

3. Logout the normal user right account, login again and open the oCam app.

4. It should able to open the app.

5. Change the normal user right account from "Administrators" group back to "Users". Reboot the machine.

6. Open the oCam app again. It should back to normal.

Print Friendly and PDF
Share/Bookmark

Unable to establish secure connection to Zoom



Reason:
Windows System Time incorrect

Solution:
Enable auto time sync or manual set the correct system time.

Print Friendly and PDF
Share/Bookmark

Saturday, February 14, 2026

Enable Windows Firewall logging for drop connection and enable audit log for RDP failed

 PS C:\WINDOWS\system32> Set-NetFirewallProfile -All -LogBlocked True -LogMaxSizeKilobytes 20480

>> # Enable logging for blocked (dropped) packets across all profiles

PS C:\WINDOWS\system32> auditpol /set /subcategory:"Logon" /success:enable /failure:enable
>> # Enable auditing for both successful and failed logon attempts
The command was successfully executed.

Check firewall log:
PS C:\WINDOWS\system32> Get-Content C:\Windows\System32\LogFiles\Firewall\pfirewall.log -Tail 20

Check RDP/Logon attempts
PS C:\WINDOWS\system32> Get-WinEvent -FilterHashtable @{LogName='Security'; ID=4625} -MaxEvents 10 | Select-Object TimeCreated, Message | Format-List
>> # Find the last 10 failed RDP/Logon attempts

Print Friendly and PDF
Share/Bookmark

Tuesday, February 10, 2026

Windows 10 hardening by Microsoft Security Baseline

1. Download the Microsoft Security Compliance Toolkit 1.0 

 https://www.microsoft.com/en-us/download/details.aspx?id=55319 

2. Copy the LGPO.exe to the folder under script



2. Run Powershell command:

Get-ChildItem -Path "C:\Source\Windows-10-v22H2-Security-Baseline" -Recurse | Unblock-File

PowerShell.exe -ExecutionPolicy RemoteSigned -File .\Baseline-LocalInstall.ps1 -Win10NonDom

3. Reboot the machine

Reference:

Applying Microsoft Security Baselines | STIG and Microsoft Security Baseline-Based Hardening of a VMware Horizon on VxRail-Based VDI Environment | Dell Technologies Info Hub

https://infohub.delltechnologies.com/en-us/l/stig-and-microsoft-security-baseline-based-hardening-of-a-vmware-horizon-on-vxrail-based-vdi-environment/applying-microsoft-security-baselines/


Print Friendly and PDF
Share/Bookmark