Tự động tắt âm thanh khi tháo tai nghe trên Windows

  1. Tác giả: LTTK CTV21
    Đánh giá: ✪ ✪ ✪ ✪ ✪

    Bạn thường xuyên nghe nhạc cũng như xem phim trên máy tính, laptop tuy nhiên, mỗi lần bạn rút tai nghe ra là âm thanh lại cứ thế tiếp tục phát hoặc phát trên loa ngoài khiến bạn và người xung quanh khó chịu (đặc biệt với phim 'đen' hoặc nhạc remix). Nhưng giờ đây mọi thứ đã “ngon lành” chỉ với một lần kích chuột duy nhất. Hôm nay, Techrum sẽ hướng dẫn bạn thủ thuật tự động tắt âm thanh trên PC khi tháo tai nghe giống như trên smartphone.

    [​IMG]
    B1: Mở Notepad:
    Có 2 cách mở notepad:

    [​IMG]
    Dùng tổ hợp lệnh nút WIN + R trên bàn phím và gõ notepad vào Run
    Dùng công cụ tìm kiếm của Windows 10
    B2: Sao chép và dán đoạn mã bên dưới vào notepad
    Mã:
    Mã (Text):
    1. [cmdletbinding()]
    2. Param()
    3. #Adding definitions for accessing the Audio API
    4. Add-Type -TypeDefinition @'
    5. using System.Runtime.InteropServices;
    6. [Guid('5CDF2C82-841E-4546-9722-0CF74078229A'), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
    7. interface IAudioEndpointVolume {
    8. // f(), g(), ... are unused COM method slots. Define these if you care
    9. int f(); int g(); int h(); int i();
    10. int SetMasterVolumeLevelScalar(float fLevel, System.Guid pguidEventContext);
    11. int j();
    12. int GetMasterVolumeLevelScalar(out float pfLevel);
    13. int k(); int l(); int m(); int n();
    14. int SetMute([MarshalAs(UnmanagedType.Bool)] bool bMute, System.Guid pguidEventContext);
    15. int GetMute(out bool pbMute);
    16. }
    17. [Guid('D666063F-1587-4E43-81F1-B948E807363F'), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
    18. interface IMMDevice {
    19. int Activate(ref System.Guid id, int clsCtx, int activationParams, out IAudioEndpointVolume aev);
    20. }
    21. [Guid('A95664D2-9614-4F35-A746-DE8DB63617E6'), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
    22. interface IMMDeviceEnumerator {
    23. int f(); // Unused
    24. int GetDefaultAudioEndpoint(int dataFlow, int role, out IMMDevice endpoint);
    25. }
    26. [ComImport, Guid('BCDE0395-E52F-467C-8E3D-C4579291692E')] class MMDeviceEnumeratorComObject { }
    27. public class Audio {
    28. static IAudioEndpointVolume Vol() {
    29. var enumerator = new MMDeviceEnumeratorComObject() as IMMDeviceEnumerator;
    30. IMMDevice dev = null;
    31. Marshal.ThrowExceptionForHR(enumerator.GetDefaultAudioEndpoint(/*eRender*/ 0, /*eMultimedia*/ 1, out dev));
    32. IAudioEndpointVolume epv = null;
    33. var epvid = typeof(IAudioEndpointVolume).GUID;
    34. Marshal.ThrowExceptionForHR(dev.Activate(ref epvid, /*CLSCTX_ALL*/ 23, 0, out epv));
    35. return epv;
    36. }
    37. public static float Volume {
    38. get {float v = -1; Marshal.ThrowExceptionForHR(Vol().GetMasterVolumeLevelScalar(out v)); return v;}
    39. set {Marshal.ThrowExceptionForHR(Vol().SetMasterVolumeLevelScalar(value, System.Guid.Empty));}
    40. }
    41. public static bool Mute {
    42. get { bool mute; Marshal.ThrowExceptionForHR(Vol().GetMute(out mute)); return mute; }
    43. set { Marshal.ThrowExceptionForHR(Vol().SetMute(value, System.Guid.Empty)); }
    44. }
    45. }
    46. '@ -Verbose
    47. While($true)
    48. {
    49. #Clean all events in the current session since its in a infinite loop, to make a fresh start when loop begins
    50. Get-Event | Remove-Event -ErrorAction SilentlyContinue
    51. #Registering the Event and Waiting for event to be triggered
    52. Register-WmiEvent -Class Win32_DeviceChangeEvent
    53. Wait-Event -OutVariable Event |Out-Null
    54. $EventType = $Event.sourceargs.newevent | `
    55. Sort-Object TIME_CREATED -Descending | `
    56. Select-Object EventType -ExpandProperty EventType -First 1
    57. #Conditional logic to handle, When to Mute/unMute the machine using Audio API
    58. If($EventType -eq 3)
    59. {
    60. [Audio]::Mute = $true
    61. Write-Verbose 'Muted [$((Get-Date).tostring())]'
    62. }
    63. elseif($EventType -eq 2 -and [Audio]::Mute -eq $true)
    64. {
    65. [Audio]::Mute = $false
    66. Write-Verbose 'UnMuted [$((Get-Date).tostring())]'
    67. }
    68. }
    B3: Lưu tệp
    [​IMG]

    Bây giờ bạn chỉ cần lưu tệp ở định dạng PS1. Khi bạn nhìn thấy hộp thoại Save File, hãy chọn All File từ trình đơn và đặt tên file là AutoMute.ps1. Tên của tập tin không phải là nhất thiết phải giống mẫu, bạn có thể chọn một cái tên gì đó dễ nhớ cũng được.
    B4: Chạy tệp
    [​IMG]

    Để kích hoạt bạn hãy nhấp chuột phải vào file mới tạo và chọn Run with PowerShell. Tính năng này sẽ hoạt động cho đến khi bạn tắt máy. Nên cần phải kích hoạt cho những lần sau. Bạn có thể tạo shortcut trên desktop để tiện cho việc kích hoạt mỗi khi mở máy, hoặc bạn có thể thiết lập file tự chạy mỗi khi mở máy bằng Task Scheduler.
    Nếu bạn gặp vấn đề khó khăn trong việc tạo file hoặc muốn file tự động chạy mỗi khi mở máy mà không biết làm như thế nào thì bạn có thể comment bên dưới trang để nhận được sự giúp đỡ.
    Chúc bạn thực hiện thành công!