{"id":9,"date":"2016-06-24T16:25:21","date_gmt":"2016-06-24T16:25:21","guid":{"rendered":"http:\/\/hochsticher.de\/?p=8"},"modified":"2016-06-28T11:09:19","modified_gmt":"2016-06-28T11:09:19","slug":"report-your-cdp-neighbours","status":"publish","type":"post","link":"http:\/\/vblog.hochsticher.de\/?p=9","title":{"rendered":"Report your CDP Neighbours"},"content":{"rendered":"<p>Let&#8217;s\u00a0build a HTML-Report about the CDP Neighbours\u00a0of your ESXi Hosts.<\/p>\n<p><!--more--><\/p>\n<p>It looks like this:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-19\" src=\"https:\/\/test.hochsticher.de\/wp-content\/uploads\/2016\/06\/cdp-1-300x47.jpg\" alt=\"cdp\" width=\"715\" height=\"112\" srcset=\"http:\/\/vblog.hochsticher.de\/wp-content\/uploads\/2016\/06\/cdp-1-300x47.jpg 300w, http:\/\/vblog.hochsticher.de\/wp-content\/uploads\/2016\/06\/cdp-1-768x119.jpg 768w, http:\/\/vblog.hochsticher.de\/wp-content\/uploads\/2016\/06\/cdp-1-1024x159.jpg 1024w, http:\/\/vblog.hochsticher.de\/wp-content\/uploads\/2016\/06\/cdp-1-1200x186.jpg 1200w, http:\/\/vblog.hochsticher.de\/wp-content\/uploads\/2016\/06\/cdp-1.jpg 1655w\" sizes=\"auto, (max-width: 715px) 100vw, 715px\" \/><\/p>\n<p>You can see your VMhost, VMNic, etc. in a HTML Output<\/p>\n<pre class=\"lang:ps decode:true\"># Creator Christoph Hochsticher 04.09.2015\r\n# 13.05.2016 Changed to function\r\n\r\n\r\n############################################################\r\n# Creates a HTML Output with CDP informations of your hosts#\r\n############################################################\r\n\r\n# Load VMware Snapin\r\nAdd-PSSnapin VMware.VimAutomation.Core\r\n\r\n#Connect vCenter Server\r\nConnect-VIServer -server yourvcenter -User administrator@vsphere.local -password yourpassword\r\n\r\n\r\n#Define Var\r\n$path = \t'L:HTML-ReportsCDP-InfoCSVCDP-Info-' + (Get-Date -Format yyyy-MM-dd) + '.csv'\r\n$htmlfile = 'L:HTML-ReportsCDP-Infoolder-reportsCDP-Info-' + (Get-Date -Format yyyy-MM-dd) + '.html'\r\n$htmlfile2 = 'L:HTML-ReportsCDP-InfoCDP-Info-latest' + '.html'\r\n$date = Get-Date\r\n$logo = '&lt;img src=\"http:\/\/your-logo.svg\" alt=\"\" align=\"right\"&gt;'\r\n\r\n#html custom\r\n$custom = '&lt;style&gt;\r\nBODY{background-color:#A4D7D2;}\r\n\r\nTABLE{border-width:1px; border-style:solid; border-color:black; border-collapse:collapse;}\r\nTH{border-width:1px; padding:0px; border-style:solid; border-color:black;}\r\nTD{border-width:1px; padding:0px; border-style:solid; border-color:black;}\r\n&lt;\/style&gt;'\r\n\r\n\r\n#function get-cdp info\r\nfunction Get-Cdpinfo\r\n{\r\n  &lt;#\r\n      .SYNOPSIS\r\n      Short Description\r\n      .DESCRIPTION\r\n      Detailed Description\r\n      .EXAMPLE\r\n      Get-cdpinfo esxhost\r\n      Get-cdpinfo *\r\n      explains how to use the command\r\n      can be multiple lines\r\n      .EXAMPLE\r\n      Get-cdpinfo\r\n      another example\r\n      can have as many examples as you like\r\n  #&gt;\r\n  param\r\n  (\r\n    [Parameter(Mandatory=$true)]\r\n  \r\n    $VMHost\r\n  \r\n  )\r\n  $vmh = Get-VMHost $VMHost\r\n  Get-View $vmh.ID | `\r\n  % { $esxname = $_.Name; Get-View $_.ConfigManager.NetworkSystem} | `\r\n  % { foreach ($physnic in $_.NetworkInfo.Pnic) {\r\n      $pnicInfo = $_.QueryNetworkHint($physnic.Device)\r\n      foreach( $hint in $pnicInfo ){\r\n        # Write-Host $esxname $physnic.Device\r\n        if ( $hint.ConnectedSwitchPort ) {\r\n          $hint.ConnectedSwitchPort | Select-Object @{n='VMHost';e={$esxname}},@{n='VMNic';e={$physnic.Device}},DevId,Address,PortId,HardwarePlatform,Location,MgmtAddr,SoftwareVersion,SystemName\r\n        }\r\n        else {\r\n          \r\n        }\r\n      }\r\n    }\r\n  }\r\n}\r\n\r\n$tmp = (Get-Cdpinfo -vmhost *) \r\n\r\n#Export to CSV &amp; HTML\r\n$tmp | export-csv $path\r\n$tmp | sort-object 'VMHost' | ConvertTo-Html -Title 'CDP-Info' -Body \"&lt;H2&gt; CDP-Info $logo &lt;\/H2&gt; &lt;br&gt; &lt;H3&gt;Reporting Date :$date &lt;\/H3&gt; $custom \" |Out-File $htmlfile\r\n\r\n#Copy for Archive\r\nCopy-Item $htmlfile $htmlfile2\r\n \r\nDisconnect-VIServer * -Confirm:$false<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Let&#8217;s\u00a0build a HTML-Report about the CDP Neighbours\u00a0of your ESXi Hosts.<\/p>\n","protected":false},"author":1,"featured_media":19,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"ngg_post_thumbnail":0,"footnotes":""},"categories":[4,5,7],"tags":[],"class_list":["post-9","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-powercli","category-reports","category-vsphere"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.1.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Let&#039;s build a HTML-Report about the CDP Neighbours of your ESXi Hosts. It looks like this: You can see your VMhost, VMNic, etc. in a HTML Output # Creator Christoph Hochsticher 04.09.2015 # 13.05.2016 Changed to function ############################################################ # Creates a HTML Output with CDP informations of your hosts# ############################################################ # Load VMware Snapin Add-PSSnapin VMware.VimAutomation.Core #Connect\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Christoph Hochsticher\"\/>\n\t<meta name=\"google-site-verification\" content=\"lo0g577VbySpy05Melx7kVchEKh4qiUJhEtBpOiRLg8\" \/>\n\t<link rel=\"canonical\" href=\"http:\/\/vblog.hochsticher.de\/?p=9\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.1.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Chris - vBlog - Blog about Virtualization\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Report your CDP Neighbours - Chris - vBlog\" \/>\n\t\t<meta property=\"og:description\" content=\"Let&#039;s build a HTML-Report about the CDP Neighbours of your ESXi Hosts. It looks like this: You can see your VMhost, VMNic, etc. in a HTML Output # Creator Christoph Hochsticher 04.09.2015 # 13.05.2016 Changed to function ############################################################ # Creates a HTML Output with CDP informations of your hosts# ############################################################ # Load VMware Snapin Add-PSSnapin VMware.VimAutomation.Core #Connect\" \/>\n\t\t<meta property=\"og:url\" content=\"http:\/\/vblog.hochsticher.de\/?p=9\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2016-06-24T16:25:21+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2016-06-28T11:09:19+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Report your CDP Neighbours - Chris - vBlog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Let&#039;s build a HTML-Report about the CDP Neighbours of your ESXi Hosts. It looks like this: You can see your VMhost, VMNic, etc. in a HTML Output # Creator Christoph Hochsticher 04.09.2015 # 13.05.2016 Changed to function ############################################################ # Creates a HTML Output with CDP informations of your hosts# ############################################################ # Load VMware Snapin Add-PSSnapin VMware.VimAutomation.Core #Connect\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=9#blogposting\",\"name\":\"Report your CDP Neighbours - Chris - vBlog\",\"headline\":\"Report your CDP Neighbours\",\"author\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?author=1#author\"},\"publisher\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"http:\\\/\\\/vblog.hochsticher.de\\\/wp-content\\\/uploads\\\/2016\\\/06\\\/cdp-1.jpg?wsr\",\"width\":1655,\"height\":257},\"datePublished\":\"2016-06-24T16:25:21+02:00\",\"dateModified\":\"2016-06-28T11:09:19+02:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=9#webpage\"},\"isPartOf\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=9#webpage\"},\"articleSection\":\"PowerCLI, Reports, vSphere\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=9#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\\\/\\\/vblog.hochsticher.de\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?cat=4#listItem\",\"name\":\"PowerCLI\"}},{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?cat=4#listItem\",\"position\":2,\"name\":\"PowerCLI\",\"item\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?cat=4\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=9#listItem\",\"name\":\"Report your CDP Neighbours\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=9#listItem\",\"position\":3,\"name\":\"Report your CDP Neighbours\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?cat=4#listItem\",\"name\":\"PowerCLI\"}}]},{\"@type\":\"Person\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?author=1#author\",\"url\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?author=1\",\"name\":\"Christoph Hochsticher\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=9#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d87fe995d7081d178014a72c729204792aff213f894bac1d28d0e0cc956c1171?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Christoph Hochsticher\"}},{\"@type\":\"WebPage\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=9#webpage\",\"url\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=9\",\"name\":\"Report your CDP Neighbours - Chris - vBlog\",\"description\":\"Let's build a HTML-Report about the CDP Neighbours of your ESXi Hosts. It looks like this: You can see your VMhost, VMNic, etc. in a HTML Output # Creator Christoph Hochsticher 04.09.2015 # 13.05.2016 Changed to function ############################################################ # Creates a HTML Output with CDP informations of your hosts# ############################################################ # Load VMware Snapin Add-PSSnapin VMware.VimAutomation.Core #Connect\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/#website\"},\"breadcrumb\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=9#breadcrumblist\"},\"author\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?author=1#author\"},\"creator\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?author=1#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"http:\\\/\\\/vblog.hochsticher.de\\\/wp-content\\\/uploads\\\/2016\\\/06\\\/cdp-1.jpg?wsr\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=9\\\/#mainImage\",\"width\":1655,\"height\":257},\"primaryImageOfPage\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/?p=9#mainImage\"},\"datePublished\":\"2016-06-24T16:25:21+02:00\",\"dateModified\":\"2016-06-28T11:09:19+02:00\"},{\"@type\":\"WebSite\",\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/#website\",\"url\":\"http:\\\/\\\/vblog.hochsticher.de\\\/\",\"name\":\"Chris - vBlog\",\"description\":\"Blog about Virtualization\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"http:\\\/\\\/vblog.hochsticher.de\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Report your CDP Neighbours - Chris - vBlog","description":"Let's build a HTML-Report about the CDP Neighbours of your ESXi Hosts. It looks like this: You can see your VMhost, VMNic, etc. in a HTML Output # Creator Christoph Hochsticher 04.09.2015 # 13.05.2016 Changed to function ############################################################ # Creates a HTML Output with CDP informations of your hosts# ############################################################ # Load VMware Snapin Add-PSSnapin VMware.VimAutomation.Core #Connect","canonical_url":"http:\/\/vblog.hochsticher.de\/?p=9","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"lo0g577VbySpy05Melx7kVchEKh4qiUJhEtBpOiRLg8","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"http:\/\/vblog.hochsticher.de\/?p=9#blogposting","name":"Report your CDP Neighbours - Chris - vBlog","headline":"Report your CDP Neighbours","author":{"@id":"http:\/\/vblog.hochsticher.de\/?author=1#author"},"publisher":{"@id":"http:\/\/vblog.hochsticher.de\/#person"},"image":{"@type":"ImageObject","url":"http:\/\/vblog.hochsticher.de\/wp-content\/uploads\/2016\/06\/cdp-1.jpg?wsr","width":1655,"height":257},"datePublished":"2016-06-24T16:25:21+02:00","dateModified":"2016-06-28T11:09:19+02:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"http:\/\/vblog.hochsticher.de\/?p=9#webpage"},"isPartOf":{"@id":"http:\/\/vblog.hochsticher.de\/?p=9#webpage"},"articleSection":"PowerCLI, Reports, vSphere"},{"@type":"BreadcrumbList","@id":"http:\/\/vblog.hochsticher.de\/?p=9#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"http:\/\/vblog.hochsticher.de#listItem","position":1,"name":"Home","item":"http:\/\/vblog.hochsticher.de","nextItem":{"@type":"ListItem","@id":"http:\/\/vblog.hochsticher.de\/?cat=4#listItem","name":"PowerCLI"}},{"@type":"ListItem","@id":"http:\/\/vblog.hochsticher.de\/?cat=4#listItem","position":2,"name":"PowerCLI","item":"http:\/\/vblog.hochsticher.de\/?cat=4","nextItem":{"@type":"ListItem","@id":"http:\/\/vblog.hochsticher.de\/?p=9#listItem","name":"Report your CDP Neighbours"},"previousItem":{"@type":"ListItem","@id":"http:\/\/vblog.hochsticher.de#listItem","name":"Home"}},{"@type":"ListItem","@id":"http:\/\/vblog.hochsticher.de\/?p=9#listItem","position":3,"name":"Report your CDP Neighbours","previousItem":{"@type":"ListItem","@id":"http:\/\/vblog.hochsticher.de\/?cat=4#listItem","name":"PowerCLI"}}]},{"@type":"Person","@id":"http:\/\/vblog.hochsticher.de\/?author=1#author","url":"http:\/\/vblog.hochsticher.de\/?author=1","name":"Christoph Hochsticher","image":{"@type":"ImageObject","@id":"http:\/\/vblog.hochsticher.de\/?p=9#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/d87fe995d7081d178014a72c729204792aff213f894bac1d28d0e0cc956c1171?s=96&d=mm&r=g","width":96,"height":96,"caption":"Christoph Hochsticher"}},{"@type":"WebPage","@id":"http:\/\/vblog.hochsticher.de\/?p=9#webpage","url":"http:\/\/vblog.hochsticher.de\/?p=9","name":"Report your CDP Neighbours - Chris - vBlog","description":"Let's build a HTML-Report about the CDP Neighbours of your ESXi Hosts. It looks like this: You can see your VMhost, VMNic, etc. in a HTML Output # Creator Christoph Hochsticher 04.09.2015 # 13.05.2016 Changed to function ############################################################ # Creates a HTML Output with CDP informations of your hosts# ############################################################ # Load VMware Snapin Add-PSSnapin VMware.VimAutomation.Core #Connect","inLanguage":"en-US","isPartOf":{"@id":"http:\/\/vblog.hochsticher.de\/#website"},"breadcrumb":{"@id":"http:\/\/vblog.hochsticher.de\/?p=9#breadcrumblist"},"author":{"@id":"http:\/\/vblog.hochsticher.de\/?author=1#author"},"creator":{"@id":"http:\/\/vblog.hochsticher.de\/?author=1#author"},"image":{"@type":"ImageObject","url":"http:\/\/vblog.hochsticher.de\/wp-content\/uploads\/2016\/06\/cdp-1.jpg?wsr","@id":"http:\/\/vblog.hochsticher.de\/?p=9\/#mainImage","width":1655,"height":257},"primaryImageOfPage":{"@id":"http:\/\/vblog.hochsticher.de\/?p=9#mainImage"},"datePublished":"2016-06-24T16:25:21+02:00","dateModified":"2016-06-28T11:09:19+02:00"},{"@type":"WebSite","@id":"http:\/\/vblog.hochsticher.de\/#website","url":"http:\/\/vblog.hochsticher.de\/","name":"Chris - vBlog","description":"Blog about Virtualization","inLanguage":"en-US","publisher":{"@id":"http:\/\/vblog.hochsticher.de\/#person"}}]},"og:locale":"en_US","og:site_name":"Chris - vBlog - Blog about Virtualization","og:type":"article","og:title":"Report your CDP Neighbours - Chris - vBlog","og:description":"Let's build a HTML-Report about the CDP Neighbours of your ESXi Hosts. It looks like this: You can see your VMhost, VMNic, etc. in a HTML Output # Creator Christoph Hochsticher 04.09.2015 # 13.05.2016 Changed to function ############################################################ # Creates a HTML Output with CDP informations of your hosts# ############################################################ # Load VMware Snapin Add-PSSnapin VMware.VimAutomation.Core #Connect","og:url":"http:\/\/vblog.hochsticher.de\/?p=9","article:published_time":"2016-06-24T16:25:21+00:00","article:modified_time":"2016-06-28T11:09:19+00:00","twitter:card":"summary_large_image","twitter:title":"Report your CDP Neighbours - Chris - vBlog","twitter:description":"Let's build a HTML-Report about the CDP Neighbours of your ESXi Hosts. It looks like this: You can see your VMhost, VMNic, etc. in a HTML Output # Creator Christoph Hochsticher 04.09.2015 # 13.05.2016 Changed to function ############################################################ # Creates a HTML Output with CDP informations of your hosts# ############################################################ # Load VMware Snapin Add-PSSnapin VMware.VimAutomation.Core #Connect"},"aioseo_meta_data":{"post_id":"9","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":"default","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,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2023-03-16 21:34:59","updated":"2025-06-03 20:30:59","seo_analyzer_scan_date":null,"focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"http:\/\/vblog.hochsticher.de\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"http:\/\/vblog.hochsticher.de\/?cat=4\" title=\"PowerCLI\">PowerCLI<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tReport your CDP Neighbours\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"http:\/\/vblog.hochsticher.de"},{"label":"PowerCLI","link":"http:\/\/vblog.hochsticher.de\/?cat=4"},{"label":"Report your CDP Neighbours","link":"http:\/\/vblog.hochsticher.de\/?p=9"}],"_links":{"self":[{"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=\/wp\/v2\/posts\/9","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=9"}],"version-history":[{"count":3,"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=\/wp\/v2\/posts\/9\/revisions"}],"predecessor-version":[{"id":112,"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=\/wp\/v2\/posts\/9\/revisions\/112"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=\/wp\/v2\/media\/19"}],"wp:attachment":[{"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=9"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=9"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/vblog.hochsticher.de\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=9"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}