{"id":162,"date":"2017-03-27T19:02:41","date_gmt":"2017-03-27T19:02:41","guid":{"rendered":"https:\/\/woodslife.co.uk\/?p=162"},"modified":"2017-03-27T21:07:15","modified_gmt":"2017-03-27T21:07:15","slug":"powershell-script-setting-password","status":"publish","type":"post","link":"https:\/\/woodslife.co.uk\/?p=162","title":{"rendered":"Setting a password with powershell script, and emailing it to a recipient."},"content":{"rendered":"<p>This is a quick and dirty powershell script to generate a random complex password, and set the password for a specific user and email it to someone.<\/p>\n<p>Using this powershell script and task scheduler, it is possible to schedule a password change and then email that newly generated password to a specific user. The password generated is a complex password. The biggest disadvantage of this is that the password is emailed in an unencrypted form.<\/p>\n<h4><\/h4>\n<h4>Pre-Requisites:<\/h4>\n<p>The only pre-requisite is that you have an SMTP available to you. (<a href=\"https:\/\/www.google.co.uk\/webhp?sourceid=chrome-instant&amp;ion=1&amp;espv=2&amp;ie=UTF-8#q=open+smtp+server&amp;*\">or you could just google for one<\/a>)<\/p>\n<p>&nbsp;<\/p>\n<h4>Making Changes:<\/h4>\n<p>The changes that need to be made are:<\/p>\n<p>$user = &#8220;username&#8221; needs to be set to the username of the user you want to change (we change the supply user password here)<\/p>\n<p>From = &#8220;sendingserver@youraddress&#8221; &#8211; Adding the sending name (i.e. who it is from) noreply@mydomain.com<\/p>\n<p>To = &#8220;recipiant@youraddress&#8221; &#8211; This was set to my own email address, more addresses can be added in this format &#8220;address1@domain&#8221;,&#8221;address2@domain&#8221; with no spaces.<\/p>\n<p>Smtpserver = &#8220;your.smtp.server&#8221; &#8211; This is the last change that you need to make. Set this to your SMTP relay server.<\/p>\n<p>&nbsp;<\/p>\n<p>When each of these changes have been made that should be it. as long as the powershell script is run as an administrator then it will generate, set and email the password.<\/p>\n<h4>Powershell Script:<\/h4>\n<pre class=\"lang:ps decode:true\"># Reset Password and notify by e-mail.\r\n\r\n#Import AD Module \r\nImport-Module ActiveDirectory\r\n\r\n#Set User to be edited\r\n$User = \"username\"\r\n\r\n\r\n\r\n#Needed to generate random password \r\nadd-type -AssemblyName \"System.Web\" \r\n\r\n#Generates a 9 character password with a minimum of 2 special characters\r\n#see https:\/\/msdn.microsoft.com\/en-us\/library\/system.web.security.membership.generatepassword(v=vs.110).aspx for details.\r\n$Password=[System.Web.Security.Membership]::GeneratePassword(9,2)\r\n\r\n#Set Account password\r\nSet-ADAccountPassword $User -Reset -NewPassword (ConvertTo-SecureString -AsPlainText $Password -Force)\r\n\r\n$messageParameters = @{\r\nSubject = \"New Password for $User User.\" \r\nBody = \"\r\nThe password has been change for $User.  \r\nThe password is now $Password.\r\n\r\nThis is an automated process, Written by Karl woods.\r\n\r\nMy Signature went here.\r\n\"\r\nFrom = \"sendingserver@youraddress\" \r\nTo = \"recipiant@youraddress\"\r\nSmtpServer = \"your.smtp.server\"\r\n} \r\nSend-MailMessage @messageParameters<\/pre>\n<h4>Setting the task to run on powershell on a schedule:<\/h4>\n<p>Save this as a powershell script, something like &#8220;changeuserpassword.ps1&#8221;<\/p>\n<ul>\n<li>Open the task scheduler, and &#8220;select create basic task&#8221;<\/li>\n<li>On the basic task wizard give the task a name that makes it identifiable. e.g. &#8220;change xxx weekly&#8221;<\/li>\n<li>Select your chosen trigger &#8211; I have the task run weekly at 16:00<\/li>\n<li>Select run a program and in the Program\/Script section add powershell.exe<\/li>\n<li>Under the section &#8220;Add arguments (optional):&#8221; add &#8220;-nologo -file &#8220;C:\\Scripts\\ChangeSupplyPassword.ps1&#8243;&#8221; (substituting &#8220;c:\\scripts\\Changesupplypassword.ps1&#8221; with the path to your script.)<\/li>\n<li>Once you selected finish, you will need to change the user that runs program as per the picture. As long as the user has modify access to your user in AD then,\u00a0everything should work as expected.<\/li>\n<\/ul>\n<p>I found at this point it is a good idea to right click on the selected task and hit run.<\/p>\n<div id='gallery-1' class='gallery galleryid-162 gallery-columns-3 gallery-size-thumbnail'><figure class='gallery-item'>\n\t\t\t<div class='gallery-icon landscape'>\n\t\t\t\t<a href='https:\/\/woodslife.co.uk\/?attachment_id=167'><img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/woodslife.co.uk\/wp-content\/uploads\/2017\/03\/create-basic-task-wizard1-150x150.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Create Basic Task Wizard\" aria-describedby=\"gallery-1-167\" \/><\/a>\n\t\t\t<\/div>\n\t\t\t\t<figcaption class='wp-caption-text gallery-caption' id='gallery-1-167'>\n\t\t\t\tCreate Basic Task Name\n\t\t\t\t<\/figcaption><\/figure><figure class='gallery-item'>\n\t\t\t<div class='gallery-icon landscape'>\n\t\t\t\t<a href='https:\/\/woodslife.co.uk\/?attachment_id=168'><img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/woodslife.co.uk\/wp-content\/uploads\/2017\/03\/create-basic-task-150x150.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Create Basic Task Wizard\" aria-describedby=\"gallery-1-168\" \/><\/a>\n\t\t\t<\/div>\n\t\t\t\t<figcaption class='wp-caption-text gallery-caption' id='gallery-1-168'>\n\t\t\t\tCreate Basic Task\n\t\t\t\t<\/figcaption><\/figure><figure class='gallery-item'>\n\t\t\t<div class='gallery-icon landscape'>\n\t\t\t\t<a href='https:\/\/woodslife.co.uk\/?attachment_id=169'><img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/woodslife.co.uk\/wp-content\/uploads\/2017\/03\/create-basic-task-start-a-program-150x150.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Powershell script. Create Basic Task Wizard\" aria-describedby=\"gallery-1-169\" \/><\/a>\n\t\t\t<\/div>\n\t\t\t\t<figcaption class='wp-caption-text gallery-caption' id='gallery-1-169'>\n\t\t\t\tcreate basic task start a program\n\t\t\t\t<\/figcaption><\/figure><figure class='gallery-item'>\n\t\t\t<div class='gallery-icon landscape'>\n\t\t\t\t<a href='https:\/\/woodslife.co.uk\/?attachment_id=170'><img loading=\"lazy\" decoding=\"async\" width=\"150\" height=\"150\" src=\"https:\/\/woodslife.co.uk\/wp-content\/uploads\/2017\/03\/create-basic-task-set-user-150x150.png\" class=\"attachment-thumbnail size-thumbnail\" alt=\"Create Basic Task Wizard\" aria-describedby=\"gallery-1-170\" \/><\/a>\n\t\t\t<\/div>\n\t\t\t\t<figcaption class='wp-caption-text gallery-caption' id='gallery-1-170'>\n\t\t\t\tCreate Basic Task Run as\n\t\t\t\t<\/figcaption><\/figure>\n\t\t<\/div>\n\n","protected":false},"excerpt":{"rendered":"<p>This is a quick and dirty powershell script to generate a random complex [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":167,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":true,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"jetpack_post_was_ever_published":false},"categories":[19,18],"tags":[70,69,33,71,30,32,68],"class_list":["post-162","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-server","category-windows-server","tag-complex","tag-password","tag-powershell","tag-random","tag-server","tag-server-2012","tag-user"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Setting a password with powershell script, and emailing it to a recipient. - woodslife.co.uk<\/title>\n<meta name=\"description\" content=\"A powershell script to generate a random complex password, and set it for a specific user and then email that password to a specified recipient..\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/woodslife.co.uk\/?p=162\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Setting a password with powershell script, and emailing it to a recipient. - woodslife.co.uk\" \/>\n<meta property=\"og:description\" content=\"A powershell script to generate a random complex password, and set it for a specific user and then email that password to a specified recipient..\" \/>\n<meta property=\"og:url\" content=\"https:\/\/woodslife.co.uk\/?p=162\" \/>\n<meta property=\"og:site_name\" content=\"woodslife.co.uk\" \/>\n<meta property=\"article:published_time\" content=\"2017-03-27T19:02:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-03-27T21:07:15+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/woodslife.co.uk\/wp-content\/uploads\/2017\/03\/create-basic-task-wizard1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"718\" \/>\n\t<meta property=\"og:image:height\" content=\"502\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Karl\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Karl\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated 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:\\\/\\\/woodslife.co.uk\\\/?p=162#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/woodslife.co.uk\\\/?p=162\"},\"author\":{\"name\":\"Karl\",\"@id\":\"https:\\\/\\\/woodslife.co.uk\\\/#\\\/schema\\\/person\\\/9cad89fa709bb84d06f90fcf11fe9ecb\"},\"headline\":\"Setting a password with powershell script, and emailing it to a recipient.\",\"datePublished\":\"2017-03-27T19:02:41+00:00\",\"dateModified\":\"2017-03-27T21:07:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/woodslife.co.uk\\\/?p=162\"},\"wordCount\":398,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/woodslife.co.uk\\\/#\\\/schema\\\/person\\\/9cad89fa709bb84d06f90fcf11fe9ecb\"},\"image\":{\"@id\":\"https:\\\/\\\/woodslife.co.uk\\\/?p=162#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/woodslife.co.uk\\\/wp-content\\\/uploads\\\/2017\\\/03\\\/create-basic-task-wizard1.png\",\"keywords\":[\"complex\",\"password\",\"powershell\",\"random\",\"Server\",\"Server 2012\",\"user\"],\"articleSection\":[\"Server\",\"Windows Server\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/woodslife.co.uk\\\/?p=162#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/woodslife.co.uk\\\/?p=162\",\"url\":\"https:\\\/\\\/woodslife.co.uk\\\/?p=162\",\"name\":\"Setting a password with powershell script, and emailing it to a recipient. - woodslife.co.uk\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/woodslife.co.uk\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/woodslife.co.uk\\\/?p=162#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/woodslife.co.uk\\\/?p=162#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/woodslife.co.uk\\\/wp-content\\\/uploads\\\/2017\\\/03\\\/create-basic-task-wizard1.png\",\"datePublished\":\"2017-03-27T19:02:41+00:00\",\"dateModified\":\"2017-03-27T21:07:15+00:00\",\"description\":\"A powershell script to generate a random complex password, and set it for a specific user and then email that password to a specified recipient..\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/woodslife.co.uk\\\/?p=162#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/woodslife.co.uk\\\/?p=162\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/woodslife.co.uk\\\/?p=162#primaryimage\",\"url\":\"https:\\\/\\\/woodslife.co.uk\\\/wp-content\\\/uploads\\\/2017\\\/03\\\/create-basic-task-wizard1.png\",\"contentUrl\":\"https:\\\/\\\/woodslife.co.uk\\\/wp-content\\\/uploads\\\/2017\\\/03\\\/create-basic-task-wizard1.png\",\"width\":718,\"height\":502,\"caption\":\"Create Basic Task Name\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/woodslife.co.uk\\\/?p=162#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/woodslife.co.uk\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Setting a password with powershell script, and emailing it to a recipient.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/woodslife.co.uk\\\/#website\",\"url\":\"https:\\\/\\\/woodslife.co.uk\\\/\",\"name\":\"woodslife.co.uk\",\"description\":\"A Family blog about Technology, DIY and anything else that we end up doing.\",\"publisher\":{\"@id\":\"https:\\\/\\\/woodslife.co.uk\\\/#\\\/schema\\\/person\\\/9cad89fa709bb84d06f90fcf11fe9ecb\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/woodslife.co.uk\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/woodslife.co.uk\\\/#\\\/schema\\\/person\\\/9cad89fa709bb84d06f90fcf11fe9ecb\",\"name\":\"Karl\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3373bd6f3aa45df17ae53b18cade1dbe7407a945337ec44dd3e7d89d9ca0eb40?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3373bd6f3aa45df17ae53b18cade1dbe7407a945337ec44dd3e7d89d9ca0eb40?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3373bd6f3aa45df17ae53b18cade1dbe7407a945337ec44dd3e7d89d9ca0eb40?s=96&d=mm&r=g\",\"caption\":\"Karl\"},\"logo\":{\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3373bd6f3aa45df17ae53b18cade1dbe7407a945337ec44dd3e7d89d9ca0eb40?s=96&d=mm&r=g\"},\"sameAs\":[\"https:\\\/\\\/woodslife.co.uk\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Setting a password with powershell script, and emailing it to a recipient. - woodslife.co.uk","description":"A powershell script to generate a random complex password, and set it for a specific user and then email that password to a specified recipient..","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:\/\/woodslife.co.uk\/?p=162","og_locale":"en_GB","og_type":"article","og_title":"Setting a password with powershell script, and emailing it to a recipient. - woodslife.co.uk","og_description":"A powershell script to generate a random complex password, and set it for a specific user and then email that password to a specified recipient..","og_url":"https:\/\/woodslife.co.uk\/?p=162","og_site_name":"woodslife.co.uk","article_published_time":"2017-03-27T19:02:41+00:00","article_modified_time":"2017-03-27T21:07:15+00:00","og_image":[{"width":718,"height":502,"url":"https:\/\/woodslife.co.uk\/wp-content\/uploads\/2017\/03\/create-basic-task-wizard1.png","type":"image\/png"}],"author":"Karl","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Karl","Estimated reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/woodslife.co.uk\/?p=162#article","isPartOf":{"@id":"https:\/\/woodslife.co.uk\/?p=162"},"author":{"name":"Karl","@id":"https:\/\/woodslife.co.uk\/#\/schema\/person\/9cad89fa709bb84d06f90fcf11fe9ecb"},"headline":"Setting a password with powershell script, and emailing it to a recipient.","datePublished":"2017-03-27T19:02:41+00:00","dateModified":"2017-03-27T21:07:15+00:00","mainEntityOfPage":{"@id":"https:\/\/woodslife.co.uk\/?p=162"},"wordCount":398,"commentCount":1,"publisher":{"@id":"https:\/\/woodslife.co.uk\/#\/schema\/person\/9cad89fa709bb84d06f90fcf11fe9ecb"},"image":{"@id":"https:\/\/woodslife.co.uk\/?p=162#primaryimage"},"thumbnailUrl":"https:\/\/woodslife.co.uk\/wp-content\/uploads\/2017\/03\/create-basic-task-wizard1.png","keywords":["complex","password","powershell","random","Server","Server 2012","user"],"articleSection":["Server","Windows Server"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/woodslife.co.uk\/?p=162#respond"]}]},{"@type":"WebPage","@id":"https:\/\/woodslife.co.uk\/?p=162","url":"https:\/\/woodslife.co.uk\/?p=162","name":"Setting a password with powershell script, and emailing it to a recipient. - woodslife.co.uk","isPartOf":{"@id":"https:\/\/woodslife.co.uk\/#website"},"primaryImageOfPage":{"@id":"https:\/\/woodslife.co.uk\/?p=162#primaryimage"},"image":{"@id":"https:\/\/woodslife.co.uk\/?p=162#primaryimage"},"thumbnailUrl":"https:\/\/woodslife.co.uk\/wp-content\/uploads\/2017\/03\/create-basic-task-wizard1.png","datePublished":"2017-03-27T19:02:41+00:00","dateModified":"2017-03-27T21:07:15+00:00","description":"A powershell script to generate a random complex password, and set it for a specific user and then email that password to a specified recipient..","breadcrumb":{"@id":"https:\/\/woodslife.co.uk\/?p=162#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/woodslife.co.uk\/?p=162"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/woodslife.co.uk\/?p=162#primaryimage","url":"https:\/\/woodslife.co.uk\/wp-content\/uploads\/2017\/03\/create-basic-task-wizard1.png","contentUrl":"https:\/\/woodslife.co.uk\/wp-content\/uploads\/2017\/03\/create-basic-task-wizard1.png","width":718,"height":502,"caption":"Create Basic Task Name"},{"@type":"BreadcrumbList","@id":"https:\/\/woodslife.co.uk\/?p=162#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/woodslife.co.uk\/"},{"@type":"ListItem","position":2,"name":"Setting a password with powershell script, and emailing it to a recipient."}]},{"@type":"WebSite","@id":"https:\/\/woodslife.co.uk\/#website","url":"https:\/\/woodslife.co.uk\/","name":"woodslife.co.uk","description":"A Family blog about Technology, DIY and anything else that we end up doing.","publisher":{"@id":"https:\/\/woodslife.co.uk\/#\/schema\/person\/9cad89fa709bb84d06f90fcf11fe9ecb"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/woodslife.co.uk\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":["Person","Organization"],"@id":"https:\/\/woodslife.co.uk\/#\/schema\/person\/9cad89fa709bb84d06f90fcf11fe9ecb","name":"Karl","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/3373bd6f3aa45df17ae53b18cade1dbe7407a945337ec44dd3e7d89d9ca0eb40?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/3373bd6f3aa45df17ae53b18cade1dbe7407a945337ec44dd3e7d89d9ca0eb40?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3373bd6f3aa45df17ae53b18cade1dbe7407a945337ec44dd3e7d89d9ca0eb40?s=96&d=mm&r=g","caption":"Karl"},"logo":{"@id":"https:\/\/secure.gravatar.com\/avatar\/3373bd6f3aa45df17ae53b18cade1dbe7407a945337ec44dd3e7d89d9ca0eb40?s=96&d=mm&r=g"},"sameAs":["https:\/\/woodslife.co.uk"]}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/woodslife.co.uk\/wp-content\/uploads\/2017\/03\/create-basic-task-wizard1.png","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p8vEzv-2C","jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/woodslife.co.uk\/index.php?rest_route=\/wp\/v2\/posts\/162","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/woodslife.co.uk\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/woodslife.co.uk\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/woodslife.co.uk\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/woodslife.co.uk\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=162"}],"version-history":[{"count":10,"href":"https:\/\/woodslife.co.uk\/index.php?rest_route=\/wp\/v2\/posts\/162\/revisions"}],"predecessor-version":[{"id":191,"href":"https:\/\/woodslife.co.uk\/index.php?rest_route=\/wp\/v2\/posts\/162\/revisions\/191"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/woodslife.co.uk\/index.php?rest_route=\/wp\/v2\/media\/167"}],"wp:attachment":[{"href":"https:\/\/woodslife.co.uk\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=162"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/woodslife.co.uk\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=162"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/woodslife.co.uk\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=162"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}