PSGSuite v2.36.0
Changelog
2.36.0 - 2020-02-28
- PR #255 - Thanks, @FISHMANPET!
- Added support for
[ScriptBlock]
values on the config, allowing you to provide a script to run that will pull in a configuration value (vs embedded the value directly on the config)
- Added support for
- PR #255 - Thanks, @vaskotoo!
- Added support for an array of Users on
Get-GSGmailMessageList
- Added support for an array of Users on
- PR #261 - Thanks, @Foggy2!
- Added support for all license types including undocumented ones.
- Closed out Issue #252 as well.
- PR #262 - Thanks, @nwls-hermesj!
- Added support for pipeline input of Drive file objects to
Remove-GSDriveFile
.
- Added support for pipeline input of Drive file objects to
- Issue #256
- Cleaned up docs on
Send-GSChatMessage
.
- Cleaned up docs on
- Issue #258
- Removed URL Shortener functions due to Google deprecation.
- Issue #263
- Fixed
[SecureString]
decryption on Unix machines running PowerShell 7
- Fixed
- Miscellaneous
- Removed the Tasks API functions. Google has not pushed an update to the Tasks .NET SDK in over 2 months, so it is now behind the current release versions of the core Google.Apis assemblies, resulting in failure to import.
Instructions
IMPORTANT: You MUST have the module 'Configuration' installed as a prerequisite! Installing the module from the repo source or the release page does not automatically install dependencies!!
- Click here to download the PSGSuite.zip file attached to the release.
- If on Windows: Right-click the downloaded zip, select Properties, then unblock the file.
This is to prevent having to unblock each file individually after unzipping.
- Unzip the archive.
- (Optional) Place the module folder somewhere in your
PSModulePath
.You can view the paths listed by running the environment variable
$env:PSModulePath
- Import the module, using the full path to the PSD1 file in place of
PSGSuite
if the unzipped module folder is not in yourPSModulePath
:# In $env:PSModulePath Import-Module PSGSuite # Otherwise, provide the path to the manifest: Import-Module -Path C:\MyPSModules\PSGSuite\2.36.0\PSGSuite.psd1