{"id":10798,"date":"2024-09-23T16:22:39","date_gmt":"2024-09-23T14:22:39","guid":{"rendered":"https:\/\/lazyadmin.nl\/?p=10798"},"modified":"2024-09-23T16:22:43","modified_gmt":"2024-09-23T14:22:43","slug":"tips-module","status":"publish","type":"post","link":"https:\/\/lazyadmin.nl\/powershell\/tips-module\/","title":{"rendered":"PowerShell tiPS Module"},"content":{"rendered":"\n<p>With PowerShell, you can truly learn something new every day if you want. There are tons of great modules, tips, and tricks that we can use. But how do you find them? This is where the new module, PowerShell tIPS comes in.<\/p>\n\n\n\n<p>tiPS will show a PowerShell-related tip every time you open PowerShell, just like some software programs or even games do on their loading screens. This provides a really low-effort way to learn new things about PowerShell.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"795\" height=\"336\" src=\"https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/09\/image-56.png\" alt=\"PowerShell tiPS module\" class=\"wp-image-10800\" srcset=\"https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/09\/image-56.png 795w, https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/09\/image-56-300x127.png 300w, https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/09\/image-56-768x325.png 768w, https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/09\/image-56-400x169.png 400w, https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/09\/image-56-50x21.png 50w\" sizes=\"(max-width: 795px) 100vw, 795px\" \/><\/figure>\n\n\n\n<p>The module is community-driven, meaning that everybody can contribute by sharing helpful and valuable tips.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Instal and Configure tiPS<\/h2>\n\n\n\n<p>To install the module, we can simply use the Install-Module cmdlet to install it from the PowerShell Gallery. I recommend installing it in the current user scope so that the module is only available in your user account.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"powershell\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\"># Install the module\nInstall-Module -Name tiPS -Scope CurrentUser<\/pre>\n\n\n\n<p>The next step is to add the module to your PowerShell profile. You can do this manually, but it is even easier to use the cmdlet below to add it automatically for you:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"raw\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\"># Add the module to your PowerShell profile\nAdd-TiPSImportToPowerShellProfile<\/pre>\n\n\n<script async src=\"https:\/\/alatus.eocampaign1.com\/form\/ae21fac8-606b-11ef-9aaf-f7237224cd89.js\" data-form=\"ae21fac8-606b-11ef-9aaf-f7237224cd89\"><\/script>\n\n\n<p>At this point, the module is installed and automatically loaded when you open PowerShell. But it won&#8217;t show tips yet. To do this, we will need to configure when we want to see the actual tips. We have a few options for this:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>EverySessions<\/li>\n\n\n\n<li>Daily<\/li>\n\n\n\n<li>Weekly<\/li>\n\n\n\n<li>Never<\/li>\n<\/ul>\n\n\n\n<p>To start, I recommend using Daily. If you have seen most of the tips, you can always switch back to weekly. You can set the configuration with:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"powershell\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">Set-TiPSConfiguration -AutomaticallyWritePowerShellTip Daily<\/pre>\n\n\n\n<p>The last step is to configure how often you want to update the module. Regularly updating the module is needed to get new tips. You can see it to update Daily, Weekly, BiWeekly, monthly, or never.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"powershell\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">Set-TiPSConfiguration -AutomaticallyUpdateModule Weekly<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Using the Module<\/h2>\n\n\n\n<p>The PowerShell tips will automatically show up after you open a PowerShell window. But you can of course also request a tip when you want. Simply use the cmdlet <code>Write-PowerShellTip<\/code> or it&#8217;s alias <code>tips<\/code> to view a tip.<\/p>\n\n\n\n<p>You can also use the cmdlet <code>Get-PowerShellTip<\/code>, this will return the tip as an object. This way you can pipe the tip into another cmdlet if you want.<\/p>\n\n\n\n<p>The newest tips are shown first by default. But we can also change this. We can set it to view the oldest tips first or display them in a random order:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"powershell\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">Set-TiPSConfiguration -TipRetrievalOrder<\/pre>\n\n\n\n<p>To view your current configuration, you can use the cmdlet <code>Get-TiPSConfiguration<\/code>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Wrapping Up<\/h2>\n\n\n\n<p>The PowerShell tiPS module is community-driven, so if you have a great tip or trick to share, then make sure that you check out the <a href=\"https:\/\/github.com\/deadlydog\/PowerShell.tiPS?tab=readme-ov-file#-contribute-a-tip\">contribute section here<\/a> at the Github repository.<\/p>\n\n\n\n<p>I personally find the tiPS module a great initiative, it&#8217;s an easy way to learn new PowerShell tips. Make sure that you also check out the <a href=\"https:\/\/lazyadmin.nl\/powershell\/top-5-powershell-modules\/\">5 Must have PowerShell modules<\/a> and of course the <a href=\"https:\/\/lazyadmin.nl\/powershell\/powershell-cheat-sheet\/\">free PowerShell Cheat Sheet<\/a>!<\/p>\n<script async src=\"https:\/\/alatus.eocampaign1.com\/form\/d0ce5de8-9b48-11ee-8cf4-eb425eea7369.js\" data-form=\"d0ce5de8-9b48-11ee-8cf4-eb425eea7369\"><\/script>","protected":false},"excerpt":{"rendered":"<p>With PowerShell, you can truly learn something new every day if you want. There are tons of great modules, tips, and tricks that we can use. But how do you find them? This is where the new module, PowerShell tIPS &#8230; <a title=\"PowerShell tiPS Module\" class=\"read-more\" href=\"https:\/\/lazyadmin.nl\/powershell\/tips-module\/\">Read more<span class=\"screen-reader-text\">PowerShell tiPS Module<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":10801,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"_uag_custom_page_level_css":"","_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[69],"tags":[22],"class_list":["post-10798","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-powershell","tag-powershell"],"wppr_data":{"cwp_meta_box_check":"No"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>PowerShell tiPS Module &#8212; LazyAdmin<\/title>\n<meta name=\"description\" content=\"Start your day with a PowerShell Tip or Trick. Learn someting new everyday with the tiPS module.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/lazyadmin.nl\/powershell\/tips-module\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PowerShell tiPS Module &#8212; LazyAdmin\" \/>\n<meta property=\"og:description\" content=\"Start your day with a PowerShell Tip or Trick. Learn someting new everyday with the tiPS module.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/lazyadmin.nl\/powershell\/tips-module\/\" \/>\n<meta property=\"og:site_name\" content=\"LazyAdmin\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/lazyadminnl\/\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/lazyadminnl\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-09-23T14:22:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-23T14:22:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/09\/PowerShell-Tips-Module.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"800\" \/>\n\t<meta property=\"og:image:height\" content=\"450\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Rudy Mens\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/lazyadmin\" \/>\n<meta name=\"twitter:site\" content=\"@lazyadmin\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Rudy Mens\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/lazyadmin.nl\/powershell\/tips-module\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/lazyadmin.nl\/powershell\/tips-module\/\"},\"author\":{\"name\":\"Rudy Mens\",\"@id\":\"https:\/\/lazyadmin.nl\/#\/schema\/person\/cbfba61543b21fbba63cfbf62f08d952\"},\"headline\":\"PowerShell tiPS Module\",\"datePublished\":\"2024-09-23T14:22:39+00:00\",\"dateModified\":\"2024-09-23T14:22:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/lazyadmin.nl\/powershell\/tips-module\/\"},\"wordCount\":463,\"commentCount\":3,\"publisher\":{\"@id\":\"https:\/\/lazyadmin.nl\/#\/schema\/person\/cbfba61543b21fbba63cfbf62f08d952\"},\"image\":{\"@id\":\"https:\/\/lazyadmin.nl\/powershell\/tips-module\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/09\/PowerShell-Tips-Module.jpg\",\"keywords\":[\"Powershell\"],\"articleSection\":[\"PowerShell\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/lazyadmin.nl\/powershell\/tips-module\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/lazyadmin.nl\/powershell\/tips-module\/\",\"url\":\"https:\/\/lazyadmin.nl\/powershell\/tips-module\/\",\"name\":\"PowerShell tiPS Module &#8212; LazyAdmin\",\"isPartOf\":{\"@id\":\"https:\/\/lazyadmin.nl\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/lazyadmin.nl\/powershell\/tips-module\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/lazyadmin.nl\/powershell\/tips-module\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/09\/PowerShell-Tips-Module.jpg\",\"datePublished\":\"2024-09-23T14:22:39+00:00\",\"dateModified\":\"2024-09-23T14:22:43+00:00\",\"description\":\"Start your day with a PowerShell Tip or Trick. Learn someting new everyday with the tiPS module.\",\"breadcrumb\":{\"@id\":\"https:\/\/lazyadmin.nl\/powershell\/tips-module\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/lazyadmin.nl\/powershell\/tips-module\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/lazyadmin.nl\/powershell\/tips-module\/#primaryimage\",\"url\":\"https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/09\/PowerShell-Tips-Module.jpg\",\"contentUrl\":\"https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/09\/PowerShell-Tips-Module.jpg\",\"width\":800,\"height\":450},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/lazyadmin.nl\/powershell\/tips-module\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/lazyadmin.nl\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PowerShell tiPS Module\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/lazyadmin.nl\/#website\",\"url\":\"https:\/\/lazyadmin.nl\/\",\"name\":\"LazyAdmin\",\"description\":\"Tips and howto&#039;s about Office 365, PowerShell, Home network and smart devices\",\"publisher\":{\"@id\":\"https:\/\/lazyadmin.nl\/#\/schema\/person\/cbfba61543b21fbba63cfbf62f08d952\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/lazyadmin.nl\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/lazyadmin.nl\/#\/schema\/person\/cbfba61543b21fbba63cfbf62f08d952\",\"name\":\"Rudy Mens\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/lazyadmin.nl\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/06\/Profile-photo-2024-Ruud.jpg\",\"contentUrl\":\"https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/06\/Profile-photo-2024-Ruud.jpg\",\"width\":500,\"height\":500,\"caption\":\"Rudy Mens\"},\"logo\":{\"@id\":\"https:\/\/lazyadmin.nl\/#\/schema\/person\/image\/\"},\"description\":\"Ruud worked for more than 15 years as a SysAdmin in the Netherlands and is now working as an independent consultant. In his spare time, he loves to thinker with Smart Devices.\",\"sameAs\":[\"https:\/\/lazyadmin.nl\",\"https:\/\/www.facebook.com\/lazyadminnl\/\",\"http:\/\/nl.linkedin.com\/in\/rudymens\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/lazyadmin\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"PowerShell tiPS Module &#8212; LazyAdmin","description":"Start your day with a PowerShell Tip or Trick. Learn someting new everyday with the tiPS module.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/lazyadmin.nl\/powershell\/tips-module\/","og_locale":"en_US","og_type":"article","og_title":"PowerShell tiPS Module &#8212; LazyAdmin","og_description":"Start your day with a PowerShell Tip or Trick. Learn someting new everyday with the tiPS module.","og_url":"https:\/\/lazyadmin.nl\/powershell\/tips-module\/","og_site_name":"LazyAdmin","article_publisher":"https:\/\/www.facebook.com\/lazyadminnl\/","article_author":"https:\/\/www.facebook.com\/lazyadminnl\/","article_published_time":"2024-09-23T14:22:39+00:00","article_modified_time":"2024-09-23T14:22:43+00:00","og_image":[{"width":800,"height":450,"url":"https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/09\/PowerShell-Tips-Module.jpg","type":"image\/jpeg"}],"author":"Rudy Mens","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/lazyadmin","twitter_site":"@lazyadmin","twitter_misc":{"Written by":"Rudy Mens","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/lazyadmin.nl\/powershell\/tips-module\/#article","isPartOf":{"@id":"https:\/\/lazyadmin.nl\/powershell\/tips-module\/"},"author":{"name":"Rudy Mens","@id":"https:\/\/lazyadmin.nl\/#\/schema\/person\/cbfba61543b21fbba63cfbf62f08d952"},"headline":"PowerShell tiPS Module","datePublished":"2024-09-23T14:22:39+00:00","dateModified":"2024-09-23T14:22:43+00:00","mainEntityOfPage":{"@id":"https:\/\/lazyadmin.nl\/powershell\/tips-module\/"},"wordCount":463,"commentCount":3,"publisher":{"@id":"https:\/\/lazyadmin.nl\/#\/schema\/person\/cbfba61543b21fbba63cfbf62f08d952"},"image":{"@id":"https:\/\/lazyadmin.nl\/powershell\/tips-module\/#primaryimage"},"thumbnailUrl":"https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/09\/PowerShell-Tips-Module.jpg","keywords":["Powershell"],"articleSection":["PowerShell"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/lazyadmin.nl\/powershell\/tips-module\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/lazyadmin.nl\/powershell\/tips-module\/","url":"https:\/\/lazyadmin.nl\/powershell\/tips-module\/","name":"PowerShell tiPS Module &#8212; LazyAdmin","isPartOf":{"@id":"https:\/\/lazyadmin.nl\/#website"},"primaryImageOfPage":{"@id":"https:\/\/lazyadmin.nl\/powershell\/tips-module\/#primaryimage"},"image":{"@id":"https:\/\/lazyadmin.nl\/powershell\/tips-module\/#primaryimage"},"thumbnailUrl":"https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/09\/PowerShell-Tips-Module.jpg","datePublished":"2024-09-23T14:22:39+00:00","dateModified":"2024-09-23T14:22:43+00:00","description":"Start your day with a PowerShell Tip or Trick. Learn someting new everyday with the tiPS module.","breadcrumb":{"@id":"https:\/\/lazyadmin.nl\/powershell\/tips-module\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/lazyadmin.nl\/powershell\/tips-module\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/lazyadmin.nl\/powershell\/tips-module\/#primaryimage","url":"https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/09\/PowerShell-Tips-Module.jpg","contentUrl":"https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/09\/PowerShell-Tips-Module.jpg","width":800,"height":450},{"@type":"BreadcrumbList","@id":"https:\/\/lazyadmin.nl\/powershell\/tips-module\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/lazyadmin.nl\/"},{"@type":"ListItem","position":2,"name":"PowerShell tiPS Module"}]},{"@type":"WebSite","@id":"https:\/\/lazyadmin.nl\/#website","url":"https:\/\/lazyadmin.nl\/","name":"LazyAdmin","description":"Tips and howto&#039;s about Office 365, PowerShell, Home network and smart devices","publisher":{"@id":"https:\/\/lazyadmin.nl\/#\/schema\/person\/cbfba61543b21fbba63cfbf62f08d952"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/lazyadmin.nl\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/lazyadmin.nl\/#\/schema\/person\/cbfba61543b21fbba63cfbf62f08d952","name":"Rudy Mens","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/lazyadmin.nl\/#\/schema\/person\/image\/","url":"https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/06\/Profile-photo-2024-Ruud.jpg","contentUrl":"https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/06\/Profile-photo-2024-Ruud.jpg","width":500,"height":500,"caption":"Rudy Mens"},"logo":{"@id":"https:\/\/lazyadmin.nl\/#\/schema\/person\/image\/"},"description":"Ruud worked for more than 15 years as a SysAdmin in the Netherlands and is now working as an independent consultant. In his spare time, he loves to thinker with Smart Devices.","sameAs":["https:\/\/lazyadmin.nl","https:\/\/www.facebook.com\/lazyadminnl\/","http:\/\/nl.linkedin.com\/in\/rudymens\/","https:\/\/x.com\/https:\/\/twitter.com\/lazyadmin"]}]}},"uagb_featured_image_src":{"full":["https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/09\/PowerShell-Tips-Module.jpg",800,450,false],"thumbnail":["https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/09\/PowerShell-Tips-Module-150x150.jpg",150,150,true],"medium":["https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/09\/PowerShell-Tips-Module-300x169.jpg",300,169,true],"medium_large":["https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/09\/PowerShell-Tips-Module-768x432.jpg",768,432,true],"large":["https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/09\/PowerShell-Tips-Module.jpg",800,450,false],"1536x1536":["https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/09\/PowerShell-Tips-Module.jpg",800,450,false],"2048x2048":["https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/09\/PowerShell-Tips-Module.jpg",800,450,false],"post-thumb":["https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/09\/PowerShell-Tips-Module.jpg",800,450,false],"post-thumb-half":["https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/09\/PowerShell-Tips-Module-400x225.jpg",400,225,true],"wppr-widget":["https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/09\/PowerShell-Tips-Module-50x28.jpg",50,28,true],"gform-image-choice-sm":["https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/09\/PowerShell-Tips-Module.jpg",300,169,false],"gform-image-choice-md":["https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/09\/PowerShell-Tips-Module.jpg",400,225,false],"gform-image-choice-lg":["https:\/\/lazyadmin.nl\/wp-content\/uploads\/2024\/09\/PowerShell-Tips-Module.jpg",600,338,false]},"uagb_author_info":{"display_name":"Rudy Mens","author_link":"https:\/\/lazyadmin.nl\/author\/lajcud8123b\/"},"uagb_comment_info":3,"uagb_excerpt":"With PowerShell, you can truly learn something new every day if you want. There are tons of great modules, tips, and tricks that we can use. But how do you find them? This is where the new module, PowerShell tIPS ... Read morePowerShell tiPS Module","_links":{"self":[{"href":"https:\/\/lazyadmin.nl\/wp-json\/wp\/v2\/posts\/10798"}],"collection":[{"href":"https:\/\/lazyadmin.nl\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/lazyadmin.nl\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/lazyadmin.nl\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/lazyadmin.nl\/wp-json\/wp\/v2\/comments?post=10798"}],"version-history":[{"count":0,"href":"https:\/\/lazyadmin.nl\/wp-json\/wp\/v2\/posts\/10798\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/lazyadmin.nl\/wp-json\/wp\/v2\/media\/10801"}],"wp:attachment":[{"href":"https:\/\/lazyadmin.nl\/wp-json\/wp\/v2\/media?parent=10798"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/lazyadmin.nl\/wp-json\/wp\/v2\/categories?post=10798"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/lazyadmin.nl\/wp-json\/wp\/v2\/tags?post=10798"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}