เป็นไปได้หรือไม่ที่จะมีหน้าต่างพรอมต์คำสั่งที่โปร่งใสเล็กน้อยใน Vista หรือ Windows 7
พวกเขาเป็นทางเลือกของบุคคลที่สามหรือไม่?
เป็นไปได้หรือไม่ที่จะมีหน้าต่างพรอมต์คำสั่งที่โปร่งใสเล็กน้อยใน Vista หรือ Windows 7
พวกเขาเป็นทางเลือกของบุคคลที่สามหรือไม่?
คำตอบ:
ฉันชอบคอนโซลมันสนับสนุนความโปร่งใสเช่นเดียวกับพร้อมรับคำสั่งแบบแท็บ
หากคุณกำลังมองหาเหลือบเป็นผล Aero คุณสามารถใช้กระจก CMD
หากต้องการทำให้ cmd และ powershell windows ที่ทำงานอยู่ในปัจจุบันทั้งหมดของคุณทำงานใน terminal powershell (windows ที่เปิดหลังจากที่คุณเรียกใช้งานนี้จะไม่โปร่งใสและระบบของคุณจะไม่ได้รับการแก้ไข):
$user32 = Add-Type -Name User32 -Namespace Win32 -PassThru -MemberDefinition '[DllImport("user32.dll")]public static extern int GetWindowLong(IntPtr hWnd, int nIndex);[DllImport("user32.dll")]public static extern int SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong);[DllImport("user32.dll", SetLastError = true)]public static extern bool SetLayeredWindowAttributes(IntPtr hWnd, uint crKey, int bAlpha, uint dwFlags);'
Get-Process | Where-Object { @('powershell', 'cmd') -contains $_.ProcessName } | % {$user32::SetWindowLong($_.MainWindowHandle, -20, ($user32::GetWindowLong($_.MainWindowHandle, -20) -bor 0x80000));$user32::SetLayeredWindowAttributes($_.MainWindowHandle, 0, 200, 0x02)}
ในการทำให้หน้าต่างเทอร์มินัล powershell ของคุณโปร่งใสเสมอ (สิ่งนี้จะเปลี่ยนแปลงไฟล์โปรไฟล์ powershell เฉพาะผู้ใช้ของคุณ):
if (-not Test-Path -Path $profile) { New-Item -path $profile -type file -force }
Add-Content -Path $profile -Value '$user32 = Add-Type -Name ''User32'' -Namespace ''Win32'' -PassThru -MemberDefinition ''[DllImport("user32.dll")]public static extern int GetWindowLong(IntPtr hWnd, int nIndex);[DllImport("user32.dll")]public static extern int SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong);[DllImport("user32.dll", SetLastError = true)]public static extern bool SetLayeredWindowAttributes(IntPtr hWnd, uint crKey, int bAlpha, uint dwFlags);'''
Add-Content -Path $profile -Value 'Get-Process | Where-Object { @(''powershell'', ''cmd'') -contains $_.ProcessName } | % { $user32::SetWindowLong($_.MainWindowHandle, -20, ($user32::GetWindowLong($_.MainWindowHandle, -20) -bor 0x80000)) | Out-Null;$user32::SetLayeredWindowAttributes($_.MainWindowHandle, 0, 200, 0x02) | Out-Null }'
มียูทิลิตี "ใช้ความโปร่งใสให้กับหน้าต่างแบบสุ่มใด ๆ " มากกว่าที่คุณสามารถทำได้ Google ขึ้นหนึ่งและให้มันยิง คุณสามารถปรับความโปร่งแสงในหน้าต่างใดก็ได้รวมถึงคอนโซล
ลองดูที่ PowerCmd ดูที่เทอร์มินัลอีมูเลเตอร์พร้อมบานหน้าต่างแยกสำหรับ Windows 7 (64 บิต)