{"id":194,"date":"2005-04-23T11:40:16","date_gmt":"2005-04-23T16:40:16","guid":{"rendered":"https:\/\/www.zubairalexander.com\/stage\/?p=194"},"modified":"2015-02-09T14:09:59","modified_gmt":"2015-02-09T22:09:59","slug":"display-a-list-of-processes-and-all-the-services-running-in-each-process","status":"publish","type":"post","link":"https:\/\/www.zubairalexander.com\/blog\/display-a-list-of-processes-and-all-the-services-running-in-each-process\/","title":{"rendered":"Display a list of processes and all the services running in each process"},"content":{"rendered":"<p>Do you know exactly which processes are running on your computer? What about all the services running in each of those processes? It&#8217;s important to know exactly which processes are running on your computer, not just for security reasons but also for troubleshooting. The problem is sometimes it&#8217;s hard to tell if a process is really needed or the service with which it&#8217;s associated. The example in the following script displays a list of processes and all the services running in each process. This script can be useful to determine not only the processes and the services running in those processes but also to determine the exact service that&#8217;s associated with each &#8220;svchost.exe&#8221; listed in the Task Manager. Here are a few examples to help you understand how this script can be useful.<\/p>\n<p>Let&#8217;s say your Task Manager shows you a process running called <strong>Rtvscan.exe<\/strong> with a Processor ID (PID) number 536. Running the script will show you the process ID 536 is associated with <strong>Symantec AntiVirus Client<\/strong>. Or you might see a process <strong>CDANTSRV.EXE<\/strong> with a certain PID number. The script will show you the process is part of <strong>C-DillaSrv<\/strong>, which is a part of MacroVision safeCast copy protection software. The service is used to provide software activation services and CD Key verification services for anti-piracy reasons and it is bundled with several products. It also increases the amount of popups you receive on your computer. Most people will disable this service, unless the service is required for certain games.<\/p>\n<p>You may have noticed several processes called svchost.exe, each with its own PID number. Running the script will show the exact services running under each of those processes. For example, one process may only be running Remote Procedure Call (RPC), while another svchost.exe could be running close to 30 different services. Once you know what processes and services are running, you may want to shut down the ones you don&#8217;t need.<\/p>\n<p><a href=\"https:\/\/www.zubairalexander.com\/blog\/wp-content\/uploads\/2005\/04\/Services.JPG\"><img decoding=\"async\" class=\"alignnone\" title=\"List of processes\" src=\"https:\/\/www.zubairalexander.com\/blog\/wp-content\/uploads\/2005\/04\/Services.JPG\" alt=\"\" width=\"719\" height=\"703\" \/><\/a><\/p>\n<p>Copy the contents of the following script to Notepad and save it with .vbs extension. To execute the file, logon to the computer with an Administrator account and double-click the filename.<\/p>\n<p><strong>set objIdDictionary = CreateObject(&#8220;Scripting.Dictionary&#8221;)<br \/>\nstrComputer = &#8220;.&#8221;<br \/>\nSet objWMIService = GetObject(&#8220;winmgmts:&#8221; &amp; &#8220;{impersonationLevel=impersonate}!\\\\&#8221; &amp; strComputer &amp; &#8220;\\root\\cimv2&#8221;)<br \/>\nSet colServices = objWMIService.ExecQuery (&#8220;Select * from Win32_Service Where State &lt;&gt; &#8216;Stopped'&#8221;)<br \/>\nFor Each objService in colServices<br \/>\nIf objIdDictionary.Exists(objService.ProcessID) Then<br \/>\nElse<br \/>\nobjIdDictionary.Add objService.ProcessID, objService.ProcessID<br \/>\nEnd If<br \/>\nNext<br \/>\ncolProcessIDs = objIdDictionary.Items<br \/>\nFor i = 0 to objIdDictionary.Count &#8211; 1<br \/>\nSet colServices = objWMIService.ExecQuery (&#8220;Select * from Win32_Service Where ProcessID = &#8216;&#8221; &amp; colProcessIDs(i) &amp; &#8220;&#8216;&#8221;)<br \/>\nWscript.Echo &#8220;Process ID: &#8221; &amp; colProcessIDs(i)<br \/>\nFor Each objService in colServices<br \/>\nWscript.Echo VbTab &amp; objService.DisplayName<br \/>\nNext<br \/>\nNext<\/strong><\/p>\n<p>This script is supported on Windows 2000\/XP\/2003. It is also supported on Windows NT 4.0 computers that have Windows Management Instrumentation (WMI) installed.<\/p>\n<hr \/>\n<p><span style=\"font-family: Verdana; font-size: xx-small;\">Copyright \u00a92005 Zubair Alexander. All rights reserved.<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Do you know exactly which processes are running on your computer? What about all the services running in each of those processes? It&#8217;s important to know exactly which processes are running on your computer, not just for security reasons but also for troubleshooting. The problem is sometimes it&#8217;s hard to tell if a process is [&hellip;]<\/p>\n","protected":false},"author":7,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[43,11,48,38,40],"tags":[],"class_list":["post-194","post","type-post","status-publish","format-standard","hentry","category-articles","category-tips-tricks","category-windows-2000","category-windows-2003","category-windows-xp"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"Do you know exactly which processes are running on your computer? What about all the services running in each of those processes? It&#039;s important to know exactly which processes are running on your computer, not just for security reasons but also for troubleshooting. The problem is sometimes it&#039;s hard to tell if a process is\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Zubair Alexander\"\/>\n\t<meta name=\"google-site-verification\" content=\"xUGSODobCBguuxTNOCWOCVwAIhfY39LLtYAQOmExYzw\" \/>\n\t<meta name=\"msvalidate.01\" content=\"65829CD0C3C810D64E58EA860413DB21\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.zubairalexander.com\/blog\/display-a-list-of-processes-and-all-the-services-running-in-each-process\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Alexander&#039;s Blog | Sharing knowledge with the global IT community since November 1, 2004\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Display a list of processes and all the services running in each process | Alexander&#039;s Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Do you know exactly which processes are running on your computer? What about all the services running in each of those processes? It&#039;s important to know exactly which processes are running on your computer, not just for security reasons but also for troubleshooting. The problem is sometimes it&#039;s hard to tell if a process is\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.zubairalexander.com\/blog\/display-a-list-of-processes-and-all-the-services-running-in-each-process\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/www.zubairalexander.com\/blog\/wp-content\/uploads\/2004\/11\/AlexandersBlog_logo_590x590.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/www.zubairalexander.com\/blog\/wp-content\/uploads\/2004\/11\/AlexandersBlog_logo_590x590.png\" \/>\n\t\t<meta property=\"og:image:width\" content=\"590\" \/>\n\t\t<meta property=\"og:image:height\" content=\"590\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2005-04-23T16:40:16+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2015-02-09T22:09:59+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@zubairalexander\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Display a list of processes and all the services running in each process | Alexander&#039;s Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Do you know exactly which processes are running on your computer? What about all the services running in each of those processes? It&#039;s important to know exactly which processes are running on your computer, not just for security reasons but also for troubleshooting. The problem is sometimes it&#039;s hard to tell if a process is\" \/>\n\t\t<meta name=\"twitter:creator\" content=\"@zubairalexander\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/www.zubairalexander.com\/blog\/wp-content\/uploads\/2004\/11\/AlexandersBlog_logo_590x590.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/display-a-list-of-processes-and-all-the-services-running-in-each-process\\\/#article\",\"name\":\"Display a list of processes and all the services running in each process | Alexander's Blog\",\"headline\":\"Display a list of processes and all the services running in each process\",\"author\":{\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/author\\\/sp_admin\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/wp-content\\\/uploads\\\/2005\\\/04\\\/Services.JPG\",\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/display-a-list-of-processes-and-all-the-services-running-in-each-process\\\/#articleImage\"},\"datePublished\":\"2005-04-23T11:40:16-07:00\",\"dateModified\":\"2015-02-09T14:09:59-08:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/display-a-list-of-processes-and-all-the-services-running-in-each-process\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/display-a-list-of-processes-and-all-the-services-running-in-each-process\\\/#webpage\"},\"articleSection\":\"Articles, Tips &#038; Tricks, Windows 2000, Windows 2003, Windows XP\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/display-a-list-of-processes-and-all-the-services-running-in-each-process\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/category\\\/tips-tricks\\\/#listItem\",\"name\":\"Tips &#038; Tricks\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/category\\\/tips-tricks\\\/#listItem\",\"position\":2,\"name\":\"Tips &#038; Tricks\",\"item\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/category\\\/tips-tricks\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/display-a-list-of-processes-and-all-the-services-running-in-each-process\\\/#listItem\",\"name\":\"Display a list of processes and all the services running in each process\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/display-a-list-of-processes-and-all-the-services-running-in-each-process\\\/#listItem\",\"position\":3,\"name\":\"Display a list of processes and all the services running in each process\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/category\\\/tips-tricks\\\/#listItem\",\"name\":\"Tips &#038; Tricks\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/#organization\",\"name\":\"Alexander's Blog\",\"description\":\"Sharing knowledge with the global IT community since November 1, 2004\",\"url\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/10\\\/AlexandersBlog_logo_590x590.jpg\",\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/display-a-list-of-processes-and-all-the-services-running-in-each-process\\\/#organizationLogo\"},\"image\":{\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/display-a-list-of-processes-and-all-the-services-running-in-each-process\\\/#organizationLogo\"},\"sameAs\":[\"https:\\\/\\\/twitter.com\\\/zubairalexander\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/zubairalexander\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/author\\\/sp_admin\\\/#author\",\"url\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/author\\\/sp_admin\\\/\",\"name\":\"Zubair Alexander\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/display-a-list-of-processes-and-all-the-services-running-in-each-process\\\/#webpage\",\"url\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/display-a-list-of-processes-and-all-the-services-running-in-each-process\\\/\",\"name\":\"Display a list of processes and all the services running in each process | Alexander's Blog\",\"description\":\"Do you know exactly which processes are running on your computer? What about all the services running in each of those processes? It's important to know exactly which processes are running on your computer, not just for security reasons but also for troubleshooting. The problem is sometimes it's hard to tell if a process is\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/display-a-list-of-processes-and-all-the-services-running-in-each-process\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/author\\\/sp_admin\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/author\\\/sp_admin\\\/#author\"},\"datePublished\":\"2005-04-23T11:40:16-07:00\",\"dateModified\":\"2015-02-09T14:09:59-08:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/\",\"name\":\"Alexander's Blog\",\"description\":\"Sharing knowledge with the global IT community since November 1, 2004\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.zubairalexander.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Display a list of processes and all the services running in each process | Alexander's Blog","description":"Do you know exactly which processes are running on your computer? What about all the services running in each of those processes? It's important to know exactly which processes are running on your computer, not just for security reasons but also for troubleshooting. The problem is sometimes it's hard to tell if a process is","canonical_url":"https:\/\/www.zubairalexander.com\/blog\/display-a-list-of-processes-and-all-the-services-running-in-each-process\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"xUGSODobCBguuxTNOCWOCVwAIhfY39LLtYAQOmExYzw","msvalidate.01":"65829CD0C3C810D64E58EA860413DB21","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.zubairalexander.com\/blog\/display-a-list-of-processes-and-all-the-services-running-in-each-process\/#article","name":"Display a list of processes and all the services running in each process | Alexander's Blog","headline":"Display a list of processes and all the services running in each process","author":{"@id":"https:\/\/www.zubairalexander.com\/blog\/author\/sp_admin\/#author"},"publisher":{"@id":"https:\/\/www.zubairalexander.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.zubairalexander.com\/blog\/wp-content\/uploads\/2005\/04\/Services.JPG","@id":"https:\/\/www.zubairalexander.com\/blog\/display-a-list-of-processes-and-all-the-services-running-in-each-process\/#articleImage"},"datePublished":"2005-04-23T11:40:16-07:00","dateModified":"2015-02-09T14:09:59-08:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.zubairalexander.com\/blog\/display-a-list-of-processes-and-all-the-services-running-in-each-process\/#webpage"},"isPartOf":{"@id":"https:\/\/www.zubairalexander.com\/blog\/display-a-list-of-processes-and-all-the-services-running-in-each-process\/#webpage"},"articleSection":"Articles, Tips &#038; Tricks, Windows 2000, Windows 2003, Windows XP"},{"@type":"BreadcrumbList","@id":"https:\/\/www.zubairalexander.com\/blog\/display-a-list-of-processes-and-all-the-services-running-in-each-process\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.zubairalexander.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.zubairalexander.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.zubairalexander.com\/blog\/category\/tips-tricks\/#listItem","name":"Tips &#038; Tricks"}},{"@type":"ListItem","@id":"https:\/\/www.zubairalexander.com\/blog\/category\/tips-tricks\/#listItem","position":2,"name":"Tips &#038; Tricks","item":"https:\/\/www.zubairalexander.com\/blog\/category\/tips-tricks\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.zubairalexander.com\/blog\/display-a-list-of-processes-and-all-the-services-running-in-each-process\/#listItem","name":"Display a list of processes and all the services running in each process"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.zubairalexander.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.zubairalexander.com\/blog\/display-a-list-of-processes-and-all-the-services-running-in-each-process\/#listItem","position":3,"name":"Display a list of processes and all the services running in each process","previousItem":{"@type":"ListItem","@id":"https:\/\/www.zubairalexander.com\/blog\/category\/tips-tricks\/#listItem","name":"Tips &#038; Tricks"}}]},{"@type":"Organization","@id":"https:\/\/www.zubairalexander.com\/blog\/#organization","name":"Alexander's Blog","description":"Sharing knowledge with the global IT community since November 1, 2004","url":"https:\/\/www.zubairalexander.com\/blog\/","logo":{"@type":"ImageObject","url":"https:\/\/www.zubairalexander.com\/blog\/wp-content\/uploads\/2020\/10\/AlexandersBlog_logo_590x590.jpg","@id":"https:\/\/www.zubairalexander.com\/blog\/display-a-list-of-processes-and-all-the-services-running-in-each-process\/#organizationLogo"},"image":{"@id":"https:\/\/www.zubairalexander.com\/blog\/display-a-list-of-processes-and-all-the-services-running-in-each-process\/#organizationLogo"},"sameAs":["https:\/\/twitter.com\/zubairalexander","https:\/\/www.linkedin.com\/in\/zubairalexander"]},{"@type":"Person","@id":"https:\/\/www.zubairalexander.com\/blog\/author\/sp_admin\/#author","url":"https:\/\/www.zubairalexander.com\/blog\/author\/sp_admin\/","name":"Zubair Alexander"},{"@type":"WebPage","@id":"https:\/\/www.zubairalexander.com\/blog\/display-a-list-of-processes-and-all-the-services-running-in-each-process\/#webpage","url":"https:\/\/www.zubairalexander.com\/blog\/display-a-list-of-processes-and-all-the-services-running-in-each-process\/","name":"Display a list of processes and all the services running in each process | Alexander's Blog","description":"Do you know exactly which processes are running on your computer? What about all the services running in each of those processes? It's important to know exactly which processes are running on your computer, not just for security reasons but also for troubleshooting. The problem is sometimes it's hard to tell if a process is","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.zubairalexander.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.zubairalexander.com\/blog\/display-a-list-of-processes-and-all-the-services-running-in-each-process\/#breadcrumblist"},"author":{"@id":"https:\/\/www.zubairalexander.com\/blog\/author\/sp_admin\/#author"},"creator":{"@id":"https:\/\/www.zubairalexander.com\/blog\/author\/sp_admin\/#author"},"datePublished":"2005-04-23T11:40:16-07:00","dateModified":"2015-02-09T14:09:59-08:00"},{"@type":"WebSite","@id":"https:\/\/www.zubairalexander.com\/blog\/#website","url":"https:\/\/www.zubairalexander.com\/blog\/","name":"Alexander's Blog","description":"Sharing knowledge with the global IT community since November 1, 2004","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.zubairalexander.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Alexander's Blog | Sharing knowledge with the global IT community since November 1, 2004","og:type":"article","og:title":"Display a list of processes and all the services running in each process | Alexander's Blog","og:description":"Do you know exactly which processes are running on your computer? What about all the services running in each of those processes? It's important to know exactly which processes are running on your computer, not just for security reasons but also for troubleshooting. The problem is sometimes it's hard to tell if a process is","og:url":"https:\/\/www.zubairalexander.com\/blog\/display-a-list-of-processes-and-all-the-services-running-in-each-process\/","og:image":"https:\/\/www.zubairalexander.com\/blog\/wp-content\/uploads\/2004\/11\/AlexandersBlog_logo_590x590.png","og:image:secure_url":"https:\/\/www.zubairalexander.com\/blog\/wp-content\/uploads\/2004\/11\/AlexandersBlog_logo_590x590.png","og:image:width":590,"og:image:height":590,"article:published_time":"2005-04-23T16:40:16+00:00","article:modified_time":"2015-02-09T22:09:59+00:00","twitter:card":"summary_large_image","twitter:site":"@zubairalexander","twitter:title":"Display a list of processes and all the services running in each process | Alexander's Blog","twitter:description":"Do you know exactly which processes are running on your computer? What about all the services running in each of those processes? It's important to know exactly which processes are running on your computer, not just for security reasons but also for troubleshooting. The problem is sometimes it's hard to tell if a process is","twitter:creator":"@zubairalexander","twitter:image":"https:\/\/www.zubairalexander.com\/blog\/wp-content\/uploads\/2004\/11\/AlexandersBlog_logo_590x590.png"},"aioseo_meta_data":{"post_id":"194","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":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_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"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,"location":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2020-12-21 04:01:20","updated":"2025-06-04 00:03:54","seo_analyzer_scan_date":null},"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/www.zubairalexander.com\/blog\/wp-json\/wp\/v2\/posts\/194","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.zubairalexander.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.zubairalexander.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.zubairalexander.com\/blog\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/www.zubairalexander.com\/blog\/wp-json\/wp\/v2\/comments?post=194"}],"version-history":[{"count":0,"href":"https:\/\/www.zubairalexander.com\/blog\/wp-json\/wp\/v2\/posts\/194\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.zubairalexander.com\/blog\/wp-json\/wp\/v2\/media?parent=194"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.zubairalexander.com\/blog\/wp-json\/wp\/v2\/categories?post=194"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.zubairalexander.com\/blog\/wp-json\/wp\/v2\/tags?post=194"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}