https://github.com/psconfeu/PSConfEU
A place for the PSConfEU things to be listed
https://github.com/psconfeu/PSConfEU
Last synced: 4 months ago
JSON representation
A place for the PSConfEU things to be listed
- Host: GitHub
- URL: https://github.com/psconfeu/PSConfEU
- Owner: psconfeu
- License: mit
- Created: 2023-01-06T14:04:11.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-09T23:27:36.000Z (almost 2 years ago)
- Last Synced: 2024-08-13T07:05:05.928Z (8 months ago)
- Language: PowerShell
- Size: 44.9 KB
- Stars: 2
- Watchers: 3
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- jimsghstars - psconfeu/PSConfEU - A place for the PSConfEU things to be listed (PowerShell)
README
# PSConfEU
A module for gathering information about PSConfEU agenda from Sessionize, tested on Windows, Mac and Linux for Windows PowerShell and pwsh
[](https://github.com/PSConfEU/PSConfEU/actions/workflows/main.yml)
[](https://github.com/PSConfEU/PSConfEU/releases/latest)
[](https://www.powershellgallery.com/packages/PSConfEU/)
[](https://github.com/PSConfEU/PSConfEU/blob/43423437f831e2844452d482a50864f224f12534/LICENSE)
[](https://github.com/PSConfEU/PSConfEU/releases)
[](https://github.com/SQLDBAWithABeard/PSConfEU/actions/)
[](https://github.com/SQLDBAWithABeard/PSConfEU/actions/)
[](https://github.com/SQLDBAWithABeard/PSConfEU/actions/)
[](https://github.com/SQLDBAWithABeard/PSConfEU/actions/)
# Usage
The PowerShell module follows normal good procedures
## InstallationTo install the module from the PowerShell Gallery
`Install-Module PSConfEU`
## What Commands?
To identify the commands for the module
`Get-Command -Module PSConfEU`
## Using Commands
To use the commands use the embedded PowerShell help
`Get-Help Get-PSConfEUSchedule`
or
`Get-Help Get-PSConfEUSchedule -Full `
# Get-PSConfEUSchedule
This will return the PSConfEU schedule from the Sessionize API in a variety of formats
`Get-PSConfEUSchedule -Output excel -Show`
Gets the PSConfEU Schedule from the Sessionize API and outputs to excel colour coded by session type, opens the file and saves it to the default temp directory

`Get-PSConfEUSchedule -Output Raw`
Gets the PSConfEU Schedule from the Sessionize API and outputs as json on the screen

`Get-PSConfEUSchedule -Output csv -Show`
Gets the PSConfEU Schedule from the Sessionize API and outputs to csv, opens the file and saves it to the default temp directory

`Get-PSConfEUSchedule -Output object`
Gets the PSConfEU Schedule from the Sessionize API and outputs as a psobject on the screen useful for piping to Write-DbaDatatable for loading into a database

`Get-PSConfEUSchedule -Output html -Show`
Gets the PSConfEU Schedule from the Sessionize API and outputs to html, opens the file and saves it to the default temp directory
