Background
Google’s Cloud Software-Developer Kit (Cloud SDK) is an essential tool for managing your Cloud projects locally. In Linux or Mac, SDK command are automatically inherited by the terminal making it easy to set up command aliases in your .bashrc and elsewhere
Unfortunately, in Windows, SDK installs as a separate application that doesn’t seem to inherit your terminal profile.
It’s a few steps to set up your Cloud profile (and requires that you use PowerShell) but this is best way I could figure out to do it. And it saves time in the long run not having to copy and/or re-type commands.
Setup
If you’re on an institutional laptop, you’ll need to have administrator rights enabled.
Firstly, launch PowerShell in the Start Menu.
PowerShell installs a slightly different set of tools through Google Command-Line Interface (Google CLI), not SDK. Run the following command in PowerShell (instructions).
Install-Module -Name GoogleCloud -Repository PSGallery -Force -AllowClobber
To save commands that persist between sessions, you’ll need to set up a PowerShell profile. This profile is loaded when you launch a new PowerShell session (similar to .bashrc).
Here’s a full article for creating a PowerShell profile. Simple instructions below.
Run the following in PowerShell to create a new blank profile:
New-Item -path $profile -type file -force
This will create a new file in your Documents folder, for me in C:Users*DocumentsWindowsPowerShellMicrosoft.PowerShell_profile.ps1

Open up "Microsoft.PowerShell_profile.ps1" in Notepad. This is where you can add your Google CLI commands (or any other commands, for that matter).
In PowerShell, multi-word commands save as "Functions". The syntax for a function is –
Function alias {commands to run}
For example, you may want to save the command for ssh’ing into your DLVM with port forwarding (note that syntax is a bit different in Windows).
Function gssh {gcloud compute ssh my-dlvm --project my-project --zone my-zone '--' -L 8787:127.0.0.1:8787
Here’s a snapshot of a few of my commands

Much easier!

If you’ve come up with a better way to do this, please let me know in the comments…
~AW