Filter
Exclude
Time range
-
Near
26 Sep 2023
Was looking at building a flow chart module for powershell. Then I came across PSGRAPH. Wow I might be several years late to the party but I am glad I found this module. Thanks @KevinMarquette
4
277
Replying to @adilio @paddycarey
Yes, PSGraph and it's in the psgallery. It's a PowerShell module that implements a DSL for GraphViz. powershellexplained.com/2017… It works beautifully for data driven diagrams.

2
4
Replying to @ctmcisco
Absolutely. That is part of the reason I wrote PSGraph. I was trying to automate Visio graph generation from #PowerShell and was not happy with any of the solutions I had.
1
3
I was just using PSGraph this week to show the relationship between events for detection data modeling. It is such a helpful and practical module!
1
1
Awesome breakdown of PSGraph. I am such a visual person, having this module to render graphs of the way things connect to each other has been great for me. If anyone is interested in a longer deeper dive to see what is possible: youtube.com/watch?v=8GvrVN0_…
1
3
18
Awesome ! Maybe @KevinMarquette can update the PSGraph module to support also mermaid :)
2
My DependsOn module will sort that $data | Resolve-DependencyOrder -Key {$_.id} -DependsOn {$_.parentid} My psgraph module will graph it Graph { Node $data -nodescript {$_.id} @{label={$_.name}} Edge $data -fromscript {$_.parentid} -toscript {$_.id} }
8
Come to my #PSConfAsia session tomorrow to learn to plot an "#Azure Resource Group Topology" automated graph like this one using #PowerShell & PSGraph module within seconds. From basics to a bunch of other use cases, the session starts @ 11:45 AM! cc: @KevinMarquette
2
2
12
I am speaking on 2 topics, please join me if it sounds interesting to you 😊 1. Visualize and Document infra with #PowerShell: PSGraph Module with some useful use cases! 2. Power of the Console: Using #Azure Cognitive Services PowerShell Polaris PSHTML
3
@KevinMarquette blew my mind with his PSGraph presentation: youtube.com/watch?v=8GvrVN0_…

4
3
28 May 2019
#PSHSummit 2019 session: Working with PSGraph by Kevin Marquette bit.ly/2ECPGJl @KevinMarquette #PSHDevOps #PowerShell
3
9
#PSHSummit 2019 session: Working with PSGraph by Kevin Marquette buff.ly/2HYBNWR @KevinMarquette #PSHDevOps #PowerShell
1
2
27 May 2019
Intense yak shaving the last couple of hours. I just wanted to get a UML diagram of the AST inheritance and ended up publishing a module to the PSGallery. github.com/ThePSAdmin/TypeTo… Thanks to @KevinMarquette for PSGraph and @SeeminglyScienc for ClassExplorer which made this easy.

1
3
7
Here's a process progress diagram generated with JobSetManager using PSGraph. @RandomNoun7 @KevinMarquette #PSHSummit #PSGraph #graphviz PSGraph is a great tool to help you and others visualize and understand complex processes or data sets.
2
10
Learning about PSGraph from @KevinMarquette. He wrote it after all. It’s a really cool tool for visualizing relationships among things. It looks like a lot of fun! #PSHSummit
1
1
10
$ABC = Get-Stuff $ABC | Select-Stuff Here is the AST graphed using PSGraph and PSGraphPlus (That I will be presenting on Wednesday)
2
8
If you are using PoshRSJob, ( and soon PSThreadJob, or BackgroundJobs) to run a set of interdependent jobs, take a look at JobSetManager: github.com/exactmike/JobSetM…. Also uses PSGraph to visualize job dependencies and progress. #PSHSummit @proxb @KevinMarquette

2
10
Another great use case for PSGraph. #Powershell driven graph of a dns zone. ja.mesmontgomery.co.uk/2019/…

9
28