-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Export Dashboard Pages #172
Comments
Are you looking for a cmdlet to do this? Or is functionality in the UI enough? It's tricky from the command line since hte browser does all the rendering but I'm sure I could figure something out. |
Well, I was thinking about the same question and didn't have a solid answer yet. I think it would be nice to support an export button in a dashboard page, but it could also be really useful to have an export option in script. This could act as a lightweight reporting toolkit. I think maybe usage would be something like: $Dashboard = New-UDDashboard -Content {...}
Export-UDDashboard -Dashboard $Dashboard -Format html Alternatively, maybe it could be supported by piping from Start-UDDashboard $Dashboard
Get-UDDashboard | Export-UDDashboard -format html |
Or you could have the exported content be able to be pulled into something else, such as an Excel spreadsheet of other tool. Reporting services, maybe?
From: Matt McNabb [mailto:notifications@github.com]
Sent: Thursday, November 30, 2017 3:33 PM
To: adamdriscoll/poshprotools <poshprotools@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Subject: Re: [adamdriscoll/poshprotools] Export Dashboard Pages (#172)
Well, I was thinking about the same question and didn't have a solid answer yet. I think it would be nice to support an export button in a dashboard page, but it could also be really useful to have an export option in script. This could act as a lightweight reporting toolkit.
I think maybe usage would be something like:
$Dashboard = New-UDDashboard -Content {...}
Export-UDDashboard -Dashboard $Dashboard -Format html
Alternatively, maybe it could be supported by piping from Get-UDDashboard to get around the rendering issue:
Start-UDDashboard $Dashboard
Get-UDDashboard | Export-UDDashboard -format html
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub<#172 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/AOXGAFnExKgOHKEmAcLhINH9V4A6BpErks5s7xDxgaJpZM4Qw2p9>.
|
I think it would be great if we could export our dashboard pages as PDF or HTML documents, or even just images. This would be a great lightweight reporting tool.
The text was updated successfully, but these errors were encountered: