ReportHTMLV2Help.psm1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 |
#Region Help Documentation #FYI, This is mostly a terrible example of how to write a report. But if you must look under the covers, enjoy. #Write-verbose "Need a little help getting started? Get-HTMLReportHelp" -ForegroundColor Cyan Function Get-HTMLReportHelp { Param ( [switch]$GenerateReport ) #region Change Log $changeLogHTML += Get-HTMLContentOpen -HeaderText 'Version History / Change Log' $changeLogHTML += Get-HTMLContentText -Heading "1.4.1.2" -Detail "Speed fix. Massive thanks to GitHubBJW and spaelling for finding the slow report generation issue." $changeLogHTML += Get-HTMLContentText -Heading "1.4.1.1" -Detail "Added Stack Bar Chart and removed help prompt. Development ideas or suggestions are welcome." $changeLogHTML += Get-HTMLContentText -Heading "1.4.0.3" -Detail "can't remember, think it was clean up fixes etc" $changeLogHTML += Get-HTMLContentText -Heading "1.4.0.1" -Detail "introduced Get-HTMLDataTable fucntion to consume HTML 5 Data tables features. Included additional java scripts and CSS styles" $changeLogHTML += Get-HTMLContentText -Heading "1.3.2.2" -Detail "Added Custom footer text to Get-HTMLPageClose -FooterText 'Your text here'.<BR>Created Functions for Heading Get-HTMLHeading, added CSS H1 to H7.<BR>Added PowerShell Logo, usage 'PowerShell' in get-HTMLPageOpen" $changeLogHTML += Get-HTMLContentText -Heading "1.3.2.1" -Detail "Updated 'Corporate' Logo and 'Alternate' logo files" $changeLogHTML += Get-HTMLContentText -Heading "1.3.2.0" -Detail "Added dynamic columns function Get-HTMLColumnOpen. <BR>Example Usage 'Get-HTMLColumnOpen -ColumnNumber 1 -ColumnCount 2'" $changeLogHTML += Get-HTMLContentText -Heading "1.3.1.1" -Detail "minor fixes" $changeLogHTML += Get-HTMLContentText -Heading "1.3.1.0" -Detail "Sleeps removed from module, Axis Labels added to bar chart, few logic errors corrected. <BR>Added Get-HTMLContentTableAadvanced" $changeLogHTML += Get-HTMLContentText -Heading "1.3.0.7" -Detail "Added This Change Log" $changeLogHTML += Get-HTMLContentText -Heading "1.3.0.6" -Detail "Added Totals to get-HTMLContentTable and associated help content" $changeLogHTML += Get-HTMLContentText -Heading "1.3.0.5" -Detail "another fix to save-HTMLReport so it can handle a null reportpath. <BR>Moved Html Help file logic to a nested psm1 file.<BR> In addition to Creating ReportHTMLHelpers to start building more reports this module <BR>was updated in conjunction with publishing Run-ReportAzureRBAC" $changeLogHTML += Get-HTMLContentText -Heading "1.3.0.4" -Detail "Minor Fixes, Major addition a Help Report. run Get-HTMLReportHelp" $changeLogHTML += Get-HTMLContentText -Heading "1.3.0.1" -Detail "Changes to allow for more flexible customization, use Chart JS for charting, working in Azure Automation and <br>now support HTML5 Tabs" $changeLogHTML += Get-HTMLContentText -Heading "1.3.0.0" -Detail "Awesome changes here for flexibility with CSS, Logos, Chart creation and more. Hopefully there will be less <BR>major changes from here once legacy cmdlets are removed. Feedback always welcome" $changeLogHTML += Get-HTMLContentText -Heading "1.2.0.3" -Detail "Changes to add functionality for Custom CSS files and changed export to be HTML file type. The CSS and <BR> Javascript files are now present in the module directory allowing for ease of manipulation <BR>and customization. Get-HTMLOpen and Get-HTMLClose still present in module but <BR> can be replaced with Get-HTMLOpenPage and Get-HTMLClosePage." $changeLogHTML += Get-HTMLContentText -Heading "1.2.0.1" -Detail "Changes (non Breaking) to add functionality for Custom CSS files and changed export to be HTML file type. <BR> Get-HTMLOpen and Get-HTMLClose still present in module but can be replaced with <BR> Get-HTMLOpenPage and Get-HTMLClosePage." $changeLogHTML += Get-HTMLContentText -Heading "10.0.0.15" -Detail "Thanks to Moep for fix to table row color with default values." $changeLogHTML += Get-HTMLContentText -Heading "1.0.0.14" -Detail "Added Bar chart function and -testchart switch" $changeLogHTML += Get-HTMLContentText -Heading "1.0.0.12" -Detail "fixed HTML Close working on charting options" $changeLogHTML += Get-HTMLContentText -Heading "1.0.0.11" -Detail "fixed HTML Close." $changeLogHTML += Get-HTMLContentClose #endregion #Region Housekeeping if([String]::IsNullOrEmpty($ModulePath)) { if([string]::IsNullOrEmpty($PSScriptRoot)) { $ModulePath=$PSCmdlet.SessionState.Path.CurrentLocation.Path } else { $ModulePath = $PSScriptRoot } } $process = Get-Process | select Name,Id,PriorityClass,Handles,FileVersion,WorkingSet,PrivateMemorySize, PagedMemorySize if ($GenerateReport) { $tabarray = @('Welcome','Reports','Logos','Styles','Headings','Options','Tabs','Sections','Columns','Tables','DataTable','Row Colour','HyperLinks','Charts','JavaScript','HTML','Functions') $rpt = @() $rpt += Get-HTMLOpenPage -TitleText ("ReportHTML " + (get-Module -Name reporthtml).version + ", Cmdlets Usage, Help & Examples") -LeftLogoName Corporate -RightLogoName Alternate $rpt += Get-HTMLTabHeader -TabNames $tabarray #endregion #region Welcome $Tab = 'Welcome' $rpt += get-htmltabcontentopen -TabName $Tab -tabheading ' ' $rpt += Get-HTMLContentOpen -HeaderText "About" $rpt += Get-HTMLContentText -Heading "Why we wrote this" -Detail "PowerShell is an amazing tool for gathering, collecting, slicing, grouping, filtering and collating data. However, trying to show that information or several sets of it on one report is not as easy. A few years we ago built our own solution, we created a set of HTML reporting functions. I have been using these functions for years to help myself, my team and customers to deliver Powershell data to people that just need the details and not a CSV file or a code snippet. We’ve now decided to make these available to the rest of you." $rpt += Get-HTMLContentText -Heading "Original Credits" -detail "This code was originally borrowed from Alan Renouf for a vSphere healthcheck report by Andrew Storrs and myself for a more dynamic reporting style, being able to create reports on the fly with minimal effort. " $rpt += Get-HTMLContentText -Heading "Recent Credits" -Detail "Jennifier Han, Giovanni Fleres, Chris Speers, Keith Ellis, Blake and Moep" $rpt += Get-HTMLContentText -Heading "Running Reports" -Detail "These reports, once built can be scheduled to run, dropped on a file share emailed or saved to an Azure Storage Blob. " $rpt += Get-HTMLContentText -Heading "This Help Report" -Detail "Will walk through several examples of how to use the functions to generate different types of reports." $rpt += Get-HTMLContentText -Heading "Beta Help File" -Detail ("Please note this help is in a draft state") $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentOpen -HeaderText 'Something missing? Got an idea? Found a bug? Contribute' $rpt += Get-HTMLContentText -Heading "PowerShell Gallery" -Detail "URL01https://www.powershellgallery.com/packages/ReportHTML/URL02Add A Comment on powershell galleryURL03" $rpt += Get-HTMLContentText -Heading "Github" -Detail "URL01https://www.github.com/azurefieldnotes/ReportHTML/URL02Write some code, branch it, merge it, Join me and lets hack and slash together.URL03" $rpt += Get-HTMLContentText -Heading "Log Issue" -Detail "URL01https://github.com/azurefieldnotes/ReportHTML/URL02Log an IssueURL03" $rpt += Get-HTMLContentText -Heading "Chart Tool" -detail "If you want to see how to construct charts in ChartJS this is so helpful URL01Https://codepen.io/natenorberg/pen/WwqRar/URL02Https://codepen.io/natenorberg/pen/WwqRar/URL03" $rpt += Get-HTMLContentClose $rpt += $changeLogHTML $rpt += get-htmltabcontentclose #endregion #regionHeadings $Tab = 'Headings' $rpt += get-htmltabcontentopen -TabName $Tab -tabheading ' ' $rpt += Get-HTMLContentOpen -HeaderText "Adding Headings to Your report" -BackgroundShade 2 $rpt += Get-HTMLContentOpen -HeaderText "Usage" $rpt += Get-HTMLContentText -Heading "Creating headings" -Detail "Get-HTMLHeading -headerSize 1 -headingText 'This is heading 1' " $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentOpen -HeaderText "Code" $BuildingRpt = '$rpt += Get-HTMLHeading -headerSize 1 -headingText "This is heading 1"' $rpt += Get-HTMLContentText -Heading "Heading Tag 1" -Detail (Get-HTMLCodeBlock -Code $BuildingRpt -Style PowerShell) $BuildingRpt = '$rpt += Get-HTMLHeading -headerSize 2 -headingText "This is heading 2"' $rpt += Get-HTMLContentText -Heading "Heading Tag 2" -Detail (Get-HTMLCodeBlock -Code $BuildingRpt -Style PowerShell) $BuildingRpt = '$rpt += Get-HTMLHeading -headerSize 3 -headingText "This is heading 3"' $rpt += Get-HTMLContentText -Heading "Heading Tag 3" -Detail (Get-HTMLCodeBlock -Code $BuildingRpt -Style PowerShell) $BuildingRpt = '$rpt += Get-HTMLHeading -headerSize 4 -headingText "This is heading 4"' $rpt += Get-HTMLContentText -Heading "Heading Tag 4" -Detail (Get-HTMLCodeBlock -Code $BuildingRpt -Style PowerShell) $BuildingRpt = '$rpt += Get-HTMLHeading -headerSize 5 -headingText "This is heading 5"' $rpt += Get-HTMLContentText -Heading "Heading Tag 5" -Detail (Get-HTMLCodeBlock -Code $BuildingRpt -Style PowerShell) $BuildingRpt = '$rpt += Get-HTMLHeading -headerSize 6 -headingText "This is heading 6"' $rpt += Get-HTMLContentText -Heading "Heading Tag 6" -Detail (Get-HTMLCodeBlock -Code $BuildingRpt -Style PowerShell) $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentOpen -HeaderText "Output" $rpt += Get-HTMLHeading -headerSize 1 -headingText "This is heading 1" $rpt += Get-HTMLHeading -headerSize 2 -headingText "This is heading 2" $rpt += Get-HTMLHeading -headerSize 3 -headingText "This is heading 3" $rpt += Get-HTMLHeading -headerSize 4 -headingText "This is heading 4" $rpt += Get-HTMLHeading -headerSize 5 -headingText "This is heading 5" $rpt += Get-HTMLHeading -headerSize 6 -headingText "This is heading 6" $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentClose $rpt += get-htmltabcontentclose #endregion #region Reports Tab $BuildingRpt = @' $rpt = @() $rpt += Get-HTMLOpenPage -TitleText "ReportHTML" $rpt += Get-HTMLContentOpen $rpt += Get-HTMLContentText -Heading "Header" -Detail "Detailed Information" $rpt += Get-HTMLContentClose $rpt += Get-HTMLClosePage '@ $SavingRpt1 =@' $rpt | set-content -path "c:\temp\MyReport.html" Set-Content -Value $rpt -path "c:\temp\MyReport.html" Invoke-item "c:\temp\MyReport.html" '@ $SavingRpt2 =@' Save-HTMLReport -Reportcontent $rpt -ReportPath c:\temp -ReportName "MyReport" -showreport Save-HTMLReport -Reportcontent $rpt -ReportPath c:\temp -ReportName "MyReport.html" Save-HTMLReport -Reportcontent $rpt -ReportPath c:\temp -ReportName "MyReport" Save-HTMLReport -ShowReport $SavedFile = Save-HTMLReport -ShowReport '@ $SavingRpt3 =@' Save-HTMLToBlobStorage -Needs an Azure Account #More to come '@ $RptFooter =@' $rpt += Get-HTMLClosePage -FooterText "Enter Your Custom Text Here" '@ $BuildingOutput = @() $BuildingOutput += Get-HTMLOpenPage -TitleText "ReportHTML" $BuildingOutput += Get-HTMLContentOpen $BuildingOutput += Get-HTMLContentText -Heading "Header" -Detail "Detailed Information" $BuildingOutput += Get-HTMLContentClose $BuildingOutput += Get-HTMLClosePage -FooterText "Enter Your Custom Text Here" # 'Reports' $Tab = 'Reports' $rpt += get-htmltabcontentopen -TabName $Tab -tabheading ' ' $rpt += Get-HTMLContentOpen -HeaderText "Building Reports" -BackgroundShade 2 $rpt += Get-HTMLContentOpen -HeaderText "How this fucntion set works" $rpt += Get-HTMLContentText -Heading "Functions" -Detail "Each function return HTML code, the parameters you send in will be return with HTML code. " $rpt += Get-HTMLContentText -Heading "Building an Array" -Detail 'To build a report create an array object and add parts of your report together. <br> Eg, create an array variable $Rpt = @() <br> Next add to the array. <BR> $RPT += get-htmlpageopen -title "Welcome"' $rpt += Get-HTMLContentText -Heading "Open / Close" -Detail "Although these functions help you with HTML its still HTML. HTML uses tags and everything you open you must close <BR> Get-HTMLContentOpen -HeaderText, creates a section header. You can then add other functions and code. However you must eventually add get-HTMLContentClose. <BR> Using Indenting is an easy way to keep track of what tag your in." $rpt += Get-HTMLContentText -Heading "Saving Reports" -Detail 'The Array need to be saved to a file, there are a couple of options for this. <BR> You can save the array to a file using set-content. <BR> $rpt | set-content -path "c:\temp\MyReport.html" <BR> You can use the Save-HTMLReport Function. There is also a save to storage azure blob option' $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentOpen -HeaderText "Example" $rpt += Get-HTMLContentText -Heading "Building Report Code" -Detail (Get-HTMLCodeBlock -Code $BuildingRpt -Style PowerShell) $rpt += Get-HTMLContentText -Heading "Custom Report Footer" -Detail (Get-HTMLCodeBlock -Code $RptFooter -Style PowerShell) $rpt += Get-HTMLContentText -Heading "Saving a Report - Write Array to file" -Detail (Get-HTMLCodeBlock -Code $SavingRpt1 -Style PowerShell) $rpt += Get-HTMLContentText -Heading "Saving a Report - Use the builtin function (1 Liner Options)" -Detail (Get-HTMLCodeBlock -Code $SavingRpt2 -Style PowerShell) $rpt += Get-HTMLContentText -Heading "Saving a Report - Save To Azure Storage Blob" -Detail (Get-HTMLCodeBlock -Code $SavingRpt3 -Style PowerShell) $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentOpen -HeaderText "Report Output" $rpt += $BuildingOutput $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentClose $rpt += Get-HTMLTabContentClose #endregion #region Logos # 'Loading Logos' $Tab = 'Logos' $rpt += get-htmltabcontentopen -TabName $Tab -tabheading ' ' #endregion #region Logo names $rpt += Get-HTMLContentOpen -HeaderText "Adding logos to the header" -BackgroundShade 3 $rpt += Get-HTMLContentOpen -HeaderText "Parameters" $rpt += Get-HTMLContentText -Heading "Mixed and Match" -Detail "You can use the following parameters in a mix and match format" $rpt += Get-HTMLContentText -Heading "-LeftLogoName" -Detail "These switch will load logos to the top left of the report from JPG files saved in the module directory. There are 4 image files in the module for examples 'Alternate','Blank','Sample' and 'Corporate' (this uses Get-HTMLLogos)" $rpt += Get-HTMLContentText -Heading "-RightLogoName" -Detail "These switch will load logos to the top of the report right from JPG files saved in the module directory. There are 4 image files in the module for examples 'Alternate','Blank','Sample' and 'Corporate' (this uses Get-HTMLLogos)" $rpt += Get-HTMLContentText -Heading "-LeftLogoString" -Detail "You can eith use a URL reference here, or Base 64 encoded string" $rpt += Get-HTMLContentText -Heading "-RightLogoString" -Detail "You can eith use a URL reference here, or Base 64 encoded string" $rpt += Get-HTMLContentText -Heading "-hidelogos" -Detail "Remove the header" $rpt += Get-HTMLContentText -Heading "-LogoPath" -Detail "Use in conjunction with LeftLogoName and RightLogo Name. Specify the File Name in the directory" $rpt += Get-HTMLContentClose #### From examples $rpt += Get-HTMLContentOpen -HeaderText "From Image Examples" -BackgroundShade 2 $rpt += Get-HTMLContentOpen -HeaderText "Exmaple 1" -BackgroundShade 1 $rpt += Get-HTMLContentOpen -HeaderText "Code" $rpt += Get-HTMLContentText -Heading "Load Images from Files" -Detail (get-htmlcodeblock -Style PowerShell -Code 'Get-HTMLOpenPage -TitleText "Example 1" -LeftLogoName Corporate -RightLogoName Alternate') $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentOpen -HeaderText "Output" $rpt += Get-HTMLOpenPage -TitleText "Example 1" -LeftLogoName Corporate -RightLogoName Alternate $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentOpen -HeaderText "Exmaple 2" -BackgroundShade 1 $rpt += Get-HTMLContentOpen -HeaderText "Code" $rpt += Get-HTMLContentText -Heading "Load Images from Files" -Detail (get-htmlcodeblock -Style PowerShell -Code 'Get-HTMLOpenPage -TitleText "Example 2" -LeftLogoName Blank -RightLogoName Sample') $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentOpen -HeaderText "Output" $rpt += Get-HTMLOpenPage -TitleText "Example 2" -LeftLogoName Blank -RightLogoName Sample $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentClose # ####URL Examples $rpt += Get-HTMLContentOpen -HeaderText "Logo String Examples (URL and Base64)" -BackgroundShade 2 $rpt += Get-HTMLContentOpen -HeaderText "Exmaple 3" -BackgroundShade 1 $rpt += Get-HTMLContentOpen -HeaderText "Code" $rpt += Get-HTMLContentText -Heading "Load Images from a URL" -Detail (get-htmlcodeblock -Style PowerShell -Code 'Get-HTMLOpenPage -TitleText "Example 1" -LeftLogoString "https://azurefieldnotesblog.blob.core.windows.net/wp-content/2016/07/powershell.jpg" ` <BR> -RightLogoString "https://azurefieldnotesblog.blob.core.windows.net/wp-content/2016/07/datacenter.jpg"') $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentOpen -HeaderText "Output" $rpt += Get-HTMLOpenPage -TitleText "Example 3" -LeftLogoString "https://azurefieldnotesblog.blob.core.windows.net/wp-content/2016/07/powershell.jpg" -RightLogoString "https://azurefieldnotesblog.blob.core.windows.net/wp-content/2016/07/datacenter.jpg" $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentClose $OurLogos = Get-HTMLLogos $Base64Logo = $OurLogos.get_item("PowerShell") $rpt += Get-HTMLContentOpen -HeaderText "Exmaple 4" -BackgroundShade 1 $rpt += Get-HTMLContentOpen -HeaderText "Code" $rpt += Get-HTMLContentText -Heading "Use Base 64 code" -Detail (get-htmlcodeblock -Style PowerShell -Code '$OurLogos = Get-HTMLLogos <BR>$YourLogos = get-htmlLogos -LogoPath c:\YourPath\ <br>$Base64Logo = $OurLogos.get_item("PowerShell") <BR>Get-HTMLOpenPage -TitleText "Example 4" -LeftLogoName Blank -RightLogoString $Base64Logo' ) $rpt += Get-HTMLContentText -Heading "Base64 String" -Detail ($Base64Logo.substring(0,100) + "....and so on and so on") $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentOpen -HeaderText "Output" $OurLogos = Get-HTMLLogos $rpt += Get-HTMLOpenPage -TitleText "Example 4" -LeftLogoName Blank -RightLogoString $Base64Logo $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentClose ### Other $rpt += Get-HTMLContentOpen -HeaderText "Logo String Examples (URL and Base64)" -BackgroundShade 2 $rpt += Get-HTMLContentOpen -HeaderText "Exmaple 5" -BackgroundShade 1 $rpt += Get-HTMLContentOpen -HeaderText "Code" $rpt += Get-HTMLContentText -Heading "We dont need no stinking logos!" -Detail (get-htmlcodeblock -Style PowerShell -Code 'Get-HTMLOpenPage -TitleText "Example 5" -HideLogos') $rpt += Get-HTMLContentText -Heading "Use a Logo Path" -Detail (get-htmlcodeblock -Style PowerShell -Code 'Get-HTMLOpenPage -LogoPath "C:\path\" -LeftLogoName "NameOfFileInPath" -RightLogoName Blank' ) $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentClose $rpt += get-htmltabcontentclose #Endregion #region Styles $CodeBlock =@' $rpt += Get-HTMLOpenPage -CSSName Sample $rpt += Get-HTMLContentOpen "Orange" $rpt += Get-HTMLContentText -Heading "Sample Style" -Detail "whooo, coool." $rpt += Get-HTMLContentClose $rpt += Get-HTMLClosePage Save-HTMLReport -ReportContent $rpt -ShowReport '@ $Samplerpt =@() $Samplerpt += Get-HTMLOpenPage -CSSName Sample $Samplerpt += Get-HTMLContentOpen "Orange" $Samplerpt += Get-HTMLContentText -Heading "Sample Style" -Detail "whooo, coool." $Samplerpt += Get-HTMLContentClose $Samplerpt += Get-HTMLClosePage $Tab = 'Styles' $rpt += get-htmltabcontentopen -TabName $Tab -tabheading ' ' $rpt += Get-HTMLContentOpen -HeaderText $Tab $rpt += Get-HTMLContentOpen "Custom Style" $rpt += Get-HTMLContentText -Heading "Customzie the Look" -detail "All style is in a CSS file so if you want to change it, you can" $rpt += Get-HTMLContentText -Heading "Sample Style" -detail "This is just an example when you use get-htmlopenpage use the CSSName switch<BR>use the name of the css style sheet in the directory" $rpt += Get-HTMLContentText -Heading "Usage" -detail "Style Sheets are best best used in conjuction with New-HTMLReportOptions from a custom local directory" $rpt += Get-HTMLContentText -Heading "Code" -Detail (get-htmlcodeblock -style powershell -code $CodeBlock) $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentClose $rpt += get-htmltabcontentclose #endregion #region Options $OptionCode =@' $MyPath ='C:\temp\Custom' if ((Test-Path $MyPath ) -eq $false) {New-Item -ItemType Directory -Path $mypath} New-HTMLReportOptions -SaveOptionsPath $MyPath $Options = new-HTMLReportOptions -CSSPath c:\temp\ -cssname sample -ColorSchemePath c:\temp\ -LogoPath c:\temp\ $Rpt = @() $Rpt += get-htmlopenpage -TitleText "External Options" -Options $Options $Rpt += Get-HTMLContentOpen $Rpt += Get-HTMLContenttext -Heading "this is custom" -Detail "nice" $Rpt += Get-HTMLContentClose $Rpt += Get-HTMLClosePage Save-HTMLReport -ReportContent $rpt -ShowReport '@ $Tab = 'Options' $rpt += get-htmltabcontentopen -TabName $Tab -tabheading ' ' $rpt += Get-HTMLContentOpen -HeaderText $Tab $rpt += Get-HTMLContentText -Heading "Creating Options" -detail "You can saver the options from the Module directory locally and modify them.<BR> for instance your logo files, css styles and even graph colour schemes" $rpt += Get-HTMLContentText -Heading "Code" -Detail (get-htmlcodeblock -style powershell -code $OptionCode) $rpt += Get-HTMLContentClose $rpt += get-htmltabcontentclose #endregion #region Tabs $TabCode = @' $tabarray = @('Sample1','Sample2','Sample3','Sample4') $rpt = @() $rpt += Get-HTMLOpenPage -TitleText 'Tab Test' $rpt += Get-HTMLTabHeader -TabNames $tabarray foreach ($tab in $tabarray ){ $rpt += get-htmltabcontentopen -TabName $tab -tabheading ($tab + ' this is your tab' ) $rpt += Get-HTMLContentText -Heading "$tab" -Detail "$tab" $rpt += get-htmltabcontentclose } $rpt += Get-HTMLClosePage Save-HTMLReport -ReportContent $rpt -ShowReport '@ $tabarray = @('Sample1','Sample2','Sample3','Sample4') $TabExample = @() $TabExample += Get-HTMLTabHeader -TabNames $tabarray foreach ($tab in $tabarray ){ $TabExample += get-htmltabcontentopen -TabName $tab -tabheading ($tab + ' this is your tab' ) $TabExample += Get-HTMLContentText -Heading "$tab" -Detail "$tab" $TabExample += get-htmltabcontentclose } # 'Tabs' $Tab = 'Tabs' $rpt += get-htmltabcontentopen -TabName $Tab -tabheading ' ' $rpt += Get-HTMLContentOpen -HeaderText "Using Tabs in your Reports" -BackgroundShade 2 $rpt += Get-HTMLContentOpen -HeaderText "Creating Tabs" $rpt += Get-HTMLContentText -Heading "Tabs" -Detail 'If you are here, you already know what tabs are. Here is the code' $rpt += Get-HTMLContentText -Heading "Code" -Detail (get-htmlcodeblock -style powershell -code $TabCode) $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentOpen -HeaderText "Output" $rpt += $TabExample $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentClose $rpt += get-htmltabcontentclose #endregion #region Sections $Content1Code = @' $rpt += Get-HTMLContentOpen -HeaderText "Welcome to your content" $rpt += Get-HTMLContentText -Heading "This is simple content open" -Detail "Every time you use get-htmlContentopen you need to use Get-HTMLContentClose " $rpt += Get-HTMLContentClose '@ $Content1Output = @() $Content1Output += Get-HTMLContentOpen -HeaderText "Welcome to your content" $Content1Output += Get-HTMLContentText -Heading "This is simple content open" -Detail "Every time you use get-htmlContentopen you need to use Get-HTMLContentClose " $Content1Output += Get-HTMLContentClose $Content2Code = @' $process = Get-Process | select -First 10 $rpt += Get-HTMLContentOpen -HeaderText "Hiding content" -IsHidden $rpt += Get-HTMLContentTable $process $rpt += Get-HTMLContentClose '@ $Content2Output = @() $Content2Output += Get-HTMLContentOpen -HeaderText "Hiding content" -IsHidden $Content2Output += Get-HTMLContentTable ($process | Select -First 5) $Content2Output += Get-HTMLContentClose $Content3Code = @' $process = Get-Process | select -First 10 $rpt= @() $rpt+= Get-HTMLContentOpen -HeaderText "Background Shade level 5" -BackgroundShade 5 $rpt+= Get-HTMLContentOpen -HeaderText "Background Shade level 4" -BackgroundShade 4 $rpt+= Get-HTMLContentOpen -HeaderText "Background Shade level 3" -BackgroundShade 3 $rpt+= Get-HTMLContentOpen -HeaderText "Background Shade level 2" -BackgroundShade 2 $rpt+= Get-HTMLContentOpen -HeaderText "Background Shade level 1" -BackgroundShade 1 $rpt+= Get-HTMLContentTable ($process | Select -First 5) $rpt+= Get-HTMLContentClose $rpt+= Get-HTMLContentClose $rpt+= Get-HTMLContentClose $rpt+= Get-HTMLContentClose $rpt+= Get-HTMLContentClose '@ $Content3Output = @() $Content3Output += Get-HTMLContentOpen -HeaderText "Background Shade level 5" -BackgroundShade 5 $Content3Output += Get-HTMLContentOpen -HeaderText "Background Shade level 4" -BackgroundShade 4 $Content3Output += Get-HTMLContentOpen -HeaderText "Background Shade level 3" -BackgroundShade 3 $Content3Output += Get-HTMLContentOpen -HeaderText "Background Shade level 2" -BackgroundShade 2 $Content3Output += Get-HTMLContentOpen -HeaderText "Background Shade level 1" -BackgroundShade 1 $Content3Output += Get-HTMLContentTable ($process | Select -First 5) $Content3Output += Get-HTMLContentClose $Content3Output += Get-HTMLContentClose $Content3Output += Get-HTMLContentClose $Content3Output += Get-HTMLContentClose $Content3Output += Get-HTMLContentClose # 'Loading Sections' $Tab = 'Sections' $rpt += get-htmltabcontentopen -TabName $Tab -tabheading ' ' $rpt += Get-HTMLContentOpen -HeaderText "Sections" -BackgroundShade 3 $rpt += Get-HTMLContentOpen -HeaderText "Creating Sections" -BackgroundShade 2 $rpt += Get-HTMLContentOpen -HeaderText "Code" $rpt += Get-HTMLContentText -Heading "Example" -Detail (get-htmlcodeblock -style powershell -code $Content1Code) $rpt += Get-HTMLContentClose $rpt += $Content1Output $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentOpen -HeaderText "Hiding Sections" -BackgroundShade 2 $rpt += Get-HTMLContentOpen -HeaderText "Code" $rpt += Get-HTMLContentText -Heading "Example" -Detail (get-htmlcodeblock -style powershell -code $Content2Code) $rpt += Get-HTMLContentClose $rpt += $Content2Output $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentOpen -HeaderText "Shading" -BackgroundShade 2 $rpt += Get-HTMLContentOpen -HeaderText "Code" $rpt += Get-HTMLContentText -Heading "Example" -Detail (get-htmlcodeblock -style powershell -code $Content3Code) $rpt += Get-HTMLContentClose $rpt += $Content3Output $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentClose $rpt += get-htmltabcontentclose #endregion #region Columns $ColumnCode = @' $MyProcesses= get-process | select Name,Id,PriorityClass,PagedMemorySize $rpt= @() $rpt+= Get-HtmlContentOpen -BackgroundShade 3 -HeaderText "Top and Bottom 5 Process" $rpt+= get-HtmlColumn1of2 $rpt+= Get-HtmlContentOpen -BackgroundShade 2 -HeaderText 'Bottom 5 Process by Paged Memory' $rpt+= Get-HtmlContentTable ($MyProcesses | sort PagedMemorySize | select -First 5) $rpt+= Get-HtmlContentClose $rpt+= get-htmlColumnClose $rpt+= get-htmlColumn2of2 $rpt+= Get-HtmlContentOpen -BackgroundShade 2 -HeaderText 'Top 5 Process by Paged Memory' $rpt+= Get-HtmlContentTable ($MyProcesses | sort PagedMemorySize | select -last 5) $rpt+= Get-HtmlContentClose $rpt+= get-htmlColumnClose $rpt+= Get-HtmlContentClose '@ $MyProcesses= $process | select Name,Id,PriorityClass,Handles,FileVersion $ColumnExample = @() $ColumnExample += Get-HtmlContentOpen -BackgroundShade 3 -HeaderText "Top and Bottom 5 Process" $ColumnExample += get-HtmlColumn1of2 $ColumnExample += Get-HtmlContentOpen -BackgroundShade 2 -HeaderText 'Bottom 5 Process by Paged Memory' $ColumnExample += Get-HtmlContentTable ($MyProcesses | sort PagedMemorySize | select -First 5) $ColumnExample += Get-HtmlContentClose $ColumnExample += get-htmlColumnClose $ColumnExample += get-htmlColumn2of2 $ColumnExample += Get-HtmlContentOpen -BackgroundShade 2 -HeaderText 'Top 5 Process by Paged Memory' $ColumnExample += Get-HtmlContentTable ($MyProcesses | sort PagedMemorySize | select -last 5) $ColumnExample += Get-HtmlContentClose $ColumnExample += get-htmlColumnClose $ColumnExample += Get-HtmlContentClose $DynamicColumnCode=@' $rpt += Get-HTMLContentOpen -HeaderText "Two Column Sample" $rpt += Get-HTMLColumnOpen -ColumnNumber 1 -ColumnCount 2 $rpt += Get-HTMLContentText -Heading "data" -Detail "here" $rpt += Get-HTMLColumnClose $rpt += Get-HTMLColumnOpen -ColumnNumber 2 -ColumnCount 2 $rpt += Get-HTMLContentText -Heading "data" -Detail "There" $rpt += Get-HTMLColumnClose $rpt += Get-HTMLContentclose $rpt += Get-HTMLContentOpen -HeaderText "Three Column Sample" $rpt += Get-HTMLColumnOpen -ColumnNumber 1 -ColumnCount 3 $rpt += Get-HTMLContentText -Heading "data" -Detail "here" $rpt += Get-HTMLColumnClose $rpt += Get-HTMLColumnOpen -ColumnNumber 2 -ColumnCount 3 $rpt += Get-HTMLContentText -Heading "data" -Detail "There" $rpt += Get-HTMLColumnClose $rpt += Get-HTMLColumnOpen -ColumnNumber 3 -ColumnCount 3 $rpt += Get-HTMLContentText -Heading "data" -Detail "over" $rpt += Get-HTMLColumnClose $rpt += Get-HTMLContentclose $rpt += Get-HTMLContentOpen -HeaderText "Four Column Sample" $rpt += Get-HTMLColumnOpen -ColumnNumber 1 -ColumnCount 4 $rpt += Get-HTMLContentText -Heading "data" -Detail "here" $rpt += Get-HTMLColumnClose $rpt += Get-HTMLColumnOpen -ColumnNumber 2 -ColumnCount 4 $rpt += Get-HTMLContentText -Heading "data" -Detail "There" $rpt += Get-HTMLColumnClose $rpt += Get-HTMLColumnOpen -ColumnNumber 3 -ColumnCount 4 $rpt += Get-HTMLContentText -Heading "data" -Detail "over" $rpt += Get-HTMLColumnClose $rpt += Get-HTMLColumnOpen -ColumnNumber 4 -ColumnCount 4 $rpt += Get-HTMLContentText -Heading "data" -Detail "where" $rpt += Get-HTMLColumnClose $rpt += Get-HTMLContentclose $rpt += Get-HTMLContentOpen -HeaderText "Five Column Sample" $rpt += Get-HTMLColumnOpen -ColumnNumber 1 -ColumnCount 5 $rpt += Get-HTMLContentText -Heading "data" -Detail "here" $rpt += Get-HTMLColumnClose $rpt += Get-HTMLColumnOpen -ColumnNumber 2 -ColumnCount 5 $rpt += Get-HTMLContentText -Heading "data" -Detail "There" $rpt += Get-HTMLColumnClose $rpt += Get-HTMLColumnOpen -ColumnNumber 3 -ColumnCount 5 $rpt += Get-HTMLContentText -Heading "data" -Detail "over" $rpt += Get-HTMLColumnClose $rpt += Get-HTMLColumnOpen -ColumnNumber 4 -ColumnCount 5 $rpt += Get-HTMLContentText -Heading "data" -Detail "where" $rpt += Get-HTMLColumnClose $rpt += Get-HTMLColumnOpen -ColumnNumber 5 -ColumnCount 5 $rpt += Get-HTMLContentText -Heading "data" -Detail "why" $rpt += Get-HTMLColumnClose $rpt += Get-HTMLContentclose '@ $DynamicColumn = @() $DynamicColumn += Get-HTMLContentOpen -HeaderText "Two Column Sample" $DynamicColumn += Get-HTMLColumnOpen -ColumnNumber 1 -ColumnCount 2 $DynamicColumn += Get-HTMLContentText -Heading "data" -Detail "here" $DynamicColumn += Get-HTMLColumnClose $DynamicColumn += Get-HTMLColumnOpen -ColumnNumber 2 -ColumnCount 2 $DynamicColumn += Get-HTMLContentText -Heading "data" -Detail "there" $DynamicColumn += Get-HTMLColumnClose $DynamicColumn += Get-HTMLContentclose $DynamicColumn += Get-HTMLContentOpen -HeaderText "Three Column Sample" $DynamicColumn += Get-HTMLColumnOpen -ColumnNumber 1 -ColumnCount 3 $DynamicColumn += Get-HTMLContentText -Heading "data" -Detail "here" $DynamicColumn += Get-HTMLColumnClose $DynamicColumn += Get-HTMLColumnOpen -ColumnNumber 2 -ColumnCount 3 $DynamicColumn += Get-HTMLContentText -Heading "data" -Detail "there" $DynamicColumn += Get-HTMLColumnClose $DynamicColumn += Get-HTMLColumnOpen -ColumnNumber 3 -ColumnCount 3 $DynamicColumn += Get-HTMLContentText -Heading "data" -Detail "over" $DynamicColumn += Get-HTMLColumnClose $DynamicColumn += Get-HTMLContentclose $DynamicColumn += Get-HTMLContentOpen -HeaderText "Four Column Sample" $DynamicColumn += Get-HTMLColumnOpen -ColumnNumber 1 -ColumnCount 4 $DynamicColumn += Get-HTMLContentText -Heading "data" -Detail "here" $DynamicColumn += Get-HTMLColumnClose $DynamicColumn += Get-HTMLColumnOpen -ColumnNumber 2 -ColumnCount 4 $DynamicColumn += Get-HTMLContentText -Heading "data" -Detail "there" $DynamicColumn += Get-HTMLColumnClose $DynamicColumn += Get-HTMLColumnOpen -ColumnNumber 3 -ColumnCount 4 $DynamicColumn += Get-HTMLContentText -Heading "data" -Detail "over" $DynamicColumn += Get-HTMLColumnClose $DynamicColumn += Get-HTMLColumnOpen -ColumnNumber 4 -ColumnCount 4 $DynamicColumn += Get-HTMLContentText -Heading "data" -Detail "where" $DynamicColumn += Get-HTMLColumnClose $DynamicColumn += Get-HTMLContentclose $DynamicColumn += Get-HTMLContentOpen -HeaderText "Five Column Sample" $DynamicColumn += Get-HTMLColumnOpen -ColumnNumber 1 -ColumnCount 5 $DynamicColumn += Get-HTMLContentText -Heading "data" -Detail "here" $DynamicColumn += Get-HTMLColumnClose $DynamicColumn += Get-HTMLColumnOpen -ColumnNumber 2 -ColumnCount 5 $DynamicColumn += Get-HTMLContentText -Heading "data" -Detail "there" $DynamicColumn += Get-HTMLColumnClose $DynamicColumn += Get-HTMLColumnOpen -ColumnNumber 3 -ColumnCount 5 $DynamicColumn += Get-HTMLContentText -Heading "data" -Detail "over" $DynamicColumn += Get-HTMLColumnClose $DynamicColumn += Get-HTMLColumnOpen -ColumnNumber 4 -ColumnCount 5 $DynamicColumn += Get-HTMLContentText -Heading "data" -Detail "where" $DynamicColumn += Get-HTMLColumnClose $DynamicColumn += Get-HTMLColumnOpen -ColumnNumber 5 -ColumnCount 5 $DynamicColumn += Get-HTMLContentText -Heading "data" -Detail "why" $DynamicColumn += Get-HTMLColumnClose $DynamicColumn += Get-HTMLContentclose # 'Tabs' $Tab = 'Columns' $rpt += get-htmltabcontentopen -TabName $Tab -tabheading ' ' $rpt += Get-HTMLContentOpen -HeaderText "Dynamic Columns in your Reports (Recommended Method)" -BackgroundShade 2 $rpt += Get-HTMLContentOpen -HeaderText "Code" $rpt += Get-HTMLContentText -Heading "Example" -Detail (get-htmlcodeblock -style powershell -code $DynamicColumnCode) $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentOpen -HeaderText "Output" $rpt += $DynamicColumn $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentOpen -HeaderText "Creating Columns in your Reports (Older Method)" -BackgroundShade 2 $rpt += Get-HTMLContentOpen -HeaderText "Code" $rpt += Get-HTMLContentText -Heading "Example" -Detail (get-htmlcodeblock -style powershell -code $ColumnCode) $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentOpen -HeaderText "Output" -BackgroundShade 4 $rpt += $ColumnExample $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentClose $rpt += get-htmltabcontentclose #endregion #region Tables $TableCode1 = @' $SampleList = get-process | select Name,Id,PriorityClass,PagedMemorySize,PrivateMemorySize,VirtualMemorySize -First 10 $rpt= @() $rpt+= Get-HtmlContentOpen -HeaderText "Processes" $rpt+= Get-HtmlContentTable $SampleList $rpt+= Get-HtmlContentClose '@ $SampleList1 = $process | select -First 10 $TableExample1 = @() $TableExample1 += Get-HtmlContentOpen -HeaderText "Processes" $TableExample1 += Get-HtmlContentTable -ArrayOfObjects $SampleList1 $TableExample1 += Get-HtmlContentClose $TableCode2 = @' $SampleList = get-process $rpt= @() $rpt+= Get-HtmlContentOpen -HeaderText "Processes" $rpt+= Get-HtmlContentTable $SampleList $rpt+= Get-HtmlContentClose '@ $SampleList2 = $process | select -First 20 $TableExample2 = @() $TableExample2 += Get-HtmlContentOpen -HeaderText "Processes" $TableExample2 += Get-HtmlContentTable -ArrayOfObjects $SampleList2 -GroupBy PriorityClass $TableExample2 += Get-HtmlContentClose $TableCode3 = @' $SampleList3 = get-process $rpt = @() $rpt += Get-HtmlContentOpen -HeaderText "Processes, 2 fixed table one not." $rpt += Get-HtmlContentTable -ArrayOfObjects ($SampleList3 | select -first 4) -Fixed $rpt += Get-HTMLContentText -Heading ' ' -Detail ' ' $rpt += Get-HtmlContentTable -ArrayOfObjects ($SampleList3 | select -last 4) -Fixed $rpt += Get-HtmlContentClose '@ $SampleList3 = $process $TableExample3 = @() $TableExample3 += Get-HtmlContentOpen -HeaderText "Processes, 2 fixed tables." $TableExample3 += Get-HtmlContentTable -ArrayOfObjects ($SampleList3 | select -first 4) -Fixed $TableExample3 += Get-HTMLContentText -Heading ' ' -Detail ' ' $TableExample3 += Get-HtmlContentTable -ArrayOfObjects ($SampleList3 | select -last 8) -Fixed $TableExample3 += Get-HtmlContentClose $totalExamples =@() $arrayofobjects = $process | select Name, Handles ,WorkingSet ,PagedMemorySize ,PrivateMemorySize |select -First 5 $totalExamples += Get-HtmlContentOpen -HeaderText "Processes, Table Footer with Sum, Count and Average" $totalExamples += Get-HTMLContentTable $arrayofobjects -ColumnTotals WorkingSet, PagedMemorySize -columnCounts Handles,Name -columnAverages PrivateMemorySize $totalExamples += Get-HtmlContentClose $totalExample =@' $arrayofobjects = Get-Process | select Name, Handles ,WorkingSet ,PagedMemorySize ,PrivateMemorySize $rpt = @() $rpt += Get-HTMLOpenPage $rpt += Get-HtmlContentOpen -HeaderText "Processes, Table Footer with Sum, Count and Average $rpt += Get-HTMLContentTable $arrayofobjects -ColumnTotals WorkingSet, PagedMemorySize -columnCounts Handles,Name -columnAverages PrivateMemorySize $rpt += Get-HtmlContentClose $rpt += Get-HTMLClosePage Save-HTMLReport -ReportContent $rpt -ShowReport '@ $MyPC = get-wmiobject Win32_ComputerSystem -cn $env:COMPUTERNAME | select @{name="RAM";Expression={"{0:N2}" -f($_.TotalPhysicalMemory/1gb).tostring("N0")}},NumberOfProcessors,NumberOfLogicalProcessors ,Name,Model,roles $AdvancedTable = @() $AdvancedTable += Get-HtmlContentOpen -HeaderText "Table With array in column" $AdvancedTable += Get-HTMLContentTableAdvanced $MyPC $AdvancedTable += Get-HtmlContentClose $AdvancedTableExample =@' $MyPC = get-wmiobject Win32_ComputerSystem -cn $env:COMPUTERNAME | select @{name="RAM";Expression={"{0:N2}" -f($_.TotalPhysicalMemory/1gb).tostring("N0")}}, ` NumberOfProcessors,NumberOfLogicalProcessors ,Name,Model,roles $rpt = @() $rpt += get-htmlopenpage $rpt += Get-HtmlContentOpen -HeaderText "Table With array in column" $rpt += Get-HTMLContentTableAdvanced $MyPC $rpt += Get-HtmlContentClose $rpt += get-htmlclosepage Save-HTMLReport -ReportContent $rpt -ShowReport '@ # 'Tabs' $Tab = 'Tables' $rpt += get-htmltabcontentopen -TabName $Tab -tabheading ' ' $rpt += Get-HTMLContentOpen -HeaderText "Display PowerShell arrays using tables" -BackgroundShade 3 $rpt += Get-HTMLContentOpen -HeaderText "Simple Example" -BackgroundShade 2 $rpt += Get-HTMLContentOpen -HeaderText "Example" $rpt += Get-HTMLContentText -Heading "Sortable Headers" -Detail 'Simple Tables are sortable click the header' $rpt += Get-HTMLContentText -Heading "No Sortable Headers" -Detail 'to remove sort from non grouped tables use -NoSortableHeader' $rpt += Get-HTMLContentText -Heading "Code" -Detail (Get-HTMLcodeblock -style powershell -code $TableCode1) $rpt += Get-HTMLContentClose $rpt += $TableExample1 $rpt += Get-HTMLContentClose #GROUPED $rpt += Get-HTMLContentOpen -HeaderText "Grouped Example" -BackgroundShade 2 $rpt += Get-HTMLContentOpen -HeaderText "Example" $rpt += Get-HTMLContentText -Heading "Using Expressions" -Detail 'If you want to rename your column header or use calculated columns you can use expressions. <br> @{Name="Virtual Memory Size";Expression={$_.VirtualMemorySize / 1Kb }' $rpt += Get-HTMLContentText -Heading "Code" -Detail (Get-HTMLcodeblock -style powershell -code $TableCode2) $rpt += Get-HTMLContentClose $rpt += $TableExample2 $rpt += Get-HTMLContentClose #fixed width $rpt += Get-HTMLContentOpen -HeaderText "Fixed Width" -BackgroundShade 2 $rpt += Get-HTMLContentOpen -HeaderText "Example" $rpt += Get-HTMLContentText -Heading "Column Width" -Detail 'Sometimes you may be display data and the column will dynamically shift. You can use the -fixed switch' $rpt += Get-HTMLContentText -Heading "Code" -Detail (Get-HTMLcodeblock -style powershell -code $TableCode3) $rpt += Get-HTMLContentClose $rpt += $TableExample3 $rpt += Get-HTMLContentClose #Total Rows $rpt += Get-HTMLContentOpen -HeaderText "Table Footer / Totals (Sum, Count, Average)" -BackgroundShade 2 $rpt += Get-HTMLContentOpen -HeaderText "Example" $rpt += Get-HTMLContentText -Heading "Tables Totals" -Detail 'Want to add count, Avg or Sum to the bottom of a table. These three array variables expect a header from the arrayofobjects.' $rpt += Get-HTMLContentText -Heading "Code" -Detail (Get-HTMLcodeblock -style powershell -code $totalExample) $rpt += Get-HTMLContentClose $rpt += $totalExamples $rpt += Get-HTMLContentClose #AdvancedTableExample $rpt += Get-HTMLContentOpen -HeaderText "Table With array in column" -BackgroundShade 2 $rpt += Get-HTMLContentOpen -HeaderText "Example" $rpt += Get-HTMLContentText -Heading "Code" -Detail (Get-HTMLcodeblock -style powershell -code $AdvancedTableExample) $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentOpen -HeaderText "Example" $rpt += Get-HTMLContentText -Heading "Tables displaying Arrays in Arrays" -Detail 'Adding an array with another array in it, doesnt display correctly. Roles is an Array' $rpt += Get-HTMLContentText -Heading "Code Borrowed from here" -Detail "URL01https://www.powershellgallery.com/packages/EnhancedHTML2URL02EnhancedHTML2URL03 I would suggest for advanced tables use this module" $rpt += Get-HTMLContentText -Heading "Usage" -Detail 'You can simply run your array through the enhancedHTML2 functions and add it to $RPT ' $rpt += Get-HTMLContentClose $rpt += $AdvancedTable $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentClose $rpt += get-htmltabcontentclose #endregion #region DataTable $SimpleDataTable =@' $Rpt = @() $Rpt += get-htmlopenpage -TitleText "Data tables" $Rpt += Get-HTMLContentOpen $Rpt += get-htmlcontentdatatable -ArrayOfObjects (Get-Command -Module ReportHTML | select Name,version,modulename,verb,noun) $Rpt += Get-HTMLContentClose $Rpt += Get-HTMLClosePage Save-HTMLReport -ReportContent $rpt -ShowReport '@ $DataTableOptions = @' $arr = (Get-Command -Module ReportHTML | select Name,version,@{n='ModuleName';e={"URL0 1" + $_.ModuleName + "-" + $_.version + ".htmlURL0 2" + $_.ModuleName + "URL0 3"}} ,verb,noun) #remove the spaces in the URL $Rpt = @() $Rpt += get-htmlopenpage -TitleText "Data tables" $Rpt += Get-HTMLContentOpen $Rpt += get-htmlcontentdatatable -ArrayOfObjects $arr -HideFooter -PagingOptions '11,14,21,' #$Rpt += get-htmlcontentdatatable -ArrayOfObjects $arr -HideFooter -PagingOptions ' ' #to show all use -PagingOptions ' ' $Rpt += Get-HTMLContentClose $Rpt += Get-HTMLClosePage Save-HTMLReport -ReportContent $rpt -ShowReport '@ $Tab = 'DataTable' $rpt += get-htmltabcontentopen -TabName $Tab -tabheading ' ' $Rpt += Get-HTMLContentOpen -HeaderText "Data tables Examples" -BackgroundShade 3 #example 1 $Rpt += Get-HTMLContentOpen -HeaderText "Data tables Example 1" -BackgroundShade 2 $Rpt += Get-HTMLContentOpen -HeaderText "Simple Data table Code" $Rpt += Get-HTMLContentText -Heading "Code" -Detail (Get-HTMLCodeBlock -Code $SimpleDataTable -Style powershell) $Rpt += Get-HTMLContentClose $Rpt += Get-HTMLContentOpen -HeaderText "Simple Data table output" $Rpt += get-htmlcontentdatatable -ArrayOfObjects (Get-Command -Module ReportHTML | select Name,version,modulename,verb,noun) $Rpt += Get-HTMLContentClose $Rpt += Get-HTMLContentClose #example 2 $Rpt += Get-HTMLContentOpen -HeaderText "Data tables Example 2" -BackgroundShade 2 $Rpt += Get-HTMLContentOpen -HeaderText "Advanced Data table Code" $Rpt += Get-HTMLContentText -Heading "Code" -Detail (Get-HTMLCodeBlock -Code $DataTableOptions -Style powershell) $Rpt += Get-HTMLContentClose $Rpt += Get-HTMLContentOpen -HeaderText "Advanced Data table output" $Rpt += get-htmlcontentdatatable -ArrayOfObjects (Get-Command -Module ReportHTML | select Name,version, @{n='ModuleName';e={"URL01" + $_.ModuleName + "-" + $_.version + ".htmlURL02" + $_.ModuleName + "URL03"}} ,verb,noun) -HideFooter -PagingOptions '11,14,21,' $Rpt += Get-HTMLContentClose $Rpt += Get-HTMLContentClose $Rpt += Get-HTMLContentClose $rpt += get-htmltabcontentclose #endregion #region Row Colour $TableCode4 = @' $SampleList = get-process | select -First 20 $rpt= @() $rpt+= Get-HtmlContentOpen -HeaderText "Processes" $SampleListColour = Set-TableRowColor $SampleList2 -Alternating $rpt+= Get-HtmlContentTable -ArrayOfObjects $SampleListColour $rpt+= Get-HtmlContentClose '@ $SampleList2 = $process | select -First 20 $TableExample4 = @() $TableExample4 += Get-HtmlContentOpen -HeaderText "Processes" $SampleListColour = Set-TableRowColor $SampleList2 -Alternating $TableExample4 += Get-HtmlContentTable -ArrayOfObjects $SampleListColour $TableExample4 += Get-HtmlContentClose $ColourRow = @' # You must use single quotes here for the expression $Red = '$this.Handles -ge 800' $Yellow = '$this.Handles -gt 200 -or $this.Handles -lt 800' $Green = '$this.Handles -le 200' # call the function and pass the array and color expressions $ProcessColoured = Set-TableRowColor ($process | select -first 40) -Red $Red -Yellow $Yellow -Green $Green # let's just see what the function did $ProcessColoured | select name, Handles , RowColor $rpt = @() $rpt += Get-HtmlContentOpen -HeaderText "Process with Row Colour Logic" $rpt += Get-HtmlContentTable ($ProcessColoured | Sort Handles) $rpt += Get-HtmlContentClose '@ # You must use single quotes here for the expression and the work $this $Red = '$this.Handles -ge 400' $Yellow = '$this.Handles -gt 250 -or $this.Handles -lt 400' $Green = '$this.Handles -le 250' # call the function and pass the array and color expressions $ProcessColoured = Set-TableRowColor ($process | select -first 40) -Red $Red -Yellow $Yellow -Green $Green $ProcessColouredrpt = @() $ProcessColouredrpt += Get-HtmlContentOpen -HeaderText "Process with Row Colour Logic" $ProcessColouredrpt += Get-HtmlContentTable ($ProcessColoured | Sort Handles) $ProcessColouredrpt += Get-HtmlContentClose $Tab = 'Row Colour' $rpt += get-htmltabcontentopen -TabName $Tab -tabheading ' ' $rpt += Get-HTMLContentOpen -HeaderText $Tab -BackgroundShade 2 $rpt += Get-HTMLContentOpen -HeaderText "Alternating" -BackgroundShade 2 $rpt += Get-HTMLContentOpen -HeaderText "Example" $rpt += Get-HTMLContentText -Heading "Alternating Row Colour" -Detail 'How to set alternating row colour on an array' $rpt += Get-HTMLContentText -Heading "Code" -Detail (Get-HTMLcodeblock -style powershell -code $TableCode4) $rpt += Get-HTMLContentClose $rpt += $TableExample4 $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentOpen "Code" $rpt += Get-HTMLContentText -Heading "How to add colours to tables" -Detail "You can apply colours to a row using logic." $rpt += Get-HTMLContentText -Heading "Code" -Detail (get-htmlcodeblock -style PowerShell -code $ColourRow) $rpt += Get-HTMLContentClose $rpt += $ProcessColouredrpt $rpt += Get-HTMLContentClose $rpt += get-htmltabcontentclose #endregion #region HyperLinks $HyperLinkCode1 = @' #again this uses O but you should use 0 get-htmlcontenttext -heading "HyperLink" -Detail "URLO1https://www.azurefieldnotes.comURLO2Azure Field NotesURLO3" '@ $HyperLinkExample1 = @() $HyperLinkExample1 += "URL01https://www.azurefieldnotes.comURL02Azure Field NotesURL03" $AnchorCode2 = @' $rpt = @() $Links = Get-HTMLContentText -Heading "Anchor Links" -Detail (( Get-HTMLAnchorLink -AnchorName "This" -AnchorText "This" ) + " | " + (Get-HTMLAnchorLink -AnchorName "Here" -AnchorText "Here")) $rpt += $Links $rpt += Get-HTMLContentOpen -Anchor This $rpt += Get-HTMLContentText -Heading "Anchor Example" -Detail "You can add anchors to HTMLContent open as well" $rpt += Get-HTMLContentText -Heading "Anchors" -Detail "Used" $rpt += Get-HTMLAnchor -AnchorName Here $rpt += Get-HTMLContentClose $rpt += $Links '@ $AnchorExample2 = @() $Links = Get-HTMLContentText -Heading "Anchor Links" -Detail (( Get-HTMLAnchorLink -AnchorName "SampleTop" -AnchorText "SampleTop" ) + " | " + (Get-HTMLAnchorLink -AnchorName "SampleBottom" -AnchorText "SampleBottom")) $AnchorExample2 += Get-HTMLContentOpen $AnchorExample2 += Get-HTMLContentText -Heading "Anchor Example" -Detail "You can add anchors to HTMLContent open as well" $AnchorExample2 += Get-HTMLContentText -Heading "1 " -Detail " " $AnchorExample2 += Get-HTMLContentText -Heading "2 " -Detail " " $AnchorExample2 += Get-HTMLContentText -Heading "3 " -Detail " " $AnchorExample2 += Get-HTMLContentText -Heading "4 " -Detail " " $AnchorExample2 += Get-HTMLContentText -Heading "5 " -Detail " " $AnchorExample2 += Get-HTMLContentText -Heading "6 " -Detail " " $AnchorExample2 += Get-HTMLContentText -Heading "7 " -Detail " " $AnchorExample2 += Get-HTMLContentText -Heading "8 " -Detail " " $AnchorExample2 += Get-HTMLContentText -Heading "9 " -Detail " " $AnchorExample2 += Get-HTMLContentText -Heading "10 " -Detail " " $AnchorExample2 += Get-HTMLContentText -Heading "11 " -Detail " " $AnchorExample2 += Get-HTMLContentText -Heading "12 " -Detail " " $AnchorExample2 += Get-HTMLContentText -Heading "13 " -Detail " " $AnchorExample2 += Get-HTMLContentText -Heading "14 " -Detail " " $AnchorExample2 += Get-HTMLContentText -Heading "15 " -Detail " " $AnchorExample2 += Get-HTMLContentText -Heading "16 " -Detail " " $AnchorExample2 += Get-HTMLContentText -Heading "17 " -Detail " " $AnchorExample2 += Get-HTMLContentText -Heading "18 " -Detail " " $AnchorExample2 += Get-HTMLContentText -Heading "19 " -Detail " " $AnchorExample2 += Get-HTMLContentText -Heading "20 " -Detail " " $AnchorExample2 += Get-HTMLContentText -Heading "21 " -Detail " " $AnchorExample2 += Get-HTMLContentText -Heading "22 " -Detail " " $AnchorExample2 += Get-HTMLContentText -Heading "23 " -Detail " " $AnchorExample2 += Get-HTMLContentText -Heading "24 " -Detail " " $AnchorExample2 += Get-HTMLContentText -Heading "25 " -Detail " " $AnchorExample2 += Get-HTMLContentText -Heading "26 " -Detail " " $AnchorExample2 += Get-HTMLContentText -Heading "26.5 " -Detail " " $AnchorExample2 += Get-HTMLContentText -Heading "26.7 " -Detail " " $AnchorExample2 += Get-HTMLContentText -Heading ".... " -Detail " " $AnchorExample2 += Get-HTMLContentText -Heading "30 " -Detail " " $AnchorExample2 += Get-HTMLContentClose # 'Tabs' $Tab = 'HyperLinks' $rpt += Get-HTMLAnchor -AnchorName "SampleTop" $rpt += get-htmltabcontentopen -TabName $Tab -tabheading ' ' #HyperLinks $rpt += Get-HTMLContentOpen -HeaderText "Adding Hyperlinks" -BackgroundShade 2 $rpt += Get-HTMLContentOpen -HeaderText "Code" $rpt += Get-HTMLContentText -Heading "How it works" -Detail "A hyper link is uses A tags and a link with a hyperlink behind it. <BR> To build a hyper link we use a find and replace style. This allows you to create a hyperlink in any data set. <BR> To create a hyper link you need to use U R L 0 1, U R L 0 2 and U R L 0 3 as text (with no spaces). <BR>or written with O's not 0's The format you need to follows is URLO1 HyperLink URLO2 LinkText URLO3" $rpt += Get-HTMLContentText -Heading "Example" -Detail (get-htmlcodeblock -style powershell -code $HyperLinkCode1) $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentOpen -HeaderText "Output" -BackgroundShade 3 $rpt += get-htmlcontenttext -heading "HyperLink" -Detail "URL01https://www.azurefieldnotes.comURL02Azure Field NotesURL03" $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentOpen -HeaderText "Code" $rpt += Get-HTMLContentText -Heading "New Tab" -Detail "To build a hyper link that will open in a new tab use NEW at the end of the first reference word <BR> U R L 0 1 N E W, U R L 0 2 and U R L 0 3 as text (with no spaces). <BR>or written with O's not 0's The format you need to follows is URLO1NEW HyperLink URLO2 LinkText URLO3" $rpt += Get-HTMLContentText -Heading "Example" -Detail (get-htmlcodeblock -style powershell -code $HyperLinkCode1) $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentOpen -HeaderText "Output" -BackgroundShade 3 $rpt += get-htmlcontenttext -heading "HyperLink" -Detail "URL01NEWhttps://www.azurefieldnotes.comURL02Azure Field Notes opening in a new tabURL03" $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentClose #Anchors $rpt += Get-HTMLContentOpen -HeaderText "Adding Anchors and Links" -BackgroundShade 2 $rpt += Get-HTMLContentOpen -HeaderText "Code" $rpt += Get-HTMLContentText -Heading "Example" -Detail (get-htmlcodeblock -style powershell -code $AnchorCode2) $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentOpen -HeaderText "Output" -BackgroundShade 3 -Anchor "SampleTop" $rpt += $links $rpt += $AnchorExample2 $rpt += $links $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentClose $rpt += Get-HTMLAnchor -AnchorName "SampleBottom" $rpt += get-htmltabcontentclose #endregion #region Charts $ChartCode1 =@' $Process = Get-Process $PieProcess = $process | group ProcessName | sort count -Descending |select -First 5 $PieObject = Get-HTMLPieChartObject $rpt = @() $rpt += Get-HTMLOpenpage $rpt += Get-HTMLContentOpen -HeaderText "Simple Example" $rpt += Get-HTMLPieChart -ChartObject $PieObject -DataSet $PieProcess $rpt += Get-HTMLContentClose $rpt += Get-HTMLClosePage save-htmlreport -reportcontent $rpt -showreport '@ $PieProcess = $process | group Name | sort count -Descending |select -First 5 $ChartExample1 = @() $ChartExample1 += Get-HTMLContentOpen -HeaderText "Simple Example" $PieObject = Get-HTMLPieChartObject $ChartExample1 += Get-HTMLPieChart -ChartObject $PieObject -DataSet $PieProcess $ChartExample1 += Get-HTMLContentClose $ChartCode2 =@' $Process = Get-Process $PieProcess2 = $process | group ProcessName | sort count -Descending |select -First 5 #basic Properties $PieObject2 = Get-HTMLPieChartObject $PieObject2.Title = "Top Processes" $PieObject2.Size.Height =250 $PieObject2.Size.width =250 $PieObject2.ChartStyle.ChartType = 'doughnut' #These file exist in the module directoy, There are 4 schemes by default $PieObject2.ChartStyle.ColorSchemeName = "ColorScheme4" #There are 8 generated schemes, randomly generated at runtime $PieObject2.ChartStyle.ColorSchemeName = "Generated8" #you can also ask for a random scheme. Which also happens if you have too many records for the scheme $PieObject2.ChartStyle.ColorSchemeName = 'Random' #Data defintion you can reference any column from name and value from the dataset. #Name and Count are the default to work with the Group function. $PieObject2.DataDefinition.DataNameColumnName ='Name' $PieObject2.DataDefinition.DataValueColumnName = 'Count' $rpt = @() $rpt += Get-HTMLopenpage -TitleText Title $rpt += Get-HTMLContentOpen -HeaderText "Advanced Example" $rpt += Get-HTMLPieChart -ChartObject $PieObject2 -DataSet $PieProcess $rpt += Get-HTMLContentClose $rpt += Get-HTMLclosepage save-htmlreport -reportcontent $rpt -showreport '@ $ColorSchemes = Get-HTMLColorSchemes $PieProcess = $process | group Name | sort count -Descending |select -First 5 #basic Properties $PieObject2 = Get-HTMLPieChartObject $PieObject2.Title = "Top Processes" $PieObject2.Size.Height =250 $PieObject2.Size.width =250 $PieObject2.ChartStyle.ChartType = 'doughnut' #These file exist in the module directoy, There are 4 schemes by default $PieObject2.ChartStyle.ColorSchemeName = "ColorScheme4" #There are 8 generated schemes, randomly generated at runtime $PieObject2.ChartStyle.ColorSchemeName = "Generated8" #you can also ask for a random scheme. Which also happens if you have too many records for the scheme $PieObject2.ChartStyle.ColorSchemeName = 'Random' #Data defintion you can reference any column from name and value from the dataset. #Name and Count are the default to work with the Group function. $PieObject2.DataDefinition.DataNameColumnName ='Name' $PieObject2.DataDefinition.DataValueColumnName = 'Count' $ChartExample2 = @() #$ChartExample2 += Get-HTMLopenpage -TitleText t $ChartExample2 += Get-HTMLContentOpen -HeaderText "Advanced Example" $ChartExample2 += Get-HTMLPieChart -ChartObject $PieObject2 -DataSet $PieProcess $ChartExample2 += Get-HTMLContentClose #$ChartExample2 += Get-HTMLclosepage #save-htmlreport -reportcontent $ChartExample2 -showreport $ChartCode3 =@' $Process = Get-Process $BarProcess = $process | group Name | sort count -Descending |select -First 10 $ChartExample3 = @() $ChartExample3 += Get-HTMLContentOpen -HeaderText "Simple Bar Example" $BarObject = Get-HTMLBarChartObject $ChartExample3 += Get-HTMLBarChart -ChartObject $BarObject -DataSet $BarProcess $ChartExample3 += Get-HTMLContentClose save-htmlreport -reportcontent $rpt -showreport '@ $BarProcess = $process | group Name | sort count -Descending |select -First 8 $ChartExample3 = @() $ChartExample3 += Get-HTMLContentOpen -HeaderText "Simple Bar Example" $BarObject = Get-HTMLBarChartObject $BarObject.ChartStyle.legendPosition = 'none' $ChartExample3 += Get-HTMLBarChart -ChartObject $BarObject -DataSet $BarProcess $ChartExample3 += Get-HTMLContentClose #chart4 $ChartCode4 =@' $Process = Get-Process $BarProcess = $process | group Name | sort count -Descending |select -First 10 $ChartExample4 = @() $ChartExample4 += Get-HTMLContentOpen -HeaderText "Simple Bar Example" $BarObject = Get-HTMLBarChartObject $ChartExample4 += Get-HTMLBarChart -ChartObject $BarObject -DataSet $BarProcess $ChartExample4 += Get-HTMLContentClose save-htmlreport -reportcontent $rpt -showreport '@ $BarProcess = $process | group Name | sort count -Descending |select -First 8 $ChartExample4 = @() $ChartExample4 += Get-HTMLContentOpen -HeaderText "Stacked Chart Example" $BarObject = Get-HTMLBarChartObject $BarObject.ChartStyle.legendPosition = 'none' $ChartExample4 += Get-HTMLBarChart -ChartObject $BarObject -DataSet $BarProcess $ChartExample4 += Get-HTMLContentClose $Tab = 'Charts' $rpt += get-htmltabcontentopen -TabName $Tab -tabheading ' ' $rpt += Get-HTMLContentOpen -HeaderText $Tab $rpt += Get-HTMLContentText -Heading "Chart JS" -detail "Rather than reinvent charting and because we wanted to be able to generate charts in Azure Automation I used Chart JS" $rpt += Get-HTMLContentText -Heading "Chart JS Project" -detail "URL01http://www.chartjs.org/URL02Chart JS SiteURL03 Simple HTML5 charts using the canvas element." $rpt += Get-HTMLContentText -Heading "AWESOME Tool" -detail "If you want to see how to construct charts in ChartJS This is so helpful URL01Https://codepen.io/natenorberg/pen/WwqRar/URL02Https://codepen.io/natenorberg/pen/WwqRar/URL03" $rpt += Get-HTMLContentText -Heading "Possiblities" -detail "I will explain a few example and how the chart bject works for rapid creation however you can always create your own chart code and add it" $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentOpen -HeaderText 'Charts' -BackgroundShade 3 $rpt += Get-HTMLContentOpen -HeaderText "Code" $rpt += Get-HTMLContentText -Heading "Simple Example" -Detail (get-htmlcodeblock -style powershell -code $ChartCode1) $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentOpen -HeaderText "Output" -BackgroundShade 2 $rpt += $ChartExample1 $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentOpen -HeaderText "Code" $rpt += Get-HTMLContentText -Heading "Advanced Example" -Detail (get-htmlcodeblock -style powershell -code $ChartCode2) $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentOpen -HeaderText "Output" -BackgroundShade 2 $rpt += $ChartExample2 $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentOpen -HeaderText "Code" $rpt += Get-HTMLContentText -Heading "Bar Chart Example" -Detail (get-htmlcodeblock -style powershell -code $ChartCode3) $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentOpen -HeaderText "Output" -BackgroundShade 2 $rpt += $ChartExample3 $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentOpen -HeaderText "Code" $rpt += Get-HTMLContentText -Heading "Stack Chart Example" -Detail (get-htmlcodeblock -style powershell -code $ChartCode4) $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentOpen -HeaderText "Output" -BackgroundShade 2 $rpt += $ChartExample4 $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentClose $rpt += get-htmltabcontentclose #endregion #region Javascript $Tab = 'JavaScript' $rpt += get-htmltabcontentopen -TabName $Tab -tabheading ' ' $rpt += Get-HTMLContentOpen -HeaderText 'The Basics' $rpt += Get-HTMLContentText -Heading "Scripts" -detail "There are a couple of scripts that are located in the module directory.<BR>These scripts are loaded when you run Get-HTMLopenpage. <BR>you can use Get-HTMLJavaScripts to retrieve them . What this means though<BR>is that you can simply drop your own javascripts into the directory, <BR>or use the function to point at another directory and load custom code." $rpt += Get-HTMLContentClose $rpt += get-htmltabcontentclose #endregion #region HTML $SampleCode=@' $Tab = 'JavaScript' $rpt += get-htmltabcontentopen -TabName $Tab -tabheading ' ' $rpt += Get-HTMLContentOpen -HeaderText 'The Basics' $rpt += Get-HTMLContentText -Heading "Scripts" -detail "There are a couple of scripts that are located in the module directory" $rpt += Get-HTMLContentClose $rpt += get-htmltabcontentclose '@ $CodeBlock =@' $SampleCode=@' $Tab = 'JavaScript' $rpt += get-htmltabcontentopen -TabName $Tab -tabheading ' ' $rpt += Get-HTMLContentOpen -HeaderText 'The Basics' $rpt += Get-HTMLContentText -Heading "Scripts" -detail "There are a couple of scripts that are located in the module directory" $rpt += Get-HTMLContentClose $rpt += get-htmltabcontentclose '@ $rpt += Get-HTMLContentText -Heading "PowerShell Function" -detail (get-htmlcodeblock -style powershell -code $SampleCode) '@ $FunctionBlock=@' Function Get-HTMLCodeBlock { [CmdletBinding()] Param ( [Parameter(Mandatory=$true)] [String] $Code, [Parameter(Mandatory=$false)] [String] $Style = 'PowerShell' ) $CodeBlock = @() switch ($Style) { 'PowerShell' { $CodeBlock += '<pre class="PowerShell">' } 'othercodestyleneedsACSSStyle' { $CodeBlock += '<pre class="PowerShell">' } default { $CodeBlock += '<pre>' } } $CodeBlock += $Code $CodeBlock += '</pre>' [string]$CodeBlock = $CodeBlock Write-Output $CodeBlock } '@ $Tab = 'HTML' $rpt += get-htmltabcontentopen -TabName $Tab -tabheading ' ' $rpt += Get-HTMLContentOpen -HeaderText 'Custom HTML' $rpt += Get-HTMLContentText -Heading "HTML" -detail "You can use any html tags and code and add it directy to the Report array" $rpt += Get-HTMLContentText -Heading "Tags in text" -detail "you can use things like < B R ><br> for example in a string for a break" $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentOpen -HeaderText 'Consume other HTML Fucntions' $rpt += Get-HTMLContentText -Heading "Convertto-advhtml" -detail " you can trying using this cmdlet URL01https://thesurlyadmin.com/2014/02/27/convertto-advhtml-new-advanced-function-for-html-reporting/URL02ConvertTo-AdvHTML'" $rpt += Get-HTMLContentText -Heading "Adding it to the array" -detail 'just keep adding it to $rpt += $newcode' $rpt += Get-HTMLContentClose $rpt += Get-HTMLContentOpen -HeaderText 'Creating Custom functions' $rpt += Get-HTMLContentText -Heading "Get-HTMLCodeBlock" -detail "To create this help file I just created get-htmlcodeblock so I could use the < PRE > HTML tag. <BR>I decided that I would pass the code block into the function and choose a style and wrap the code in the tags<BR>I had to add a CSS style to the CSS file to support this function" $rpt += Get-HTMLContentText -Heading "PowerShell Function" -detail (get-htmlcodeblock -style powershell -code $FunctionBlock) $rpt += Get-HTMLContentText -Heading "PowerShell Code" -detail (get-htmlcodeblock -style powershell -code $CodeBlock) $rpt += Get-HTMLContentText -Heading "Output" -Detail (get-htmlcodeblock -style powershell -code $SampleCode) $rpt += Get-HTMLContentClose $rpt += get-htmltabcontentclose #endregion #region Functions $FunctionList = @() $FunctionList += Get-Functions -path $ModulePath $Tab = 'Functions' $rpt += get-htmltabcontentopen -TabName $Tab -tabheading ' ' $rpt += Get-HTMLAnchor -AnchorName "Top" $rpt += Get-HtmlContentOpen -HeaderText "Available Functions " $rpt += ($FunctionList | % { (Get-HTMLAnchorLink -AnchorName $_.FunctionName -AnchorText $_.FunctionName ) + '<BR>'} ) $rpt += Get-HtmlContentclose $rpt += Get-HtmlContentOpen -HeaderText "Functions with Parameters" -BackgroundShade 2 foreach ($function in ( $FunctionList | sort FunctionName)){ $rpt += Get-HTMLAnchorlink -AnchorName Top -AnchorText 'Back To Function List' $Params = @(Get-Parameters -Cmdlet $function.FunctionName) $rpt += get-HTMLAnchor -Anchor $function.FunctionName if ($Params.count -gt 0) { $rpt += Get-HtmlContentOpen -HeaderText ($function.FunctionName) $FunctionHelp = Get-Help $function.FunctionName $rpt += Get-HTMLContentText -Heading "Name" -Detail ($FunctionHelp.Name) $rpt += Get-HTMLContentText -Heading "Synopsis" -Detail ($FunctionHelp.synopsis) $rpt += Get-HTMLContentText -Heading "Remarks" -Detail ($FunctionHelp.Remarks) $rpt += Get-HTMLContentText -Heading "Examples" -Detail ($FunctionHelp.Examples) $rpt += Get-HtmlContentOpen -HeaderText 'Functions Parameters' $rpt += Get-HtmlContentTable (Set-TableRowColor ($Params | select ParameterSet, Name ,Type ,IsMandatory ,Pipeline ) -Alternating ) -GroupBy ParameterSet -Fixed $rpt += Get-HtmlContentclose $rpt += Get-HtmlContentclose } } $rpt += Get-Htmlcontentclose $rpt += get-htmltabcontentclose $rpt += get-htmltabcontentclose #Endregion #Region End Report function $Helpfile = Save-HTMLReport -ReportContent $rpt -ReportPath $ModulePath -ReportName Help-ReportHTML Write-Output $Helpfile } else { $Helpfile = Join-Path $ModulePath Help-ReportHTML.html Invoke-Item $Helpfile } } #endregion |