MrPig91 / PSChiaPlotter

A repo for powershell module that helps Chia Plotting
MIT License
181 stars 47 forks source link

Show "Time_started" in Outpup of ChiaPlottingStatistic #33

Closed mimeie closed 3 years ago

mimeie commented 3 years ago

Hi

Is there a way to show the "time_started" attribute in the output result?

Thanks Michael

MrPig91 commented 3 years ago

You will have to create your own view to have that show. You can do this by running the following command

Get-ChiaPlottingStatistic | Format-Table -Property *

This might output more than your powershell window can show, you can specify which properties you want to show as well.

Get-ChiaPlottingStatistic | Format-Table -Property Time_Started, KSize

Adding each property you want separated by comma.