Guest User

Adjust mic volume to full to work around auto adjusting

a guest
Feb 12th, 2025
422
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PowerShell 0.23 KB | Source Code | 0 0
  1. # One-time module install
  2. # Install-Module -Name AudioDeviceCmdlets
  3.  
  4. # Run the function every 10 seconds until cancelled
  5. while ($true) {
  6.     Set-AudioDevice -RecordingVolume 100
  7.     Write-Host "Set Mic"
  8.     Start-Sleep -Seconds 10
  9. }
  10.  
Tags: mic audio Adjust
Advertisement
Add Comment
Please, Sign In to add comment