Bước 1 : Tạo file Altium.ps1 như sau
Đoạn code như sau :
# Kiểm tra nếu Altium Designer là phiên bản 21
$altiumPath = "C:\Program Files\Altium\AD21"
$exeName = "X2.exe"
if (Test-Path -Path $altiumPath) {
Write-Host "Tìm thấy Altium Designer tại đường dẫn: $altiumPath"
# Mở Altium Designer
Start-Process -FilePath "$altiumPath\$exeName"
} else {
Write-Host "Không tìm thấy Altium Designer trên máy tính này."
}
Sau đó mở lên như sau :