{"id":48321,"date":"2024-05-13T05:38:01","date_gmt":"2024-05-13T05:38:01","guid":{"rendered":"https:\/\/www.hexnode.com\/mobile-device-management\/help\/?p=48321"},"modified":"2024-05-14T06:07:54","modified_gmt":"2024-05-14T06:07:54","slug":"script-to-install-python-on-windows-devices","status":"publish","type":"post","link":"https:\/\/www.hexnode.com\/mobile-device-management\/help\/script-to-install-python-on-windows-devices\/","title":{"rendered":"Script to install Python on Windows devices"},"content":{"rendered":"<p>Python is a powerful and versatile programming language with applications ranging from web development and data analysis to scientific computing and beyond.  <\/p>\n<p>In IT environments where Python is widely used, it&#8217;s crucial to ensure that all developers have the required version of Python installed for their specific projects. This not only prevents compatibility issues during collaborative projects but also guarantees that developers have access to the necessary features, bug fixes, security updates, and associated libraries or packages specific to that version. For example, a team or department may be working on a project that requires a specific Python version and associated libraries or packages. In such cases, using a different version of Python could lead to compatibility issues, potentially delaying the project and introducing errors. To ensure consistency across developer environments, IT administrators can utilize Hexnode&#8217;s <a href=\"https:\/\/www.hexnode.com\/mobile-device-management\/help\/executing-custom-scripts-for-windows\/\" target=\"_blank\" rel=\"noopener noreferrer\">Execute Custom Script<\/a> action to seamlessly install the required version of Python on Windows devices by executing the provided scripts. <\/p>\n    \t\t<div class=\"hts-messages hts-messages--danger  hts-messages--withtitle hts-messages--withicon \"   >\r\n    \t\t\t<span class=\"hts-messages__title\">Disclaimer:<\/span>    \t\t\t    \t\t\t\t<p>\r\n    \t\t\t\t\t<br \/>\nThe sample script provided below are adapted from third-party open source sites.<br \/>\n    \t\t\t\t<\/p>\r\n    \t\t\t    \t\t\t\r\n    \t\t<\/div><!-- \/.ht-shortcodes-messages -->\r\n    \t\t\n<h2>PowerShell script to install Python <\/h2>\n<div class=\"copy-code-download\">\n<pre class=\"theme:github font:monospace font-size:17 line-height:32 top-set:false bottom-set:false toolbar:1 show-plain:3 lang:default decode:true inline-margin:\" title=\"PowerShell script to install Python on Windows devices\"> \r\n# Define the Python version and download URL \r\n$pythonVersion = \"<version>\" \r\n$pythonDownloadUrl = \"https:\/\/www.python.org\/ftp\/python\/$pythonVersion\/python-$pythonVersion-amd64.exe\" \r\n  \r\n# Define the installation directory \r\n$installDir = \"C:\\Python\" \r\n  \r\n# Download Python installer \r\nInvoke-WebRequest -Uri $pythonDownloadUrl -OutFile \"$env:TEMP\\python-installer.exe\" \r\n  \r\n# Install Python silently \r\nStart-Process -FilePath \"$env:TEMP\\python-installer.exe\" -ArgumentList \"\/quiet\", \"InstallAllUsers=1\", \"PrependPath=1\", \"DefaultCustomInstall=1\", \"DefaultPath=$installDir\" -Wait \r\n  \r\n# Clean up \r\nRemove-Item \"$env:TEMP\\python-installer.exe\" -Force\r\n<\/pre>\n<\/div>\n<p>This PowerShell script begins by defining variables for the desired Python version and its download URL. The placeholder <b>&#8220;version&#8221;<\/b> can be replaced with the specific version number needed. Subsequently, the script defines the installation directory path. Utilizing the <b>Invoke-WebRequest<\/b> cmdlet, the script downloads the Python installer from the specified URL and saves it in a temporary directory. To ensure a silent installation without any user interface or interaction, the script employs the <b>Start-Process<\/b> cmdlet with the <b>\/quiet<\/b> argument. The script waits for the installation to finish using the <b>-Wait<\/b> parameter. It then cleans up by removing the downloaded Python installer from the temporary directory, bypassing confirmation prompts with the <b>-Force<\/b> parameter. <\/p>\n<h2>Batch script to install Python <\/h2>\n<div class=\"copy-code-download\">\n<pre class=\"theme:github font:monospace font-size:17 line-height:32 top-set:false bottom-set:false toolbar:1 show-plain:3 lang:default decode:true inline-margin:\" title=\"Batch script to install Python on Windows devices\"> \r\n@echo off   \r\n\r\nrem Define the Python version and download URL \r\nset \"pythonVersion=<version>\" \r\nset \"pythonDownloadUrl=https:\/\/www.python.org\/ftp\/python\/%pythonVersion%\/python-%pythonVersion%-amd64.exe\" \r\n  \r\nrem Define the installation directory \r\nset \"installDir=C:\\Python\" \r\n  \r\nrem Download Python installer \r\nbitsadmin.exe \/transfer \"PythonInstaller\" \"%pythonDownloadUrl%\" \"%TEMP%\\python-installer.exe\" \r\n  \r\nrem Install Python silently \r\n\"%TEMP%\\python-installer.exe\" \/quiet InstallAllUsers=1 PrependPath=1 DefaultCustomInstall=1 DefaultPath=%installDir% \/wait \r\n  \r\nrem Clean up \r\ndel \"%TEMP%\\python-installer.exe\" \/f \/q \r\n<\/pre>\n<\/div>\n<p>This batch script starts by defining variables for the desired Python version and its download URL. The placeholder <b>&#8220;version&#8221;<\/b> can be substituted with the specific version number needed. Next, the installation directory is defined. The script then employs the <b>bitsadmin.exe<\/b> command-line tool to download the Python installer from the specified URL to a temporary location. After the download is complete, the script executes the Python installer to install Python silently using the <b>\/quiet<\/b> argument. Finally, the script deletes the Python installer executable from the temporary location to clean up.  <\/p>\n<h2>What happens at the device end?<\/h2>\n<p>After executing the script, Python will be silently installed on the Windows device. At the device end, IT admins can use the <em>&#8220;python&#8221;<\/em> command in the PowerShell terminal to verify the installation of Python. This command checks if Python is installed and displays the installed Python version.  <\/p>\n<p><a href=\"https:\/\/cdn.hexnode.com\/mobile-device-management\/help\/wp-content\/uploads\/2024\/05\/Script-to-install-Python-can-be-verified-using-the-python-command-on-the-device-end.png\" target=\"_blank\" rel=\"noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.hexnode.com\/mobile-device-management\/help\/wp-content\/uploads\/2024\/05\/Script-to-install-Python-can-be-verified-using-the-python-command-on-the-device-end.png\"\ntitle=\"Script to install Python can be verified using the python command on the device end\" alt=\"The script to install Python on Windows devices can be validated by running the python command from the device\" width=\"750\" height=\"500\"><\/a><\/p>\n<p>Alternatively, IT admins can check the installed Python version by executing the following scripts:<\/p>\n<h3>PowerShell: <\/h3>\n<div class=\"copy-code-download\">\n<pre class=\"theme:github font:monospace font-size:17 line-height:32 top-set:false bottom-set:false toolbar:1 show-plain:3 lang:default decode:true inline-margin:\" title=\"PowerShell script to check the version of Python installed\"> \r\n# Check if python is installed \r\n$pythonInstalled = Get-Command python -ErrorAction SilentlyContinue   \r\nif ($pythonInstalled) { \r\n\r\n    # Get the Python version \r\n    $pythonVersion = python --version 2>&1 \r\n  \r\n    # Print the Python version \r\n    Write-Host \"Python version: $pythonVersion\" \r\n} else { \r\n    Write-Host \"Python is not installed on this device.\" \r\n} \r\n<\/pre>\n<\/div>\n<p>This PowerShell script checks for the presence of Python on a system by attempting to find the <b>python<\/b> command in the system&#8217;s PATH. If Python is installed, it retrieves its version using <b>python &#8211;version<\/b>. The script then prints the Python version to the console. If Python is not found, it displays a message indicating its absence. <\/p>\n<p><a href=\"https:\/\/cdn.hexnode.com\/mobile-device-management\/help\/wp-content\/uploads\/2024\/05\/Script-to-install-Python-on-Windows-shows-the-version-as-output.png\" target=\"_blank\" rel=\"noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.hexnode.com\/mobile-device-management\/help\/wp-content\/uploads\/2024\/05\/Script-to-install-Python-on-Windows-shows-the-version-as-output.png\" title=\"Script to install Python on Windows shows the version as output\" alt=\"After successfully executing the script to install Python on Windows, it shows the installed version as output in Hexnode\" width=\"750\" height=\"500\"><\/a><\/p>\n<h3>Batch:<\/h3>\n<div class=\"copy-code-download\">\n<pre class=\"theme:github font:monospace font-size:17 line-height:32 top-set:false bottom-set:false toolbar:1 show-plain:3 lang:default decode:true inline-margin:\" title=\"Batch script to check the version of Python installed\"> \r\n@echo off \r\n\r\nsetlocal   \r\nset \"python_exe=python\"   \r\n  \r\nREM Check if Python executable exists \r\nwhere %python_exe% >nul 2>nul \r\nif %errorlevel% neq 0 ( \r\n    echo Python is not installed on this device. \r\n    goto :eof \r\n) \r\n  \r\nREM Get Python version \r\nfor \/f \"tokens=*\" %%v in ('%python_exe% -V 2^>^&1') do set \"python_version=%%v\" \r\necho Python Version: %python_version%   \r\n\r\nendlocal \r\n<\/pre>\n<\/div>\n<p>This batch script first defines the variable <b>python_exe<\/b> as <em>&#8220;python&#8221;<\/em>, representing the Python executable name. It then checks if Python is installed by attempting to locate its executable using <b>where<\/b> command. If the executable is not found (i.e., the error level is not equal to 0), the script outputs a message indicating that Python is not installed. If Python is found, it retrieves its version using the <b>%python_exe% -V<\/b> command and displays it. <\/p>\n<p><a href=\"https:\/\/cdn.hexnode.com\/mobile-device-management\/help\/wp-content\/uploads\/2024\/05\/If-Python-isnt-installed-on-Windows-the-script-displays-an-error.png\" target=\"_blank\" rel=\"noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/cdn.hexnode.com\/mobile-device-management\/help\/wp-content\/uploads\/2024\/05\/If-Python-isnt-installed-on-Windows-the-script-displays-an-error.png\" title=\"If Python isn't installed on Windows, the script displays an error\" alt=\"If Python is not installed on Windows, an error message will be displayed when running the script\" width=\"750\" height=\"500\"><\/a><\/p>\n    \t\t<div class=\"hts-messages hts-messages--info  hts-messages--withtitle hts-messages--withicon \"   >\r\n    \t\t\t<span class=\"hts-messages__title\">Notes:<\/span>    \t\t\t    \t\t\t\t<p>\r\n    \t\t\t\t\t <\/p>\n<ul>\n<li>It is recommended to manually validate the script execution on a system before executing the action in bulk.<\/li>\n<li>Hexnode will not be responsible for any damage\/loss to the system on the behavior of the script.<\/li>\n<\/ul>\n<p>    \t\t\t\t<\/p>\r\n    \t\t\t    \t\t\t\r\n    \t\t<\/div><!-- \/.ht-shortcodes-messages -->\r\n    \t\t\n","protected":false},"excerpt":{"rendered":"<p>Python is a powerful and versatile programming language with applications ranging from web development and data analysis to scientific computing and beyond. In IT environments where Python is widely used, it&#8217;s crucial to ensure that all developers have the required version of Python installed for their specific projects. This not only prevents compatibility issues during [&hellip;]<\/p>\n","protected":false},"author":63,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"categories":[265,263],"tags":[419],"class_list":["post-48321","post","type-post","status-publish","format-standard","hentry","category-windows-sample-script-repository","category-sample-script-repository","tag-python"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Script to install Python on Windows devices - Hexnode Help Center<\/title>\n<meta name=\"description\" content=\"Looking to install Python on Windows devices? Check out our script that allows you to install Python seamlessly on your managed devices.\" \/>\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.hexnode.com\/mobile-device-management\/help\/script-to-install-python-on-windows-devices\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Script to install Python on Windows devices - Hexnode Help Center\" \/>\n<meta property=\"og:description\" content=\"Looking to install Python on Windows devices? Check out our script that allows you to install Python seamlessly on your managed devices.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hexnode.com\/mobile-device-management\/help\/script-to-install-python-on-windows-devices\/\" \/>\n<meta property=\"og:site_name\" content=\"Hexnode Help Center\" \/>\n<meta property=\"article:published_time\" content=\"2024-05-13T05:38:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-05-14T06:07:54+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.hexnode.com\/mobile-device-management\/help\/wp-content\/uploads\/2024\/05\/Script-to-install-Python-can-be-verified-using-the-python-command-on-the-device-end.png\" \/>\n<meta name=\"author\" content=\"aswin.animon\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"aswin.animon\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.hexnode.com\/mobile-device-management\/help\/script-to-install-python-on-windows-devices\/\",\"url\":\"https:\/\/www.hexnode.com\/mobile-device-management\/help\/script-to-install-python-on-windows-devices\/\",\"name\":\"Script to install Python on Windows devices - Hexnode Help Center\",\"isPartOf\":{\"@id\":\"https:\/\/www.hexnode.com\/mobile-device-management\/help\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.hexnode.com\/mobile-device-management\/help\/script-to-install-python-on-windows-devices\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.hexnode.com\/mobile-device-management\/help\/script-to-install-python-on-windows-devices\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.hexnode.com\/mobile-device-management\/help\/wp-content\/uploads\/2024\/05\/Script-to-install-Python-can-be-verified-using-the-python-command-on-the-device-end.png\",\"datePublished\":\"2024-05-13T05:38:01+00:00\",\"dateModified\":\"2024-05-14T06:07:54+00:00\",\"author\":{\"@id\":\"https:\/\/www.hexnode.com\/mobile-device-management\/help\/#\/schema\/person\/6757ae3c9da05aea37d7cbe102f0eb84\"},\"description\":\"Looking to install Python on Windows devices? Check out our script that allows you to install Python seamlessly on your managed devices.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.hexnode.com\/mobile-device-management\/help\/script-to-install-python-on-windows-devices\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.hexnode.com\/mobile-device-management\/help\/script-to-install-python-on-windows-devices\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.hexnode.com\/mobile-device-management\/help\/script-to-install-python-on-windows-devices\/#primaryimage\",\"url\":\"https:\/\/cdn.hexnode.com\/mobile-device-management\/help\/wp-content\/uploads\/2024\/05\/Script-to-install-Python-can-be-verified-using-the-python-command-on-the-device-end.png\",\"contentUrl\":\"https:\/\/cdn.hexnode.com\/mobile-device-management\/help\/wp-content\/uploads\/2024\/05\/Script-to-install-Python-can-be-verified-using-the-python-command-on-the-device-end.png\",\"width\":1225,\"height\":467,\"caption\":\"The script to install Python on Windows devices can be validated by running the python command from the device\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.hexnode.com\/mobile-device-management\/help\/script-to-install-python-on-windows-devices\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.hexnode.com\/mobile-device-management\/help\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Script to install Python on Windows devices\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.hexnode.com\/mobile-device-management\/help\/#website\",\"url\":\"https:\/\/www.hexnode.com\/mobile-device-management\/help\/\",\"name\":\"Hexnode Help Center\",\"description\":\"Mobile Device Management Help\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.hexnode.com\/mobile-device-management\/help\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.hexnode.com\/mobile-device-management\/help\/#\/schema\/person\/6757ae3c9da05aea37d7cbe102f0eb84\",\"name\":\"aswin.animon\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.hexnode.com\/mobile-device-management\/help\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d702c890ad412d182262aac6ccc0cdbba06158afdf8fa637ecab50f467b5166c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d702c890ad412d182262aac6ccc0cdbba06158afdf8fa637ecab50f467b5166c?s=96&d=mm&r=g\",\"caption\":\"aswin.animon\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Script to install Python on Windows devices - Hexnode Help Center","description":"Looking to install Python on Windows devices? Check out our script that allows you to install Python seamlessly on your managed devices.","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.hexnode.com\/mobile-device-management\/help\/script-to-install-python-on-windows-devices\/","og_locale":"en_US","og_type":"article","og_title":"Script to install Python on Windows devices - Hexnode Help Center","og_description":"Looking to install Python on Windows devices? Check out our script that allows you to install Python seamlessly on your managed devices.","og_url":"https:\/\/www.hexnode.com\/mobile-device-management\/help\/script-to-install-python-on-windows-devices\/","og_site_name":"Hexnode Help Center","article_published_time":"2024-05-13T05:38:01+00:00","article_modified_time":"2024-05-14T06:07:54+00:00","og_image":[{"url":"https:\/\/www.hexnode.com\/mobile-device-management\/help\/wp-content\/uploads\/2024\/05\/Script-to-install-Python-can-be-verified-using-the-python-command-on-the-device-end.png","type":"","width":"","height":""}],"author":"aswin.animon","twitter_card":"summary_large_image","twitter_misc":{"Written by":"aswin.animon","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.hexnode.com\/mobile-device-management\/help\/script-to-install-python-on-windows-devices\/","url":"https:\/\/www.hexnode.com\/mobile-device-management\/help\/script-to-install-python-on-windows-devices\/","name":"Script to install Python on Windows devices - Hexnode Help Center","isPartOf":{"@id":"https:\/\/www.hexnode.com\/mobile-device-management\/help\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.hexnode.com\/mobile-device-management\/help\/script-to-install-python-on-windows-devices\/#primaryimage"},"image":{"@id":"https:\/\/www.hexnode.com\/mobile-device-management\/help\/script-to-install-python-on-windows-devices\/#primaryimage"},"thumbnailUrl":"https:\/\/www.hexnode.com\/mobile-device-management\/help\/wp-content\/uploads\/2024\/05\/Script-to-install-Python-can-be-verified-using-the-python-command-on-the-device-end.png","datePublished":"2024-05-13T05:38:01+00:00","dateModified":"2024-05-14T06:07:54+00:00","author":{"@id":"https:\/\/www.hexnode.com\/mobile-device-management\/help\/#\/schema\/person\/6757ae3c9da05aea37d7cbe102f0eb84"},"description":"Looking to install Python on Windows devices? Check out our script that allows you to install Python seamlessly on your managed devices.","breadcrumb":{"@id":"https:\/\/www.hexnode.com\/mobile-device-management\/help\/script-to-install-python-on-windows-devices\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hexnode.com\/mobile-device-management\/help\/script-to-install-python-on-windows-devices\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hexnode.com\/mobile-device-management\/help\/script-to-install-python-on-windows-devices\/#primaryimage","url":"https:\/\/cdn.hexnode.com\/mobile-device-management\/help\/wp-content\/uploads\/2024\/05\/Script-to-install-Python-can-be-verified-using-the-python-command-on-the-device-end.png","contentUrl":"https:\/\/cdn.hexnode.com\/mobile-device-management\/help\/wp-content\/uploads\/2024\/05\/Script-to-install-Python-can-be-verified-using-the-python-command-on-the-device-end.png","width":1225,"height":467,"caption":"The script to install Python on Windows devices can be validated by running the python command from the device"},{"@type":"BreadcrumbList","@id":"https:\/\/www.hexnode.com\/mobile-device-management\/help\/script-to-install-python-on-windows-devices\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.hexnode.com\/mobile-device-management\/help\/"},{"@type":"ListItem","position":2,"name":"Script to install Python on Windows devices"}]},{"@type":"WebSite","@id":"https:\/\/www.hexnode.com\/mobile-device-management\/help\/#website","url":"https:\/\/www.hexnode.com\/mobile-device-management\/help\/","name":"Hexnode Help Center","description":"Mobile Device Management Help","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hexnode.com\/mobile-device-management\/help\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.hexnode.com\/mobile-device-management\/help\/#\/schema\/person\/6757ae3c9da05aea37d7cbe102f0eb84","name":"aswin.animon","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hexnode.com\/mobile-device-management\/help\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d702c890ad412d182262aac6ccc0cdbba06158afdf8fa637ecab50f467b5166c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d702c890ad412d182262aac6ccc0cdbba06158afdf8fa637ecab50f467b5166c?s=96&d=mm&r=g","caption":"aswin.animon"}}]}},"_links":{"self":[{"href":"https:\/\/www.hexnode.com\/mobile-device-management\/help\/wp-json\/wp\/v2\/posts\/48321","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hexnode.com\/mobile-device-management\/help\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hexnode.com\/mobile-device-management\/help\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hexnode.com\/mobile-device-management\/help\/wp-json\/wp\/v2\/users\/63"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hexnode.com\/mobile-device-management\/help\/wp-json\/wp\/v2\/comments?post=48321"}],"version-history":[{"count":9,"href":"https:\/\/www.hexnode.com\/mobile-device-management\/help\/wp-json\/wp\/v2\/posts\/48321\/revisions"}],"predecessor-version":[{"id":48367,"href":"https:\/\/www.hexnode.com\/mobile-device-management\/help\/wp-json\/wp\/v2\/posts\/48321\/revisions\/48367"}],"wp:attachment":[{"href":"https:\/\/www.hexnode.com\/mobile-device-management\/help\/wp-json\/wp\/v2\/media?parent=48321"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hexnode.com\/mobile-device-management\/help\/wp-json\/wp\/v2\/categories?post=48321"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hexnode.com\/mobile-device-management\/help\/wp-json\/wp\/v2\/tags?post=48321"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}