방식 C# -> cmd 실행 -> cmd에 control mmsys.cpl sounds 명령어 입력 순으로 진행하는 코드임 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Diagnostics; namespace audio_Control_panel { class Program { static void Main(string[] args) { System.Diagnostics.ProcessStartInfo proInfo = new System.Diagnostics.ProcessStartInfo(); System.Diagnostics.Process pro = new System.Di..