
PowerShell-Driven Google Nest Management.
Manage Google Nest devices effortlessly from PowerShell โ for when speaking out loud is not an option.
Click to collapse/expand
PowerNest
started as a fun personal experiment โ an alternative way to control my Google Nest without having to say "Hey Google" out loud every time.
As an IT and cybersecurity professional, Iโm always looking for ways to make life easier and faster (yes, a good sysadmin is a bit lazy โ but smart lazy!).
At first, it was just a tool to save time on simple tasks:
"Instead of saying 'Hey Google, set an alarm for tomorrow at 7 AM', I can just run a PowerShell script that prompts me for the time and date, and sends the command automatically."
But over time, I realized PowerNest could be useful for others, and even go beyond that. It could become a command hub to preconfigure and automate recurring Google Nest tasks, making interactions even faster and more efficient โ without needing to speak a word.
Today, PowerNest can help:
- People who can't (or donโt want to) use voice commands (accessibility, disabilities, privacy).
- IT pros, geeks, and automation lovers who want to streamline their smart home usage.
- IT experts for demos on smart assistant behaviors. And... Easter egg hunters, because PowerNest also includes a lot of hidden funny commands.
Key features of PowerNest:
- Send custom commands directly to Google Nest.
- Say "Hey Google" and trigger follow-up commands โ from PowerShell.
- Schedule alarms quickly without voice.
- Change Google Assistantโs voice on the fly.
- Launch random funny commands (Easter eggs).
- And in the future: automate and chain multiple tasks (routine-style commands, pre-configured scenarios, etc.).
All of this entirely in PowerShell, without third-party tools โ just leveraging Windows' built-in speech synthesis engine.
- Windows OS (Tested on Windows 10 & 11 โ may work on older versions but not officially supported).
- PowerShell 5.1 or higher (pre-installed on modern Windows).
โ ๏ธ Note: 100% pure PowerShell, no external software required.
Invoke-WebRequest https://raw.githubusercontent.com/franckferman/PowerNest/stable/PowerNest.ps1 -OutFile PowerNest.ps1
git clone https://github.com/franckferman/PowerNest.git
- Go to GitHub repo.
- Click
<> Code
โDownload ZIP
. - Extract the archive to your desired location.
- Temporarily allow script execution:
Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope Process
๐ Important: This command temporarily adjusts the execution policy to allow script execution for the current process only, minimizing security risks. Always examine scripts before executing them to ensure safety.
- Run the script:
.\PowerNest.ps1
Alternatively, for a streamlined approach, combine the execution policy adjustment with script launch in a single line:
Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope Process; .\PowerNest.ps1
This command executes the script. The script provides a user-friendly graphical interface, facilitating navigation through various tasks and options with ease.
We truly appreciate and welcome community involvement. Your contributions, feedback, and suggestions play a crucial role in improving the project for everyone. If you're interested in contributing or have ideas for enhancements, please feel free to open an issue or submit a pull request on our GitHub repository. Every contribution, no matter how big or small, is highly valued and greatly appreciated!
Explore the star history of this project and see how it has evolved over time:
Your support is greatly appreciated. We're grateful for every star! Your backing fuels our passion. โจ
This project is licensed under the GNU Affero General Public License, Version 3.0. For more details, please refer to the LICENSE file in the repository: Read the license on GitHub