การตั้งค่ารีจิสทรี Windows 10 สำหรับการควบคุมระดับเสียง [ซ้ำกัน]


2

คำถามนี้มีคำตอบอยู่ที่นี่แล้ว:

บริษัท ของเรามีคอมพิวเตอร์ห้องประชุมหลายเครื่องที่ใช้ Windows 10 ซึ่งต้องการระดับเสียงที่ 25% เมื่อผู้ใช้เข้าสู่ระบบมีการตั้งค่ารีจิสทรีเพื่อตั้งระดับเสียงของระบบเป็น 25% ดังนั้นเสียงจะไม่ถูกปิดเสียงหรือดังเมื่อมีการประชุม จะเกิดขึ้น?



คำตอบ:


2

คุณสามารถใช้PowerShellต่อไปนี้เพื่อเปลี่ยนระดับเสียง:

Add-Type -TypeDefinition @'

using System.Runtime.InteropServices;
[Guid("5CDF2C82-841E-4546-9722-0CF74078229A"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
interface IAudioEndpointVolume {
  // f(), g(), ... are unused COM method slots. Define these if you care
  int f(); int g(); int h(); int i();
  int SetMasterVolumeLevelScalar(float fLevel, System.Guid pguidEventContext);
  int j();
  int GetMasterVolumeLevelScalar(out float pfLevel);
  int k(); int l(); int m(); int n();
  int SetMute([MarshalAs(UnmanagedType.Bool)] bool bMute, System.Guid pguidEventContext);
  int GetMute(out bool pbMute);
}
[Guid("D666063F-1587-4E43-81F1-B948E807363F"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
interface IMMDevice {
  int Activate(ref System.Guid id, int clsCtx, int activationParams, out IAudioEndpointVolume aev);
}
[Guid("A95664D2-9614-4F35-A746-DE8DB63617E6"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
interface IMMDeviceEnumerator {
  int f(); // Unused
  int GetDefaultAudioEndpoint(int dataFlow, int role, out IMMDevice endpoint);
}
[ComImport, Guid("BCDE0395-E52F-467C-8E3D-C4579291692E")] class MMDeviceEnumeratorComObject { }
public class Audio {
  static IAudioEndpointVolume Vol() {
    var enumerator = new MMDeviceEnumeratorComObject() as IMMDeviceEnumerator;
    IMMDevice dev = null;
    Marshal.ThrowExceptionForHR(enumerator.GetDefaultAudioEndpoint(/*eRender*/ 0, /*eMultimedia*/ 1, out dev));
    IAudioEndpointVolume epv = null;
    var epvid = typeof(IAudioEndpointVolume).GUID;
    Marshal.ThrowExceptionForHR(dev.Activate(ref epvid, /*CLSCTX_ALL*/ 23, 0, out epv));
    return epv;
  }
  public static float Volume {
    get {float v = -1; Marshal.ThrowExceptionForHR(Vol().GetMasterVolumeLevelScalar(out v)); return v;}
    set {Marshal.ThrowExceptionForHR(Vol().SetMasterVolumeLevelScalar(value, System.Guid.Empty));}
  }
  public static bool Mute {
    get { bool mute; Marshal.ThrowExceptionForHR(Vol().GetMute(out mute)); return mute; }
    set { Marshal.ThrowExceptionForHR(Vol().SetMute(value, System.Guid.Empty)); }
  }
}

'@

[audio]::Volume = 0.25

บรรทัดสุดท้ายเป็นเพียงส่วนเดียวที่คุณจะต้องแก้ไขเพื่อเปลี่ยนระดับเสียง

ยกตัวอย่างเช่น[audio]::Volume = 0.5หรือ[audio]::Volume = 0.75สำหรับ50%หรือ75%ตามลำดับ

คุณยังสามารถปิดเสียงหรือยกเลิกการปิดเสียงลำโพงด้วย[audio]::Mute = $trueหรือ[audio]::Mute = $false

บันทึกเป็น.ps1ไฟล์และใช้นโยบายกลุ่มเพื่อตั้งค่าเป็นสคริปต์การเข้าสู่ระบบสำหรับห้องประชุม

การอ้างอิง

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.