{"id":4523,"date":"2010-10-28T09:10:00","date_gmt":"2010-10-28T09:10:00","guid":{"rendered":"https:\/\/www.sotec.eu\/?p=4523"},"modified":"2025-09-04T12:49:46","modified_gmt":"2025-09-04T12:49:46","slug":"scom-mps-process-count-monitor","status":"publish","type":"post","link":"https:\/\/www.sotec.eu\/en\/scom-mps-process-count-monitor\/","title":{"rendered":"SCOM MPs: Process Count Monitor"},"content":{"rendered":"\n<p>In my latest project I ran into a situation where I wanted to monitor the amount of processes of a specific executable. If you have worked with the SCOM Operations Manager Console before, you might know that a template exists for this particular scenario. However, this template will only discover the object if the process is already running. This wasn\u2019t acceptable for this project so I decided to create my own monitor for the number of processes of an executable. The discovery was actually done using a registry entry (which I find very handy; but be aware of 64Bit operating systems, as I described in one of my other blog articles).<\/p>\n\n\n\n<p>First off I needed a class which would be the target of the monitor. When the class is created you can create the monitor with this class as a target (you need to discover the object somehow though). Create a new script monitor with two states (or all three states, if you prefer to).<\/p>\n\n\n\n<p>Use the following script when the wizard prompts you for a script:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>' Process Count Script. Usage:script.vbs\nOption Explicit\n' SCOM Scripting API Objects\nDim oAPI, oBag\nDim objWMIService\n' Parameters\nDim sComputerName, strProcessName\nDim colProcess, objItem, PrcCount\n\nsComputerName = WScript.Arguments(0)\nstrProcessName = \"\"\"\" &amp; WScript.Arguments(1) &amp; \"\"\"\"\n\nSet oAPI = CreateObject(\"MOM.ScriptAPI\")\nSet oBag = oAPI.CreatePropertyBag()\n\nSet objWMIService = GetObject(\"winmgmts:{impersonationLevel=impersonate}!\\\\\" &amp; sComputerName &amp; \"\\root\\cimv2\")\nSet colProcess = objWMIService.ExecQuery(\"SELECT * FROM CIM_Process WHERE Caption = \" &amp; strProcessName)\nPrcCount = 0\n\nif Not IsNull(colProcess) Then\nFor Each objItem in colProcess\nPrcCount = PrcCount + 1\nNext\nEnd If\n\nCall oBag.AddValue(\"Count\",PrcCount)\nCall oAPI.Return(oBag)<\/code><\/pre>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Don\u2019t click on \u2018Next\u2019 just yet. Hit \u2018Parameters\u2019 and make the list look like in the following screenshot (Image 1). Note that there is a single blank between $Target\/Host\u2026$ and PROCESS.EXE. Replace PROCESS.EXE with whatever your binary is called.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img fetchpriority=\"high\" decoding=\"async\" width=\"619\" height=\"616\" src=\"https:\/\/www.sotec.eu\/wp-content\/uploads\/2025\/02\/ScriptParameters.png\" alt=\"\" class=\"wp-image-4524\" srcset=\"https:\/\/www.sotec.eu\/wp-content\/uploads\/2025\/02\/ScriptParameters.png 619w, https:\/\/www.sotec.eu\/wp-content\/uploads\/2025\/02\/ScriptParameters-300x300.png 300w, https:\/\/www.sotec.eu\/wp-content\/uploads\/2025\/02\/ScriptParameters-150x150.png 150w\" sizes=\"(max-width: 619px) 100vw, 619px\" \/><\/figure>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>In the next two steps you\u2019ll have to define the unhealthy and healthy expressions. Since I used the property bag in the script these will be Property[@Name=\u2019Count\u2019] (see Image 2). Set the expression for the \u2018Healthy Expression\u2019 to something similar. If you have to ensure there is always exactly a single process active you need to set the unhealthy expression to \u2018Not Equal\u2019 1 and the \u2018Healthy Expression\u2019 to \u2018Equals\u2019 1. In my scenario I allowed process counts from none to one.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"560\" height=\"601\" src=\"https:\/\/www.sotec.eu\/wp-content\/uploads\/2025\/02\/UnhealthyExpression.png\" alt=\"\" class=\"wp-image-4525\" srcset=\"https:\/\/www.sotec.eu\/wp-content\/uploads\/2025\/02\/UnhealthyExpression.png 560w, https:\/\/www.sotec.eu\/wp-content\/uploads\/2025\/02\/UnhealthyExpression-280x300.png 280w\" sizes=\"(max-width: 560px) 100vw, 560px\" \/><\/figure>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Last but not least you can check the configuration in the overview. In the next screenshot (Image 3) you can see that I used Integer for the @Type rows. It doesn\u2019t really matter whether it\u2019s Integer or String so don\u2019t bother to change it accordingly.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"538\" height=\"543\" src=\"https:\/\/www.sotec.eu\/wp-content\/uploads\/2025\/02\/Configuration.png\" alt=\"\" class=\"wp-image-4526\" srcset=\"https:\/\/www.sotec.eu\/wp-content\/uploads\/2025\/02\/Configuration.png 538w, https:\/\/www.sotec.eu\/wp-content\/uploads\/2025\/02\/Configuration-297x300.png 297w, https:\/\/www.sotec.eu\/wp-content\/uploads\/2025\/02\/Configuration-150x150.png 150w\" sizes=\"(max-width: 538px) 100vw, 538px\" \/><\/figure>\n\n\n\n<div style=\"height:24px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Although this is a very simple monitor, I didn\u2019t find a ready-to-use solution somewhere. I hope this will help you if you\u2019re trying to build something similar.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In my latest project I ran into a situation where I wanted to monitor the amount of processes of a specific executable. If you have worked with the SCOM Operations Manager Console before, you might know that a template exists for this particular scenario. However, this template will only discover the object if the process is already running. This wasn\u2019t acceptable for this project so I decided to create my own monitor for the number of processes of an executable. The discovery was actually done using a registry entry (which I find very handy; but be aware of 64Bit operating systems, as I described in one of my other blog articles).<\/p>\n","protected":false},"author":7,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-4523","post","type-post","status-publish","format-standard","hentry","category-nicht-kategorisiert"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>SCOM MPs: Process Count Monitor - SOTEC<\/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:\/\/www.sotec.eu\/en\/scom-mps-process-count-monitor\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SCOM MPs: Process Count Monitor - SOTEC\" \/>\n<meta property=\"og:description\" content=\"In my latest project I ran into a situation where I wanted to monitor the amount of processes of a specific executable. If you have worked with the SCOM Operations Manager Console before, you might know that a template exists for this particular scenario. However, this template will only discover the object if the process is already running. This wasn\u2019t acceptable for this project so I decided to create my own monitor for the number of processes of an executable. The discovery was actually done using a registry entry (which I find very handy; but be aware of 64Bit operating systems, as I described in one of my other blog articles).\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.sotec.eu\/en\/scom-mps-process-count-monitor\/\" \/>\n<meta property=\"og:site_name\" content=\"SOTEC\" \/>\n<meta property=\"article:published_time\" content=\"2010-10-28T09:10:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-04T12:49:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.sotec.eu\/wp-content\/uploads\/2025\/02\/ScriptParameters.png\" \/>\n\t<meta property=\"og:image:width\" content=\"619\" \/>\n\t<meta property=\"og:image:height\" content=\"616\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Anna Akinchyna\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Anna Akinchyna\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.sotec.eu\\\/en\\\/scom-mps-process-count-monitor\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.sotec.eu\\\/en\\\/scom-mps-process-count-monitor\\\/\"},\"author\":{\"name\":\"Anna Akinchyna\",\"@id\":\"https:\\\/\\\/www.sotec.eu\\\/#\\\/schema\\\/person\\\/07cb9b84a952982037f22f56d491df03\"},\"headline\":\"SCOM MPs: Process Count Monitor\",\"datePublished\":\"2010-10-28T09:10:00+00:00\",\"dateModified\":\"2025-09-04T12:49:46+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.sotec.eu\\\/en\\\/scom-mps-process-count-monitor\\\/\"},\"wordCount\":383,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.sotec.eu\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.sotec.eu\\\/en\\\/scom-mps-process-count-monitor\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.sotec.eu\\\/wp-content\\\/uploads\\\/2025\\\/02\\\/ScriptParameters.png\",\"articleSection\":[\"Nicht kategorisiert\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.sotec.eu\\\/en\\\/scom-mps-process-count-monitor\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.sotec.eu\\\/en\\\/scom-mps-process-count-monitor\\\/\",\"url\":\"https:\\\/\\\/www.sotec.eu\\\/en\\\/scom-mps-process-count-monitor\\\/\",\"name\":\"SCOM MPs: Process Count Monitor - SOTEC\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.sotec.eu\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.sotec.eu\\\/en\\\/scom-mps-process-count-monitor\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.sotec.eu\\\/en\\\/scom-mps-process-count-monitor\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.sotec.eu\\\/wp-content\\\/uploads\\\/2025\\\/02\\\/ScriptParameters.png\",\"datePublished\":\"2010-10-28T09:10:00+00:00\",\"dateModified\":\"2025-09-04T12:49:46+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.sotec.eu\\\/en\\\/scom-mps-process-count-monitor\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.sotec.eu\\\/en\\\/scom-mps-process-count-monitor\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.sotec.eu\\\/en\\\/scom-mps-process-count-monitor\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.sotec.eu\\\/wp-content\\\/uploads\\\/2025\\\/02\\\/ScriptParameters.png\",\"contentUrl\":\"https:\\\/\\\/www.sotec.eu\\\/wp-content\\\/uploads\\\/2025\\\/02\\\/ScriptParameters.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.sotec.eu\\\/en\\\/scom-mps-process-count-monitor\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startseite\",\"item\":\"https:\\\/\\\/www.sotec.eu\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SCOM MPs: Process Count Monitor\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.sotec.eu\\\/#website\",\"url\":\"https:\\\/\\\/www.sotec.eu\\\/\",\"name\":\"SOTEC\",\"description\":\"Engineering for Digital Transformation\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.sotec.eu\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.sotec.eu\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.sotec.eu\\\/#organization\",\"name\":\"SOTEC\",\"url\":\"https:\\\/\\\/www.sotec.eu\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.sotec.eu\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.sotec.eu\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/logo-en-raster-1-scaled.png\",\"contentUrl\":\"https:\\\/\\\/www.sotec.eu\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/logo-en-raster-1-scaled.png\",\"width\":2560,\"height\":634,\"caption\":\"SOTEC\"},\"image\":{\"@id\":\"https:\\\/\\\/www.sotec.eu\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.sotec.eu\\\/#\\\/schema\\\/person\\\/07cb9b84a952982037f22f56d491df03\",\"name\":\"Anna Akinchyna\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/aa135b4d99d22de7eb18b5a8aad37e4346b806b5e6ac52e75ab2706cf48ebe7d?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/aa135b4d99d22de7eb18b5a8aad37e4346b806b5e6ac52e75ab2706cf48ebe7d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/aa135b4d99d22de7eb18b5a8aad37e4346b806b5e6ac52e75ab2706cf48ebe7d?s=96&d=mm&r=g\",\"caption\":\"Anna Akinchyna\"},\"url\":\"https:\\\/\\\/www.sotec.eu\\\/en\\\/author\\\/a-akinchynasotec-eu\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SCOM MPs: Process Count Monitor - SOTEC","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:\/\/www.sotec.eu\/en\/scom-mps-process-count-monitor\/","og_locale":"en_US","og_type":"article","og_title":"SCOM MPs: Process Count Monitor - SOTEC","og_description":"In my latest project I ran into a situation where I wanted to monitor the amount of processes of a specific executable. If you have worked with the SCOM Operations Manager Console before, you might know that a template exists for this particular scenario. However, this template will only discover the object if the process is already running. This wasn\u2019t acceptable for this project so I decided to create my own monitor for the number of processes of an executable. The discovery was actually done using a registry entry (which I find very handy; but be aware of 64Bit operating systems, as I described in one of my other blog articles).","og_url":"https:\/\/www.sotec.eu\/en\/scom-mps-process-count-monitor\/","og_site_name":"SOTEC","article_published_time":"2010-10-28T09:10:00+00:00","article_modified_time":"2025-09-04T12:49:46+00:00","og_image":[{"width":619,"height":616,"url":"https:\/\/www.sotec.eu\/wp-content\/uploads\/2025\/02\/ScriptParameters.png","type":"image\/png"}],"author":"Anna Akinchyna","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Anna Akinchyna","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.sotec.eu\/en\/scom-mps-process-count-monitor\/#article","isPartOf":{"@id":"https:\/\/www.sotec.eu\/en\/scom-mps-process-count-monitor\/"},"author":{"name":"Anna Akinchyna","@id":"https:\/\/www.sotec.eu\/#\/schema\/person\/07cb9b84a952982037f22f56d491df03"},"headline":"SCOM MPs: Process Count Monitor","datePublished":"2010-10-28T09:10:00+00:00","dateModified":"2025-09-04T12:49:46+00:00","mainEntityOfPage":{"@id":"https:\/\/www.sotec.eu\/en\/scom-mps-process-count-monitor\/"},"wordCount":383,"commentCount":0,"publisher":{"@id":"https:\/\/www.sotec.eu\/#organization"},"image":{"@id":"https:\/\/www.sotec.eu\/en\/scom-mps-process-count-monitor\/#primaryimage"},"thumbnailUrl":"https:\/\/www.sotec.eu\/wp-content\/uploads\/2025\/02\/ScriptParameters.png","articleSection":["Nicht kategorisiert"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.sotec.eu\/en\/scom-mps-process-count-monitor\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.sotec.eu\/en\/scom-mps-process-count-monitor\/","url":"https:\/\/www.sotec.eu\/en\/scom-mps-process-count-monitor\/","name":"SCOM MPs: Process Count Monitor - SOTEC","isPartOf":{"@id":"https:\/\/www.sotec.eu\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.sotec.eu\/en\/scom-mps-process-count-monitor\/#primaryimage"},"image":{"@id":"https:\/\/www.sotec.eu\/en\/scom-mps-process-count-monitor\/#primaryimage"},"thumbnailUrl":"https:\/\/www.sotec.eu\/wp-content\/uploads\/2025\/02\/ScriptParameters.png","datePublished":"2010-10-28T09:10:00+00:00","dateModified":"2025-09-04T12:49:46+00:00","breadcrumb":{"@id":"https:\/\/www.sotec.eu\/en\/scom-mps-process-count-monitor\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.sotec.eu\/en\/scom-mps-process-count-monitor\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sotec.eu\/en\/scom-mps-process-count-monitor\/#primaryimage","url":"https:\/\/www.sotec.eu\/wp-content\/uploads\/2025\/02\/ScriptParameters.png","contentUrl":"https:\/\/www.sotec.eu\/wp-content\/uploads\/2025\/02\/ScriptParameters.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.sotec.eu\/en\/scom-mps-process-count-monitor\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Startseite","item":"https:\/\/www.sotec.eu\/en\/"},{"@type":"ListItem","position":2,"name":"SCOM MPs: Process Count Monitor"}]},{"@type":"WebSite","@id":"https:\/\/www.sotec.eu\/#website","url":"https:\/\/www.sotec.eu\/","name":"SOTEC","description":"Engineering for Digital Transformation","publisher":{"@id":"https:\/\/www.sotec.eu\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.sotec.eu\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.sotec.eu\/#organization","name":"SOTEC","url":"https:\/\/www.sotec.eu\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.sotec.eu\/#\/schema\/logo\/image\/","url":"https:\/\/www.sotec.eu\/wp-content\/uploads\/2024\/11\/logo-en-raster-1-scaled.png","contentUrl":"https:\/\/www.sotec.eu\/wp-content\/uploads\/2024\/11\/logo-en-raster-1-scaled.png","width":2560,"height":634,"caption":"SOTEC"},"image":{"@id":"https:\/\/www.sotec.eu\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.sotec.eu\/#\/schema\/person\/07cb9b84a952982037f22f56d491df03","name":"Anna Akinchyna","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/aa135b4d99d22de7eb18b5a8aad37e4346b806b5e6ac52e75ab2706cf48ebe7d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/aa135b4d99d22de7eb18b5a8aad37e4346b806b5e6ac52e75ab2706cf48ebe7d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/aa135b4d99d22de7eb18b5a8aad37e4346b806b5e6ac52e75ab2706cf48ebe7d?s=96&d=mm&r=g","caption":"Anna Akinchyna"},"url":"https:\/\/www.sotec.eu\/en\/author\/a-akinchynasotec-eu\/"}]}},"_links":{"self":[{"href":"https:\/\/www.sotec.eu\/en\/wp-json\/wp\/v2\/posts\/4523","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.sotec.eu\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.sotec.eu\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.sotec.eu\/en\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sotec.eu\/en\/wp-json\/wp\/v2\/comments?post=4523"}],"version-history":[{"count":1,"href":"https:\/\/www.sotec.eu\/en\/wp-json\/wp\/v2\/posts\/4523\/revisions"}],"predecessor-version":[{"id":4527,"href":"https:\/\/www.sotec.eu\/en\/wp-json\/wp\/v2\/posts\/4523\/revisions\/4527"}],"wp:attachment":[{"href":"https:\/\/www.sotec.eu\/en\/wp-json\/wp\/v2\/media?parent=4523"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.sotec.eu\/en\/wp-json\/wp\/v2\/categories?post=4523"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.sotec.eu\/en\/wp-json\/wp\/v2\/tags?post=4523"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}