Еще 5 копеек к скрипту перешел на виндовс 7 и обнаружил что звук перестал регулироваться командами Soudset вот решения с форума 
 
On Windows Vista, SoundSet and SoundGet affect only the script itself (this may be resolved in a future version). There are at least two ways to work around this:  
 
1) In the properties dialog for the file "AutoHotkey.exe" (or a compiled script), change the compatibility setting to "Windows XP".  
 
2) Have the script send volume-control keystrokes to change the master volume for the entire system. For example:Code (Copy):  
Send {Volume_Up}  ; Raise the master volume by 1 interval (typically 5%).  
Send {Volume_Down 3}  ; Lower the master volume by 3 intervals.  
Send {Volume_Mute}  ; Mute/unmute the master volume 
		
	
		
		
		
		
		
	
	 |