mirror of
				https://github.com/onyx-and-iris/voicemeeter-api-powershell.git
				synced 2025-11-04 14:21:45 +00:00 
			
		
		
		
	Added $this.Login() into Remote constructor to automatically log user in. Updated test codes accordingly. Boolean params take $true and $false Updated readme to reflect changes.
		
			
				
	
	
		
			22 lines
		
	
	
		
			436 B
		
	
	
	
		
			PowerShell
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			436 B
		
	
	
	
		
			PowerShell
		
	
	
	
	
	
. $PSScriptRoot\lib\voicemeeter.ps1
 | 
						|
 | 
						|
try {
 | 
						|
    $vmr = [Remote]::new('potato')
 | 
						|
 | 
						|
    $vmr.button[0].state = $true
 | 
						|
    $vmr.button[0].state
 | 
						|
    $vmr.button[0].state = $false
 | 
						|
    $vmr.button[0].state
 | 
						|
 | 
						|
    $vmr.strip[0].mono = $true
 | 
						|
    $vmr.strip[0].mono
 | 
						|
    $vmr.strip[0].mono = $false
 | 
						|
    $vmr.strip[0].mono
 | 
						|
 | 
						|
    $vmr.bus[2].mute = $true
 | 
						|
    $vmr.bus[2].mute
 | 
						|
    $vmr.bus[2].mute = $false
 | 
						|
    $vmr.bus[2].mute
 | 
						|
}
 | 
						|
finally { $vmr.Logout() }
 |