{"id":111,"date":"2012-08-30T08:27:20","date_gmt":"2012-08-30T08:27:20","guid":{"rendered":"http:\/\/elbsolutions.com\/projects\/?p=111"},"modified":"2022-02-03T11:25:06","modified_gmt":"2022-02-03T17:25:06","slug":"windows-task-scheduler-a-consistent-way-to-execute-exe-files","status":"publish","type":"post","link":"https:\/\/elbsolutions.com\/projects\/windows-task-scheduler-a-consistent-way-to-execute-exe-files\/","title":{"rendered":"Windows Task Scheduler &#8211; a consistent way to execute exe files"},"content":{"rendered":"<p>A guaranteed way to make exe&#8217;s with parameters kick off is<\/p>\n<p><span style=\"color: #999999;\">aa) don&#8217;t run a scheduled task on a network share &#8211; if you get 0x1 as a result code .. copy everything to a local drive??? (latest update). Worked for me but is 2X work when source code changes.<\/span><\/p>\n<p>aa1) UPDATE: If running bat files (<a href=\"http:\/\/social.technet.microsoft.com\/Forums\/windowsserver\/en-US\/d47d116e-10b9-44f0-9a30-7406c86c2fbe\/scheduled-task-wont-run-bat-file?forum=winservermanager\" target=\"_blank\" rel=\"noopener noreferrer\">tips from here<\/a>)<\/p>\n<ul>\n<li>run as highest privileges is checked<\/li>\n<li>put the path of the bat file in the &#8220;start in&#8221; and a full path and bat file in the &#8220;Program\/script&#8221; box<\/li>\n<li>ensure there are no quotes in the Program\/script and Start in boxes (not tested but I didn&#8217;t need them)<\/li>\n<li>ensure all directories have &#8220;Ful Permissions&#8221; for the account you finally use to with&#8217;<\/li>\n<li>test it with &#8220;r-mouse click&#8221; run. If it works there &#8211; it will worked with it logged on.<\/li>\n<\/ul>\n<p>a) make a new Task Scheduler and make it it point to a bat file. You can try all sorts of other scenarios but \u00a0I have already spent hours &#8211; this works every time .<\/p>\n<p>&nbsp;<\/p>\n<p>b) Now, lets take a look at that RunScriptNow.vbs.qualitysurfaces.bat file &#8211; I will copy the guts of it here:<\/p>\n<pre class=\"brush: bash; title: ; notranslate\" title=\"\">\r\n echo %date% %time% %username% qualitysurfaces &gt;&gt; c:\\temp\\test.txt\r\n cd c:\\Users\\Administrator\\Desktop\\Moreaware\r\n cscript \/\/nologo \/\/B RunScriptNow.vbs qualitysurfaces &gt;&gt;c:\\temp\\test.txt\r\n echo %date% %time% &gt;&gt; c:\\test.txt\r\n\r\n<\/pre>\n<p>It writes to a log file of your choice, then it mimicks the &#8220;Start in&#8221; by cd&#8217;ing to the directory where the executable file is<\/p>\n<p>In this case, I wanted to run a .vbs file with parameters so I use cscript but this is not the focus on this step b). We put any output to the dos prompt from this .vbs process to the log file.<\/p>\n<p>Lastly &#8211; to know that we made it to the end of the cscript line &#8211; we write again to the log.<\/p>\n<p>NOW WE KNOW FOR SURE THINGS WERE DONE! If gui items pop up from the command line &#8211; don&#8217;t expect to see them like with window 2003 &#8211; this is now all silent. Note I have a diff bat file for every parameter &#8211; substituting %1 in that bat file above for &#8216;quality surfaces&#8217; in the script line DOES NOT WORK &#8211; neither does %%1.<\/p>\n<p>c) For directly kicking off an exe &#8211; hmmm. I think I converted them all to .vbs but you simply put the exe file on the command line NOT fully qualified with a path since the cd line directly above it. Again &#8211; pipe the output (append or &gt;&gt; ) to the log file so you know what is going on.<\/p>\n<p>d) here is the guts of the .vbs file which should speed things up for you. This is in leiu of me having a .exe example in c) \ud83d\ude09<\/p>\n<pre class=\"brush: vb; title: ; notranslate\" title=\"\">\r\nDim myDate, myTimeS\r\nDim nowvar\r\nDim incust\r\nDim ArgsListExtra\r\n\r\n' get the arguments from the command line - we only want the first one and put it incust\r\nif WScript.Arguments.Count &amp;gt;= 1 Then\r\nincust = WScript.Arguments.Item(0)\r\n\r\n'get the rest of the arguments - not sure why I left this in but it works with this in so lets leave it\r\nArgsListExtra = &quot;&quot;\r\nif WScript.Arguments.Count &amp;gt;= 1 Then\r\nFor i = 1 to WScript.Arguments.Count\r\nArgsListExtra = ArgsListExtra &amp;amp; &quot; &quot; &amp;amp; WScript.Arguments.Item(i-1)\r\n\r\nNext\r\nEnd If\r\n\r\n'lets make the filename with a nice date and timestamp in the file name\r\nnowvar = \u00a0Now()\r\nmyDate = FormatDateTime(nowvar, 2)\r\nmyTimeS = FormatDateTime(nowvar, 3)\r\n\r\nmyTimeS = replace(myTimeS, &quot;:&quot;, &quot;_&quot;, 1, -1, 1)\r\nmyTimeS = replace(myTimeS,&quot; &quot;,&quot;&quot;,1,-1,1)\r\n\r\nmyDate = replace(&quot;0&quot;&amp;amp;myDate,&quot;\/&quot;,&quot;_0&quot;,1,-1,1)\r\nmyDate = replace(myDate, &quot;_0201&quot;, &quot;201&quot;, 1, -1, 1)\r\nmyDate = replace(myDate, &quot;_00&quot;, &quot;0&quot;, 1, -1, 1)\r\nmyDate = replace(myDate, &quot;_0&quot;, &quot;0&quot;, 1, -1, 1)\r\nmyDate = replace(myDate,&quot;_00&quot;,&quot;0&quot;,1,-1,1)\r\nmyDate = replace(myDate,&quot; &quot;,&quot;&quot;,1,-1,1)\r\n\r\nDim finalstring\r\nfinalstring = myDate &amp;amp; &quot;_&quot; &amp;amp; myTimeS\r\n\r\n' now assemble the command line we would normally type\r\n\r\nDim cmdstart\r\ncmdstart = &quot;cd &quot;&quot;C:\\Users\\Administrator\\Desktop&quot;&quot; &amp;amp;&amp;amp; &quot; \u00a0\u00a0\u00a0' look up what &amp;amp;&amp;amp; does on the command line - it allows multi command line items on one line of text. Crazy\r\n\r\nDim command\r\ncommand \u00a0= cmdstart &amp;amp; &quot;JobMaterialCost.exe -c &quot;&amp;amp;incust&amp;amp;&quot; -u username -p password -fe c:\\Users\\Administrator\\Desktop\\&quot;&amp;amp;incust&amp;amp;&quot;_&quot;&amp;amp;finalstring'&amp;amp; ArgsListExtra &amp;amp;&quot; &amp;amp;&amp;amp; pause&quot;\r\n\r\n' now execute it\r\n\r\nif 0 Then\r\nWScript.Echo(command) ' this is here in case you want to debug - this will NOT show up in the TaskScheduled version - but it might hang there until you press OK - except you cannot\r\n'\u00a0 press ok .... cause you cannot see the windows although it will still wait for you \u00a0:-)\r\nElse\r\nSet oShell = CreateObject(&quot;WScript.Shell&quot;)\r\n'Launch a command shell .... &quot;\/K&quot; &amp;lt;- keeps it open \u00a0\u00a0- we want ---&amp;gt; \/C *\/ - read up a GREAT text at\u00a0&lt;a href=&quot;http:\/\/technet.microsoft.com\/en-us\/library\/ee692837&quot;&gt;http:\/\/technet.microsoft.com\/en-us\/library\/ee692837&lt;\/a&gt;\r\noShell.Run &quot;CMD \/C &quot; &amp;amp;command, , True\r\nEnd If\r\n\r\n'WScript.Echo(&quot;Done&quot; &amp;amp; incust) \u00a0' again this might hang your Scheduled Tasks\r\n\r\nElse\r\n\r\nEnd If\r\n<\/pre>\n<p>Appendix:<br \/>\nIf you are interested in what makes the command prompt wait or not for the next process etc. within vbs files &#8211; see these links and read them twice &#8211; it is REALLY IMPORTANT if you use .vbs to help you script things<br \/>\n&#8211;\u00a0<a href=\"http:\/\/technet.microsoft.com\/en-us\/library\/ee692837\">http:\/\/technet.microsoft.com\/en-us\/library\/ee692837<\/a><br \/>\n&#8211;\u00a0<a href=\"http:\/\/technet.microsoft.com\/en-us\/library\/ee692836\">http:\/\/technet.microsoft.com\/en-us\/library\/ee692836<\/a><br \/>\n&#8211;\u00a0<a href=\"http:\/\/visualbasic.about.com\/gi\/dynamic\/offsite.htm?site=http:\/\/msdn.microsoft.com\/library\/en-us\/script56\/html\/wsoriObjects.asp\">http:\/\/visualbasic.about.com\/gi\/dynamic\/offsite.htm?site=http:\/\/msdn.microsoft.com\/library\/en-us\/script56\/html\/wsoriObjects.asp<\/a><br \/>\n&#8211;\u00a0<a href=\"http:\/\/visualbasic.about.com\/gi\/dynamic\/offsite.htm?site=http:\/\/msdn.microsoft.com\/library\/en-us\/script56\/html\/wsoriObjects.asp\">http:\/\/visualbasic.about.com\/gi\/dynamic\/offsite.htm?site=http:\/\/msdn.microsoft.com\/library\/en-us\/script56\/html\/wsoriObjects.asp<\/a><br \/>\n&#8211;\u00a0<a href=\"http:\/\/technet.microsoft.com\/en-us\/library\/ee176904.aspx\">http:\/\/technet.microsoft.com\/en-us\/library\/ee176904.aspx<\/a><br \/>\n&#8211;\u00a0<a href=\"http:\/\/labmice.techtarget.com\/scripting\/WSH.htm\">http:\/\/labmice.techtarget.com\/scripting\/WSH.htm<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>A guaranteed way to make exe&#8217;s with parameters kick off is aa) don&#8217;t run a scheduled task on a network share &#8211; if you get 0x1 as a result code .. copy everything to a local drive??? (latest update). Worked for me but is 2X work when source code changes. aa1) UPDATE: If running bat [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[7],"tags":[],"class_list":["post-111","post","type-post","status-publish","format-standard","hentry","category-windows"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Windows Task Scheduler - a consistent way to execute exe files - ELB Solutions.com Inc.<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/elbsolutions.com\/projects\/windows-task-scheduler-a-consistent-way-to-execute-exe-files\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Windows Task Scheduler - a consistent way to execute exe files - ELB Solutions.com Inc.\" \/>\n<meta property=\"og:description\" content=\"A guaranteed way to make exe&#8217;s with parameters kick off is aa) don&#8217;t run a scheduled task on a network share &#8211; if you get 0x1 as a result code .. copy everything to a local drive??? (latest update). Worked for me but is 2X work when source code changes. aa1) UPDATE: If running bat [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/elbsolutions.com\/projects\/windows-task-scheduler-a-consistent-way-to-execute-exe-files\/\" \/>\n<meta property=\"og:site_name\" content=\"ELB Solutions.com Inc.\" \/>\n<meta property=\"article:published_time\" content=\"2012-08-30T08:27:20+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-02-03T17:25:06+00:00\" \/>\n<meta name=\"author\" content=\"Etienne Bley\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Etienne Bley\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/windows-task-scheduler-a-consistent-way-to-execute-exe-files\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/windows-task-scheduler-a-consistent-way-to-execute-exe-files\\\/\"},\"author\":{\"name\":\"Etienne Bley\",\"@id\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/#\\\/schema\\\/person\\\/51e717c68f4f5917c63baf88f0896c39\"},\"headline\":\"Windows Task Scheduler &#8211; a consistent way to execute exe files\",\"datePublished\":\"2012-08-30T08:27:20+00:00\",\"dateModified\":\"2022-02-03T17:25:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/windows-task-scheduler-a-consistent-way-to-execute-exe-files\\\/\"},\"wordCount\":1051,\"articleSection\":[\"Windows\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/windows-task-scheduler-a-consistent-way-to-execute-exe-files\\\/\",\"url\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/windows-task-scheduler-a-consistent-way-to-execute-exe-files\\\/\",\"name\":\"Windows Task Scheduler - a consistent way to execute exe files - ELB Solutions.com Inc.\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/#website\"},\"datePublished\":\"2012-08-30T08:27:20+00:00\",\"dateModified\":\"2022-02-03T17:25:06+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/#\\\/schema\\\/person\\\/51e717c68f4f5917c63baf88f0896c39\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/windows-task-scheduler-a-consistent-way-to-execute-exe-files\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/windows-task-scheduler-a-consistent-way-to-execute-exe-files\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/windows-task-scheduler-a-consistent-way-to-execute-exe-files\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Windows Task Scheduler &#8211; a consistent way to execute exe files\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/#website\",\"url\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/\",\"name\":\"ELB Solutions.com Inc.\",\"description\":\"Bringing all your IT Pieces together\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/#\\\/schema\\\/person\\\/51e717c68f4f5917c63baf88f0896c39\",\"name\":\"Etienne Bley\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f8971dfb65b25b768415568f83247df4057f15d037137e386928a804e2c997b9?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f8971dfb65b25b768415568f83247df4057f15d037137e386928a804e2c997b9?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f8971dfb65b25b768415568f83247df4057f15d037137e386928a804e2c997b9?s=96&d=mm&r=g\",\"caption\":\"Etienne Bley\"},\"url\":\"https:\\\/\\\/elbsolutions.com\\\/projects\\\/author\\\/etienne-bley\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Windows Task Scheduler - a consistent way to execute exe files - ELB Solutions.com Inc.","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:\/\/elbsolutions.com\/projects\/windows-task-scheduler-a-consistent-way-to-execute-exe-files\/","og_locale":"en_US","og_type":"article","og_title":"Windows Task Scheduler - a consistent way to execute exe files - ELB Solutions.com Inc.","og_description":"A guaranteed way to make exe&#8217;s with parameters kick off is aa) don&#8217;t run a scheduled task on a network share &#8211; if you get 0x1 as a result code .. copy everything to a local drive??? (latest update). Worked for me but is 2X work when source code changes. aa1) UPDATE: If running bat [&hellip;]","og_url":"https:\/\/elbsolutions.com\/projects\/windows-task-scheduler-a-consistent-way-to-execute-exe-files\/","og_site_name":"ELB Solutions.com Inc.","article_published_time":"2012-08-30T08:27:20+00:00","article_modified_time":"2022-02-03T17:25:06+00:00","author":"Etienne Bley","twitter_misc":{"Written by":"Etienne Bley","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/elbsolutions.com\/projects\/windows-task-scheduler-a-consistent-way-to-execute-exe-files\/#article","isPartOf":{"@id":"https:\/\/elbsolutions.com\/projects\/windows-task-scheduler-a-consistent-way-to-execute-exe-files\/"},"author":{"name":"Etienne Bley","@id":"https:\/\/elbsolutions.com\/projects\/#\/schema\/person\/51e717c68f4f5917c63baf88f0896c39"},"headline":"Windows Task Scheduler &#8211; a consistent way to execute exe files","datePublished":"2012-08-30T08:27:20+00:00","dateModified":"2022-02-03T17:25:06+00:00","mainEntityOfPage":{"@id":"https:\/\/elbsolutions.com\/projects\/windows-task-scheduler-a-consistent-way-to-execute-exe-files\/"},"wordCount":1051,"articleSection":["Windows"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/elbsolutions.com\/projects\/windows-task-scheduler-a-consistent-way-to-execute-exe-files\/","url":"https:\/\/elbsolutions.com\/projects\/windows-task-scheduler-a-consistent-way-to-execute-exe-files\/","name":"Windows Task Scheduler - a consistent way to execute exe files - ELB Solutions.com Inc.","isPartOf":{"@id":"https:\/\/elbsolutions.com\/projects\/#website"},"datePublished":"2012-08-30T08:27:20+00:00","dateModified":"2022-02-03T17:25:06+00:00","author":{"@id":"https:\/\/elbsolutions.com\/projects\/#\/schema\/person\/51e717c68f4f5917c63baf88f0896c39"},"breadcrumb":{"@id":"https:\/\/elbsolutions.com\/projects\/windows-task-scheduler-a-consistent-way-to-execute-exe-files\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/elbsolutions.com\/projects\/windows-task-scheduler-a-consistent-way-to-execute-exe-files\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/elbsolutions.com\/projects\/windows-task-scheduler-a-consistent-way-to-execute-exe-files\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/elbsolutions.com\/projects\/"},{"@type":"ListItem","position":2,"name":"Windows Task Scheduler &#8211; a consistent way to execute exe files"}]},{"@type":"WebSite","@id":"https:\/\/elbsolutions.com\/projects\/#website","url":"https:\/\/elbsolutions.com\/projects\/","name":"ELB Solutions.com Inc.","description":"Bringing all your IT Pieces together","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/elbsolutions.com\/projects\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/elbsolutions.com\/projects\/#\/schema\/person\/51e717c68f4f5917c63baf88f0896c39","name":"Etienne Bley","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f8971dfb65b25b768415568f83247df4057f15d037137e386928a804e2c997b9?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f8971dfb65b25b768415568f83247df4057f15d037137e386928a804e2c997b9?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f8971dfb65b25b768415568f83247df4057f15d037137e386928a804e2c997b9?s=96&d=mm&r=g","caption":"Etienne Bley"},"url":"https:\/\/elbsolutions.com\/projects\/author\/etienne-bley\/"}]}},"_links":{"self":[{"href":"https:\/\/elbsolutions.com\/projects\/wp-json\/wp\/v2\/posts\/111","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/elbsolutions.com\/projects\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/elbsolutions.com\/projects\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/elbsolutions.com\/projects\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/elbsolutions.com\/projects\/wp-json\/wp\/v2\/comments?post=111"}],"version-history":[{"count":7,"href":"https:\/\/elbsolutions.com\/projects\/wp-json\/wp\/v2\/posts\/111\/revisions"}],"predecessor-version":[{"id":2888,"href":"https:\/\/elbsolutions.com\/projects\/wp-json\/wp\/v2\/posts\/111\/revisions\/2888"}],"wp:attachment":[{"href":"https:\/\/elbsolutions.com\/projects\/wp-json\/wp\/v2\/media?parent=111"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/elbsolutions.com\/projects\/wp-json\/wp\/v2\/categories?post=111"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/elbsolutions.com\/projects\/wp-json\/wp\/v2\/tags?post=111"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}