├── .gitignore ├── Assets └── CallingPowerShell.drawio.svg ├── Example-Test-Scripts ├── Change-Directory-To-Current-Directory.bat ├── GetActiveWindow.ps1 ├── QuitCurrentMeeting.ps1 ├── QuitCurrentMeeting.vbs ├── README - HOW TO SIGN POWERSHELL SCRIPTS.txt ├── Send-Keys-Program.ps1 ├── SendZoomKeyPress.vbs ├── SendZoomKeyPressOLD.ps1 ├── SleepTheDisplays.vbs ├── ToggleZoomMic.ps1 ├── ToggleZoomMic.vbs ├── ToggleZoomVideo.ps1 ├── ToggleZoomVideo.vbs └── ToggleZoomVideoOLD.ps1 ├── Keys └── README.md ├── Kill ├── KillOBS.bat └── KillProgram.bat ├── KillOBS.bat ├── KillProgram.bat ├── LICENSE ├── Monitor-Scripts ├── Multi-Monitor-Tool │ └── README.md ├── Nircmd │ └── README.md ├── PS Audio Device Cmdlet.url ├── SetDefaultSound.bat ├── SleepTheDisplays.bat ├── SleepTheDisplays.ps1 ├── SwitchOffTVConfig.bat └── SwitchOnTVConfig.bat ├── README.md ├── Smart-Home-Commands ├── HarmonyHubCli │ └── README.md ├── SetActivity.bat ├── SetDevice.bat ├── SetWatchPC.bat └── SetZVOXAmp.bat └── Zoom-Commands ├── JoinZoomMeeting.bat ├── KillZoom.bat ├── SendZoomKeyPress.bat └── SendZoomKeyPress.ps1 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/CallingPowerShell.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/Assets/CallingPowerShell.drawio.svg -------------------------------------------------------------------------------- /Example-Test-Scripts/Change-Directory-To-Current-Directory.bat: -------------------------------------------------------------------------------- 1 | cd "%~dp0" 2 | pause -------------------------------------------------------------------------------- /Example-Test-Scripts/GetActiveWindow.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/Example-Test-Scripts/GetActiveWindow.ps1 -------------------------------------------------------------------------------- /Example-Test-Scripts/QuitCurrentMeeting.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/Example-Test-Scripts/QuitCurrentMeeting.ps1 -------------------------------------------------------------------------------- /Example-Test-Scripts/QuitCurrentMeeting.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/Example-Test-Scripts/QuitCurrentMeeting.vbs -------------------------------------------------------------------------------- /Example-Test-Scripts/README - HOW TO SIGN POWERSHELL SCRIPTS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/Example-Test-Scripts/README - HOW TO SIGN POWERSHELL SCRIPTS.txt -------------------------------------------------------------------------------- /Example-Test-Scripts/Send-Keys-Program.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/Example-Test-Scripts/Send-Keys-Program.ps1 -------------------------------------------------------------------------------- /Example-Test-Scripts/SendZoomKeyPress.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/Example-Test-Scripts/SendZoomKeyPress.vbs -------------------------------------------------------------------------------- /Example-Test-Scripts/SendZoomKeyPressOLD.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/Example-Test-Scripts/SendZoomKeyPressOLD.ps1 -------------------------------------------------------------------------------- /Example-Test-Scripts/SleepTheDisplays.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/Example-Test-Scripts/SleepTheDisplays.vbs -------------------------------------------------------------------------------- /Example-Test-Scripts/ToggleZoomMic.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/Example-Test-Scripts/ToggleZoomMic.ps1 -------------------------------------------------------------------------------- /Example-Test-Scripts/ToggleZoomMic.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/Example-Test-Scripts/ToggleZoomMic.vbs -------------------------------------------------------------------------------- /Example-Test-Scripts/ToggleZoomVideo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/Example-Test-Scripts/ToggleZoomVideo.ps1 -------------------------------------------------------------------------------- /Example-Test-Scripts/ToggleZoomVideo.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/Example-Test-Scripts/ToggleZoomVideo.vbs -------------------------------------------------------------------------------- /Example-Test-Scripts/ToggleZoomVideoOLD.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/Example-Test-Scripts/ToggleZoomVideoOLD.ps1 -------------------------------------------------------------------------------- /Keys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/Keys/README.md -------------------------------------------------------------------------------- /Kill/KillOBS.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | @taskkill /IM obs64.exe /T -------------------------------------------------------------------------------- /Kill/KillProgram.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/Kill/KillProgram.bat -------------------------------------------------------------------------------- /KillOBS.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | @taskkill /IM obs64.exe /T -------------------------------------------------------------------------------- /KillProgram.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/KillProgram.bat -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /Monitor-Scripts/Multi-Monitor-Tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/Monitor-Scripts/Multi-Monitor-Tool/README.md -------------------------------------------------------------------------------- /Monitor-Scripts/Nircmd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/Monitor-Scripts/Nircmd/README.md -------------------------------------------------------------------------------- /Monitor-Scripts/PS Audio Device Cmdlet.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/Monitor-Scripts/PS Audio Device Cmdlet.url -------------------------------------------------------------------------------- /Monitor-Scripts/SetDefaultSound.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/Monitor-Scripts/SetDefaultSound.bat -------------------------------------------------------------------------------- /Monitor-Scripts/SleepTheDisplays.bat: -------------------------------------------------------------------------------- 1 | cd "%~dp0" 2 | powershell -windowstyle hidden -File .\SleepTheDisplays.ps1 -------------------------------------------------------------------------------- /Monitor-Scripts/SleepTheDisplays.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/Monitor-Scripts/SleepTheDisplays.ps1 -------------------------------------------------------------------------------- /Monitor-Scripts/SwitchOffTVConfig.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/Monitor-Scripts/SwitchOffTVConfig.bat -------------------------------------------------------------------------------- /Monitor-Scripts/SwitchOnTVConfig.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/Monitor-Scripts/SwitchOnTVConfig.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/README.md -------------------------------------------------------------------------------- /Smart-Home-Commands/HarmonyHubCli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/Smart-Home-Commands/HarmonyHubCli/README.md -------------------------------------------------------------------------------- /Smart-Home-Commands/SetActivity.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/Smart-Home-Commands/SetActivity.bat -------------------------------------------------------------------------------- /Smart-Home-Commands/SetDevice.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/Smart-Home-Commands/SetDevice.bat -------------------------------------------------------------------------------- /Smart-Home-Commands/SetWatchPC.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/Smart-Home-Commands/SetWatchPC.bat -------------------------------------------------------------------------------- /Smart-Home-Commands/SetZVOXAmp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/Smart-Home-Commands/SetZVOXAmp.bat -------------------------------------------------------------------------------- /Zoom-Commands/JoinZoomMeeting.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/Zoom-Commands/JoinZoomMeeting.bat -------------------------------------------------------------------------------- /Zoom-Commands/KillZoom.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | @taskkill /IM Zoom.exe /T -------------------------------------------------------------------------------- /Zoom-Commands/SendZoomKeyPress.bat: -------------------------------------------------------------------------------- 1 | cd "%~dp0" 2 | powershell -windowstyle hidden -File .\SendZoomKeyPress.ps1 %1 -------------------------------------------------------------------------------- /Zoom-Commands/SendZoomKeyPress.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueal/Stream-Deck-Scripts/HEAD/Zoom-Commands/SendZoomKeyPress.ps1 --------------------------------------------------------------------------------