├── .github └── ISSUE_TEMPLATE.md ├── README.md ├── examples ├── forms-designer │ └── MultiThreadedForm │ │ ├── MultiThreadedForm.sln │ │ └── MultiThreadedForm │ │ ├── MultiThreadedForm.designer.ps1 │ │ ├── MultiThreadedForm.ps1 │ │ ├── MultiThreadedForm.pssproj │ │ └── MultiThreadedForm.resx ├── universal-dashboard │ ├── azure-dashboard.ps1 │ ├── charts │ │ ├── colors.ps1 │ │ ├── custom-axis.ps1 │ │ ├── legend.ps1 │ │ ├── multiple-datasets.ps1 │ │ ├── pie-chart-with-colors.ps1 │ │ ├── title.ps1 │ │ └── tooltips.ps1 │ ├── formatting │ │ ├── dynamic.ps1 │ │ ├── layout.ps1 │ │ └── rows-and-columns.ps1 │ ├── full-dashboards │ │ └── New-UDWeatherDashboard.ps1 │ ├── grid │ │ ├── custom-columns.ps1 │ │ ├── custom-search.ps1 │ │ ├── high-performance-sql-grid.ps1 │ │ └── simple.ps1 │ ├── input-dynamic-pages.png │ ├── input-dynamic-pages.ps1 │ ├── input │ │ ├── custom-help-text.ps1 │ │ ├── dynamic-page.ps1 │ │ ├── input-types.ps1 │ │ ├── new-component.ps1 │ │ └── toast.ps1 │ ├── login-page.ps1 │ ├── login-pages │ │ ├── forms.ps1 │ │ └── microsoft.ps1 │ ├── poshud.ps1 │ ├── server-performance-dashboard.ps1 │ └── service-table.ps1 └── wpf-designer │ └── VSTeamExplorer │ ├── VSTeamExplorer.sln │ └── VSTeamExplorer │ ├── Main.xaml │ ├── Main.xaml.ps1 │ ├── VSFunctions.ps1 │ ├── VSTeamExplorer.pssproj │ └── screenshot.png └── utilities └── ConvertTo-PoshTools.ps1 /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/README.md -------------------------------------------------------------------------------- /examples/forms-designer/MultiThreadedForm/MultiThreadedForm.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/forms-designer/MultiThreadedForm/MultiThreadedForm.sln -------------------------------------------------------------------------------- /examples/forms-designer/MultiThreadedForm/MultiThreadedForm/MultiThreadedForm.designer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/forms-designer/MultiThreadedForm/MultiThreadedForm/MultiThreadedForm.designer.ps1 -------------------------------------------------------------------------------- /examples/forms-designer/MultiThreadedForm/MultiThreadedForm/MultiThreadedForm.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/forms-designer/MultiThreadedForm/MultiThreadedForm/MultiThreadedForm.ps1 -------------------------------------------------------------------------------- /examples/forms-designer/MultiThreadedForm/MultiThreadedForm/MultiThreadedForm.pssproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/forms-designer/MultiThreadedForm/MultiThreadedForm/MultiThreadedForm.pssproj -------------------------------------------------------------------------------- /examples/forms-designer/MultiThreadedForm/MultiThreadedForm/MultiThreadedForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/forms-designer/MultiThreadedForm/MultiThreadedForm/MultiThreadedForm.resx -------------------------------------------------------------------------------- /examples/universal-dashboard/azure-dashboard.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/universal-dashboard/azure-dashboard.ps1 -------------------------------------------------------------------------------- /examples/universal-dashboard/charts/colors.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/universal-dashboard/charts/colors.ps1 -------------------------------------------------------------------------------- /examples/universal-dashboard/charts/custom-axis.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/universal-dashboard/charts/custom-axis.ps1 -------------------------------------------------------------------------------- /examples/universal-dashboard/charts/legend.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/universal-dashboard/charts/legend.ps1 -------------------------------------------------------------------------------- /examples/universal-dashboard/charts/multiple-datasets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/universal-dashboard/charts/multiple-datasets.ps1 -------------------------------------------------------------------------------- /examples/universal-dashboard/charts/pie-chart-with-colors.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/universal-dashboard/charts/pie-chart-with-colors.ps1 -------------------------------------------------------------------------------- /examples/universal-dashboard/charts/title.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/universal-dashboard/charts/title.ps1 -------------------------------------------------------------------------------- /examples/universal-dashboard/charts/tooltips.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/universal-dashboard/charts/tooltips.ps1 -------------------------------------------------------------------------------- /examples/universal-dashboard/formatting/dynamic.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/universal-dashboard/formatting/dynamic.ps1 -------------------------------------------------------------------------------- /examples/universal-dashboard/formatting/layout.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/universal-dashboard/formatting/layout.ps1 -------------------------------------------------------------------------------- /examples/universal-dashboard/formatting/rows-and-columns.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/universal-dashboard/formatting/rows-and-columns.ps1 -------------------------------------------------------------------------------- /examples/universal-dashboard/full-dashboards/New-UDWeatherDashboard.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/universal-dashboard/full-dashboards/New-UDWeatherDashboard.ps1 -------------------------------------------------------------------------------- /examples/universal-dashboard/grid/custom-columns.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/universal-dashboard/grid/custom-columns.ps1 -------------------------------------------------------------------------------- /examples/universal-dashboard/grid/custom-search.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/universal-dashboard/grid/custom-search.ps1 -------------------------------------------------------------------------------- /examples/universal-dashboard/grid/high-performance-sql-grid.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/universal-dashboard/grid/high-performance-sql-grid.ps1 -------------------------------------------------------------------------------- /examples/universal-dashboard/grid/simple.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/universal-dashboard/grid/simple.ps1 -------------------------------------------------------------------------------- /examples/universal-dashboard/input-dynamic-pages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/universal-dashboard/input-dynamic-pages.png -------------------------------------------------------------------------------- /examples/universal-dashboard/input-dynamic-pages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/universal-dashboard/input-dynamic-pages.ps1 -------------------------------------------------------------------------------- /examples/universal-dashboard/input/custom-help-text.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/universal-dashboard/input/custom-help-text.ps1 -------------------------------------------------------------------------------- /examples/universal-dashboard/input/dynamic-page.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/universal-dashboard/input/dynamic-page.ps1 -------------------------------------------------------------------------------- /examples/universal-dashboard/input/input-types.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/universal-dashboard/input/input-types.ps1 -------------------------------------------------------------------------------- /examples/universal-dashboard/input/new-component.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/universal-dashboard/input/new-component.ps1 -------------------------------------------------------------------------------- /examples/universal-dashboard/input/toast.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/universal-dashboard/input/toast.ps1 -------------------------------------------------------------------------------- /examples/universal-dashboard/login-page.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/universal-dashboard/login-page.ps1 -------------------------------------------------------------------------------- /examples/universal-dashboard/login-pages/forms.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/universal-dashboard/login-pages/forms.ps1 -------------------------------------------------------------------------------- /examples/universal-dashboard/login-pages/microsoft.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/universal-dashboard/login-pages/microsoft.ps1 -------------------------------------------------------------------------------- /examples/universal-dashboard/poshud.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/universal-dashboard/poshud.ps1 -------------------------------------------------------------------------------- /examples/universal-dashboard/server-performance-dashboard.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/universal-dashboard/server-performance-dashboard.ps1 -------------------------------------------------------------------------------- /examples/universal-dashboard/service-table.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/universal-dashboard/service-table.ps1 -------------------------------------------------------------------------------- /examples/wpf-designer/VSTeamExplorer/VSTeamExplorer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/wpf-designer/VSTeamExplorer/VSTeamExplorer.sln -------------------------------------------------------------------------------- /examples/wpf-designer/VSTeamExplorer/VSTeamExplorer/Main.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/wpf-designer/VSTeamExplorer/VSTeamExplorer/Main.xaml -------------------------------------------------------------------------------- /examples/wpf-designer/VSTeamExplorer/VSTeamExplorer/Main.xaml.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/wpf-designer/VSTeamExplorer/VSTeamExplorer/Main.xaml.ps1 -------------------------------------------------------------------------------- /examples/wpf-designer/VSTeamExplorer/VSTeamExplorer/VSFunctions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/wpf-designer/VSTeamExplorer/VSTeamExplorer/VSFunctions.ps1 -------------------------------------------------------------------------------- /examples/wpf-designer/VSTeamExplorer/VSTeamExplorer/VSTeamExplorer.pssproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/wpf-designer/VSTeamExplorer/VSTeamExplorer/VSTeamExplorer.pssproj -------------------------------------------------------------------------------- /examples/wpf-designer/VSTeamExplorer/VSTeamExplorer/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/examples/wpf-designer/VSTeamExplorer/VSTeamExplorer/screenshot.png -------------------------------------------------------------------------------- /utilities/ConvertTo-PoshTools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamdriscoll/poshprotools/HEAD/utilities/ConvertTo-PoshTools.ps1 --------------------------------------------------------------------------------