{"id":10222,"date":"2015-11-12T09:00:53","date_gmt":"2015-11-12T17:00:53","guid":{"rendered":"https:\/\/www.sapien.com\/blog\/?p=10222"},"modified":"2015-11-10T09:19:05","modified_gmt":"2015-11-10T17:19:05","slug":"powershellget-gui-part-2","status":"publish","type":"post","link":"https:\/\/dev.sapien.com\/blog\/2015\/11\/12\/powershellget-gui-part-2\/","title":{"rendered":"PowerShellGet-GUI Part 2"},"content":{"rendered":"<p>Continuing on from where we left off in our last blog post entitled &#8220;<a href=\"https:\/\/wp.me\/p3tXTf-2E9\">PowerShellGet-GUI part <\/a>1&#8243;, let us examine some of the other features of the PowerShell Get GUI application.<\/p>\n<p>With our list successfully loaded with PowerShell Gallery modules, the user can take several actions:<\/p>\n<ol>\n<li>Select a module to inspect it&#8217;s properties<\/li>\n<li>Select a non-installed module to install it<\/li>\n<li>Select an installed module to uninstall it<\/li>\n<\/ol>\n<p><strong>Case 1<\/strong><\/p>\n<div id=\"attachment_10223\" style=\"width: 1283px\" class=\"wp-caption aligncenter\"><a href=\"https:\/\/www.sapien.com\/blog\/wp-content\/uploads\/2015\/11\/Screen-Shot-2015-11-03-at-1.54.27-PM.png\"><img loading=\"lazy\" decoding=\"async\" aria-describedby=\"caption-attachment-10223\" class=\"wp-image-10223 size-full\" src=\"https:\/\/www.sapien.com\/blog\/wp-content\/uploads\/2015\/11\/Screen-Shot-2015-11-03-at-1.54.27-PM.png\" alt=\"Screen Shot 2015-11-03 at 1.54.27 PM\" width=\"1273\" height=\"577\" srcset=\"https:\/\/dev.sapien.com\/blog\/wp-content\/uploads\/2015\/11\/Screen-Shot-2015-11-03-at-1.54.27-PM.png 1273w, https:\/\/dev.sapien.com\/blog\/wp-content\/uploads\/2015\/11\/Screen-Shot-2015-11-03-at-1.54.27-PM-300x136.png 300w, https:\/\/dev.sapien.com\/blog\/wp-content\/uploads\/2015\/11\/Screen-Shot-2015-11-03-at-1.54.27-PM-1024x464.png 1024w\" sizes=\"auto, (max-width: 1273px) 100vw, 1273px\" \/><\/a><p id=\"caption-attachment-10223\" class=\"wp-caption-text\">Figure 1<\/p><\/div>\n<p>When the user clicks on an item in the list, the listview_ItemSelectionChanged event fires and is handled by our $lvModules_ItemSelectionChanged event handler seen in Figure 1 above. If an item has been selected, we first save the contents of the .Tag property to a local variable, $module. If you remember back to the previous post, when we filled our list we stored the actual module in the .Tag property for later access. <a href=\"https:\/\/www.sapien.com\/blog\/2013\/05\/23\/spotlight-on-controls-the-versatile-tag-property\/\">See this article<\/a> for more detailed information about the TAG property.<\/p>\n<p>We then set a &#8220;wait&#8221; cursor, clear the details pane (top right of UI), then call\u00a0Get-Member on the module and store the string output to $output. We assign that string output to the .text property of the details pane and return our cursor to the default arrow. We also set several menu options to enabled to create a good UI.<\/p>\n<p><strong>Case 2<\/strong><\/p>\n<p>A module from the list can be installed by selecting the File-&gt;Install Selected Module menu option or by right-clicking the module and selecting Install.<\/p>\n<div id=\"attachment_10228\" style=\"width: 1773px\" class=\"wp-caption aligncenter\"><a href=\"https:\/\/www.sapien.com\/blog\/wp-content\/uploads\/2015\/11\/Screen-Shot-2015-11-03-at-2.16.04-PM.png\"><img loading=\"lazy\" decoding=\"async\" aria-describedby=\"caption-attachment-10228\" class=\"wp-image-10228 size-full\" src=\"https:\/\/www.sapien.com\/blog\/wp-content\/uploads\/2015\/11\/Screen-Shot-2015-11-03-at-2.16.04-PM.png\" alt=\"Screen Shot 2015-11-03 at 2.16.04 PM\" width=\"1763\" height=\"391\" srcset=\"https:\/\/dev.sapien.com\/blog\/wp-content\/uploads\/2015\/11\/Screen-Shot-2015-11-03-at-2.16.04-PM.png 1763w, https:\/\/dev.sapien.com\/blog\/wp-content\/uploads\/2015\/11\/Screen-Shot-2015-11-03-at-2.16.04-PM-300x67.png 300w, https:\/\/dev.sapien.com\/blog\/wp-content\/uploads\/2015\/11\/Screen-Shot-2015-11-03-at-2.16.04-PM-1024x227.png 1024w\" sizes=\"auto, (max-width: 1763px) 100vw, 1763px\" \/><\/a><p id=\"caption-attachment-10228\" class=\"wp-caption-text\">Figure 2<\/p><\/div>\n<p>Figure 2 shows the code that is executed when that menu option is selected. First we get the module name and present a verification dialog to the user. If the user clicks OK in the dialog, then we set a wait cursor. Next we call Install-Module with the module name, PSGallery as the repository, and scope it to the current user. The output of these commands is converted to a string and output to the OutPut pane at the bottom of the application. We update our list view which will put a checkmark on the module. Finally, we set our cursor back to the default arrow.<\/p>\n<p><strong>Case 3<\/strong><\/p>\n<p>An installed module can be uninstalled by electing the File-&gt;Uninstall Selected Module menu option or right-clicking on the module and selecting Uninstall.<\/p>\n<p><a href=\"https:\/\/www.sapien.com\/blog\/wp-content\/uploads\/2015\/11\/Screen-Shot-2015-11-03-at-2.23.51-PM.png\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-10230\" src=\"https:\/\/www.sapien.com\/blog\/wp-content\/uploads\/2015\/11\/Screen-Shot-2015-11-03-at-2.23.51-PM.png\" alt=\"Screen Shot 2015-11-03 at 2.23.51 PM\" width=\"928\" height=\"177\" srcset=\"https:\/\/dev.sapien.com\/blog\/wp-content\/uploads\/2015\/11\/Screen-Shot-2015-11-03-at-2.23.51-PM.png 928w, https:\/\/dev.sapien.com\/blog\/wp-content\/uploads\/2015\/11\/Screen-Shot-2015-11-03-at-2.23.51-PM-300x57.png 300w\" sizes=\"auto, (max-width: 928px) 100vw, 928px\" \/><\/a><\/p>\n<p>This is probably our simplest event handler. The code in figure 3 uses Try&#8230;Catch to handle any errors. In the Try section, we call Remove-Module using the text found in the first element of the list views .selectedItems array. Since there is only 1 selected item (set by an object property) we know that it will be the &#8220;0&#8221; item and the text for that selection is the module name. If this fails, then we show the error in the output pane.<\/p>\n<p><strong>Finally<\/strong><\/p>\n<p>There is a lot more going on in this application than what this post and its predecessor describe. Setting object properties, enabling and disabling menu options, etc. all work together to make a great user interface. There is plenty more that can be done with this app and we invite the community to experiment and make suggestions.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Continuing on from where we left off in our last blog post entitled &#8220;PowerShellGet-GUI part 1&#8243;, let us examine some of the other features of the PowerShell Get GUI application. With our list successfully loaded with PowerShell Gallery modules, the user can take several actions: Select a module to inspect it&#8217;s properties Select a non-installed [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[22,2,946,723,25],"tags":[313,41,28,1016,1039,312],"class_list":["post-10222","post","type-post","status-publish","format-standard","hentry","category-events","category-general","category-guiprogramming","category-user-interface-design-for-administrators","category-windows-powershell","tag-forms","tag-gui","tag-powershell","tag-powershell-studio","tag-ui-design","tag-winforms"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Continuing on from where we left off in our last blog post entitled &quot;PowerShellGet-GUI part 1&quot;, let us examine some of the other features of the PowerShell Get GUI application. With our list successfully loaded with PowerShell Gallery modules, the user can take several actions: Select a module to inspect it&#039;s properties Select a non-installed\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Ferdinand Rios\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/dev.sapien.com\/blog\/2015\/11\/12\/powershellget-gui-part-2\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"DEV SAPIEN Blog - Tools for IT Success\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"PowerShellGet-GUI Part 2 - DEV SAPIEN Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Continuing on from where we left off in our last blog post entitled &quot;PowerShellGet-GUI part 1&quot;, let us examine some of the other features of the PowerShell Get GUI application. With our list successfully loaded with PowerShell Gallery modules, the user can take several actions: Select a module to inspect it&#039;s properties Select a non-installed\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/dev.sapien.com\/blog\/2015\/11\/12\/powershellget-gui-part-2\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2015-11-12T17:00:53+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2015-11-10T17:19:05+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"PowerShellGet-GUI Part 2 - DEV SAPIEN Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Continuing on from where we left off in our last blog post entitled &quot;PowerShellGet-GUI part 1&quot;, let us examine some of the other features of the PowerShell Get GUI application. With our list successfully loaded with PowerShell Gallery modules, the user can take several actions: Select a module to inspect it&#039;s properties Select a non-installed\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/2015\\\/11\\\/12\\\/powershellget-gui-part-2\\\/#blogposting\",\"name\":\"PowerShellGet-GUI Part 2 - DEV SAPIEN Blog\",\"headline\":\"PowerShellGet-GUI Part 2\",\"author\":{\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/author\\\/ferdinand-rios\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.sapien.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/11\\\/Screen-Shot-2015-11-03-at-1.54.27-PM.png\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/2015\\\/11\\\/12\\\/powershellget-gui-part-2\\\/#articleImage\"},\"datePublished\":\"2015-11-12T09:00:53-08:00\",\"dateModified\":\"2015-11-10T09:19:05-08:00\",\"inLanguage\":\"en-US\",\"commentCount\":5,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/2015\\\/11\\\/12\\\/powershellget-gui-part-2\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/2015\\\/11\\\/12\\\/powershellget-gui-part-2\\\/#webpage\"},\"articleSection\":\"Events, General, GUIProgramming, User interface design for administrators, Windows PowerShell, forms, gui, powershell, PowerShell Studio, UI Design, Winforms\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/2015\\\/11\\\/12\\\/powershellget-gui-part-2\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/dev.sapien.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/topics\\\/general\\\/#listItem\",\"name\":\"General\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/topics\\\/general\\\/#listItem\",\"position\":2,\"name\":\"General\",\"item\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/topics\\\/general\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/2015\\\/11\\\/12\\\/powershellget-gui-part-2\\\/#listItem\",\"name\":\"PowerShellGet-GUI Part 2\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/2015\\\/11\\\/12\\\/powershellget-gui-part-2\\\/#listItem\",\"position\":3,\"name\":\"PowerShellGet-GUI Part 2\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/topics\\\/general\\\/#listItem\",\"name\":\"General\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/#organization\",\"name\":\"DEV SAPIEN Blog\",\"description\":\"Tools for IT Success\",\"url\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/author\\\/ferdinand-rios\\\/#author\",\"url\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/author\\\/ferdinand-rios\\\/\",\"name\":\"Ferdinand Rios\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/2015\\\/11\\\/12\\\/powershellget-gui-part-2\\\/#webpage\",\"url\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/2015\\\/11\\\/12\\\/powershellget-gui-part-2\\\/\",\"name\":\"PowerShellGet-GUI Part 2 - DEV SAPIEN Blog\",\"description\":\"Continuing on from where we left off in our last blog post entitled \\\"PowerShellGet-GUI part 1\\\", let us examine some of the other features of the PowerShell Get GUI application. With our list successfully loaded with PowerShell Gallery modules, the user can take several actions: Select a module to inspect it's properties Select a non-installed\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/2015\\\/11\\\/12\\\/powershellget-gui-part-2\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/author\\\/ferdinand-rios\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/author\\\/ferdinand-rios\\\/#author\"},\"datePublished\":\"2015-11-12T09:00:53-08:00\",\"dateModified\":\"2015-11-10T09:19:05-08:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/\",\"name\":\"DEV SAPIEN Blog\",\"description\":\"Tools for IT Success\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"PowerShellGet-GUI Part 2 - DEV SAPIEN Blog","description":"Continuing on from where we left off in our last blog post entitled \"PowerShellGet-GUI part 1\", let us examine some of the other features of the PowerShell Get GUI application. With our list successfully loaded with PowerShell Gallery modules, the user can take several actions: Select a module to inspect it's properties Select a non-installed","canonical_url":"https:\/\/dev.sapien.com\/blog\/2015\/11\/12\/powershellget-gui-part-2\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/dev.sapien.com\/blog\/2015\/11\/12\/powershellget-gui-part-2\/#blogposting","name":"PowerShellGet-GUI Part 2 - DEV SAPIEN Blog","headline":"PowerShellGet-GUI Part 2","author":{"@id":"https:\/\/dev.sapien.com\/blog\/author\/ferdinand-rios\/#author"},"publisher":{"@id":"https:\/\/dev.sapien.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.sapien.com\/blog\/wp-content\/uploads\/2015\/11\/Screen-Shot-2015-11-03-at-1.54.27-PM.png","@id":"https:\/\/dev.sapien.com\/blog\/2015\/11\/12\/powershellget-gui-part-2\/#articleImage"},"datePublished":"2015-11-12T09:00:53-08:00","dateModified":"2015-11-10T09:19:05-08:00","inLanguage":"en-US","commentCount":5,"mainEntityOfPage":{"@id":"https:\/\/dev.sapien.com\/blog\/2015\/11\/12\/powershellget-gui-part-2\/#webpage"},"isPartOf":{"@id":"https:\/\/dev.sapien.com\/blog\/2015\/11\/12\/powershellget-gui-part-2\/#webpage"},"articleSection":"Events, General, GUIProgramming, User interface design for administrators, Windows PowerShell, forms, gui, powershell, PowerShell Studio, UI Design, Winforms"},{"@type":"BreadcrumbList","@id":"https:\/\/dev.sapien.com\/blog\/2015\/11\/12\/powershellget-gui-part-2\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/dev.sapien.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/dev.sapien.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/dev.sapien.com\/blog\/topics\/general\/#listItem","name":"General"}},{"@type":"ListItem","@id":"https:\/\/dev.sapien.com\/blog\/topics\/general\/#listItem","position":2,"name":"General","item":"https:\/\/dev.sapien.com\/blog\/topics\/general\/","nextItem":{"@type":"ListItem","@id":"https:\/\/dev.sapien.com\/blog\/2015\/11\/12\/powershellget-gui-part-2\/#listItem","name":"PowerShellGet-GUI Part 2"},"previousItem":{"@type":"ListItem","@id":"https:\/\/dev.sapien.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/dev.sapien.com\/blog\/2015\/11\/12\/powershellget-gui-part-2\/#listItem","position":3,"name":"PowerShellGet-GUI Part 2","previousItem":{"@type":"ListItem","@id":"https:\/\/dev.sapien.com\/blog\/topics\/general\/#listItem","name":"General"}}]},{"@type":"Organization","@id":"https:\/\/dev.sapien.com\/blog\/#organization","name":"DEV SAPIEN Blog","description":"Tools for IT Success","url":"https:\/\/dev.sapien.com\/blog\/"},{"@type":"Person","@id":"https:\/\/dev.sapien.com\/blog\/author\/ferdinand-rios\/#author","url":"https:\/\/dev.sapien.com\/blog\/author\/ferdinand-rios\/","name":"Ferdinand Rios"},{"@type":"WebPage","@id":"https:\/\/dev.sapien.com\/blog\/2015\/11\/12\/powershellget-gui-part-2\/#webpage","url":"https:\/\/dev.sapien.com\/blog\/2015\/11\/12\/powershellget-gui-part-2\/","name":"PowerShellGet-GUI Part 2 - DEV SAPIEN Blog","description":"Continuing on from where we left off in our last blog post entitled \"PowerShellGet-GUI part 1\", let us examine some of the other features of the PowerShell Get GUI application. With our list successfully loaded with PowerShell Gallery modules, the user can take several actions: Select a module to inspect it's properties Select a non-installed","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/dev.sapien.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/dev.sapien.com\/blog\/2015\/11\/12\/powershellget-gui-part-2\/#breadcrumblist"},"author":{"@id":"https:\/\/dev.sapien.com\/blog\/author\/ferdinand-rios\/#author"},"creator":{"@id":"https:\/\/dev.sapien.com\/blog\/author\/ferdinand-rios\/#author"},"datePublished":"2015-11-12T09:00:53-08:00","dateModified":"2015-11-10T09:19:05-08:00"},{"@type":"WebSite","@id":"https:\/\/dev.sapien.com\/blog\/#website","url":"https:\/\/dev.sapien.com\/blog\/","name":"DEV SAPIEN Blog","description":"Tools for IT Success","inLanguage":"en-US","publisher":{"@id":"https:\/\/dev.sapien.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"DEV SAPIEN Blog - Tools for IT Success","og:type":"article","og:title":"PowerShellGet-GUI Part 2 - DEV SAPIEN Blog","og:description":"Continuing on from where we left off in our last blog post entitled &quot;PowerShellGet-GUI part 1&quot;, let us examine some of the other features of the PowerShell Get GUI application. With our list successfully loaded with PowerShell Gallery modules, the user can take several actions: Select a module to inspect it's properties Select a non-installed","og:url":"https:\/\/dev.sapien.com\/blog\/2015\/11\/12\/powershellget-gui-part-2\/","article:published_time":"2015-11-12T17:00:53+00:00","article:modified_time":"2015-11-10T17:19:05+00:00","twitter:card":"summary_large_image","twitter:title":"PowerShellGet-GUI Part 2 - DEV SAPIEN Blog","twitter:description":"Continuing on from where we left off in our last blog post entitled &quot;PowerShellGet-GUI part 1&quot;, let us examine some of the other features of the PowerShell Get GUI application. With our list successfully loaded with PowerShell Gallery modules, the user can take several actions: Select a module to inspect it's properties Select a non-installed"},"aioseo_meta_data":{"post_id":"10222","title":null,"description":null,"keywords":null,"keyphrases":null,"focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_custom_url":null,"og_image_custom_fields":null,"og_image_url":null,"og_image_width":null,"og_image_height":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_image_url":null,"twitter_title":null,"twitter_description":null,"schema_type":"default","schema_type_options":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null,"created":"2026-08-28 14:49:28","updated":"2026-08-28 14:49:28"},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/dev.sapien.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/dev.sapien.com\/blog\/topics\/general\/\" title=\"General\">General<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tPowerShellGet-GUI Part 2\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/dev.sapien.com\/blog"},{"label":"General","link":"https:\/\/dev.sapien.com\/blog\/topics\/general\/"},{"label":"PowerShellGet-GUI Part 2","link":"https:\/\/dev.sapien.com\/blog\/2015\/11\/12\/powershellget-gui-part-2\/"}],"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/dev.sapien.com\/blog\/wp-json\/wp\/v2\/posts\/10222","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dev.sapien.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dev.sapien.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dev.sapien.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/dev.sapien.com\/blog\/wp-json\/wp\/v2\/comments?post=10222"}],"version-history":[{"count":5,"href":"https:\/\/dev.sapien.com\/blog\/wp-json\/wp\/v2\/posts\/10222\/revisions"}],"predecessor-version":[{"id":10245,"href":"https:\/\/dev.sapien.com\/blog\/wp-json\/wp\/v2\/posts\/10222\/revisions\/10245"}],"wp:attachment":[{"href":"https:\/\/dev.sapien.com\/blog\/wp-json\/wp\/v2\/media?parent=10222"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dev.sapien.com\/blog\/wp-json\/wp\/v2\/categories?post=10222"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dev.sapien.com\/blog\/wp-json\/wp\/v2\/tags?post=10222"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}