{"id":92,"date":"2013-08-21T11:57:30","date_gmt":"2013-08-21T09:57:30","guid":{"rendered":"http:\/\/ps.stefanrehwald.de\/?p=92"},"modified":"2013-08-21T12:06:28","modified_gmt":"2013-08-21T10:06:28","slug":"powershell-change-history-ars","status":"publish","type":"post","link":"https:\/\/ps.stefanrehwald.de\/?p=92","title":{"rendered":"PowerShell &#8211; Change History (ARS)"},"content":{"rendered":"<p style=\"text-align: justify;\">Die einfachste Variane ist, um sich mit dem Quest Service zu verbinden, mit Eingabe des Passwortes und Angabe des Benutzers.<\/p>\n<pre class=\"lang:ps decode:true\" title=\"Connect Script I\">$pw = read-host \"Enter password\" -AsSecureString\r\n$Username = \"Stefan.Rehwald\"\r\nconnect-qadService -Proxy -ConnectionAccount \"DOMAIN\\$Username\" -ConnectionPassword $pw<\/pre>\n<p>&nbsp;<\/p>\n<p style=\"text-align: justify;\">Hier eine sehr dynamische Variante, diese ermittelt den ausf\u00fchrenden Benutzer, sowie die aktuelle Domain. Es wird ein verschl\u00fcsseltes Textfile im Userprofile angelegt indem das Passwort gespeichert wird. Ist das File \u00e4lter als einen Tag, wird die Datei gel\u00f6scht und das Passwort muss erneut eingeben werden. So kann man sich bequem einen Tag lang ohne Passwort eingabe zum QAD Service verbinden.<\/p>\n<pre class=\"lang:ps decode:true\" title=\"Connect Script II\">#Domain \r\n$Domain = [System.DirectoryServices.ActiveDirectory.Domain]::GetCurrentDomain().Name\r\n#ausf\u00fchrender User\r\n$User = $Domain $env:USERNAME\r\n\r\n# Pr\u00fcfen ob das Passwort bereits hinterlegt ist \r\n# Der \\ muss in Hochkommas \"\\\", Gibt hier aber Probleme mit der Darstellung im Blog\r\nIf (Test-Path -Path $env:USERPROFILE+\\+$env:USERNAME.txt)\r\n{\r\n    $date = Get-Date\r\n    $date1dago = $date.AddDays(-1).Date\r\n\r\n    $filepath = \"$env:USERPROFILE\\$env:USERNAME.txt\"\r\n    $file = Get-ChildItem $filepath\r\n    if ($file.CreationTime.Date -lt $date1dago)\r\n    {\r\n          Remove-Item $file.PSPath\r\n          Read-Host \"Bitte das Passwort von $($User) eingeben\" -assecurestring | ConvertFrom-SecureString  | Out-File $env:USERPROFILE\\$env:USERNAME.txt\r\n    }\r\n\r\n    # Passwort ist hinterlegt.\r\n}\r\nelse\r\n{\r\n    Read-Host \"Bitte das Passwort von $($User) eingeben\" -assecurestring | ConvertFrom-SecureString  | Out-File $env:USERPROFILE\\$env:USERNAME.txt\r\n}\r\n#Passwort einlesen (as secure String)\r\n$Password = Get-Content $env:USERPROFILE\\$env:USERNAME.txt | ConvertTo-SecureString\r\n\r\n# Connection Change History\r\nconnect-qadService -Proxy -ConnectionAccount $User -ConnectionPassword $Password\r\n\r\n# Script start<\/pre>\n<p>&nbsp;<\/p>\n<p>rewe<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Die einfachste Variane ist, um sich mit dem Quest Service zu verbinden, mit Eingabe des Passwortes und Angabe des Benutzers. $pw = read-host &#8222;Enter password&#8220; -AsSecureString $Username = &#8222;Stefan.Rehwald&#8220; connect-qadService -Proxy -ConnectionAccount &#8222;DOMAIN\\$Username&#8220; -ConnectionPassword $pw &nbsp; Hier eine sehr dynamische &hellip; <a href=\"https:\/\/ps.stefanrehwald.de\/?p=92\">Weiterlesen <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":8,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[2,9],"tags":[137,139,138,132,131,135,140,142,128,134,143,133,141,130,129,136],"class_list":["post-92","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-powershell","category-snippet","tag-active-roles","tag-active-roles-server","tag-activeroles-server","tag-activesroles","tag-ars","tag-assecurestring","tag-change","tag-change-history","tag-connect-qadservice","tag-domain","tag-edms","tag-getcurrentdomain","tag-history","tag-qad-service","tag-qadservice","tag-read-host"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"Verbinden mit dem QAD Service um Eintr\u00e4ge in die Change History (EDMS) zu generieren.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Stefan Rehwald\"\/>\n\t<meta name=\"keywords\" content=\"connect-qadservice,qadservice,edms,qad service,ars,activesroles,getcurrentdomain,domain,assecurestring,read host,read-host,active roles,activeroles server,active roles server,change,history,change history,activesroles,edms,getcurrentdomain,qadservice\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/ps.stefanrehwald.de\/?p=92\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"de_DE\" \/>\n\t\t<meta property=\"og:site_name\" content=\"PowerShell Scripts | Eine Sammlung von PowerShell Snippets\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Verbinden mit dem QAD Service | PowerShell Scripts\" \/>\n\t\t<meta property=\"og:description\" content=\"Verbinden mit dem QAD Service um Eintr\u00e4ge in die Change History (EDMS) zu generieren.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/ps.stefanrehwald.de\/?p=92\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2013-08-21T09:57:30+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2013-08-21T10:06:28+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Verbinden mit dem QAD Service | PowerShell Scripts\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Verbinden mit dem QAD Service um Eintr\u00e4ge in die Change History (EDMS) zu generieren.\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/?p=92#article\",\"name\":\"Verbinden mit dem QAD Service | PowerShell Scripts\",\"headline\":\"PowerShell &#8211; Change History (ARS)\",\"author\":{\"@id\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/?author=2#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/wp-content\\\/uploads\\\/2013\\\/08\\\/logo_powershell.jpg\",\"width\":244,\"height\":191,\"caption\":\"PowerShell 3.0\"},\"datePublished\":\"2013-08-21T11:57:30+02:00\",\"dateModified\":\"2013-08-21T12:06:28+02:00\",\"inLanguage\":\"de-DE\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/?p=92#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/?p=92#webpage\"},\"articleSection\":\"PowerShell, Snippet, Active Roles, Active Roles Server, ActiveRoles Server, ActivesRoles, ARS, AsSecureString, Change, Change History, connect-qadService, Domain, EDMS, GetCurrentDomain, History, QAD Service, QADService, Read Host\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/?p=92#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/ps.stefanrehwald.de#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/ps.stefanrehwald.de\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/?cat=2#listItem\",\"name\":\"PowerShell\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/?cat=2#listItem\",\"position\":2,\"name\":\"PowerShell\",\"item\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/?cat=2\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/?cat=9#listItem\",\"name\":\"Snippet\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/ps.stefanrehwald.de#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/?cat=9#listItem\",\"position\":3,\"name\":\"Snippet\",\"item\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/?cat=9\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/?p=92#listItem\",\"name\":\"PowerShell &#8211; Change History (ARS)\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/?cat=2#listItem\",\"name\":\"PowerShell\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/?p=92#listItem\",\"position\":4,\"name\":\"PowerShell &#8211; Change History (ARS)\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/?cat=9#listItem\",\"name\":\"Snippet\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/#organization\",\"name\":\"PowerShell Scripts\",\"description\":\"Eine Sammlung von PowerShell Snippets\",\"url\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/?author=2#author\",\"url\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/?author=2\",\"name\":\"Stefan Rehwald\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/?p=92#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/00349957f89eb7edc5bfe4e8d19b2198e56cb63116c2a4ac8ba0e6b8b8b75451?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Stefan Rehwald\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/?p=92#webpage\",\"url\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/?p=92\",\"name\":\"Verbinden mit dem QAD Service | PowerShell Scripts\",\"description\":\"Verbinden mit dem QAD Service um Eintr\\u00e4ge in die Change History (EDMS) zu generieren.\",\"inLanguage\":\"de-DE\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/?p=92#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/?author=2#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/?author=2#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/wp-content\\\/uploads\\\/2013\\\/08\\\/logo_powershell.jpg\",\"@id\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/?p=92\\\/#mainImage\",\"width\":244,\"height\":191,\"caption\":\"PowerShell 3.0\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/?p=92#mainImage\"},\"datePublished\":\"2013-08-21T11:57:30+02:00\",\"dateModified\":\"2013-08-21T12:06:28+02:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/#website\",\"url\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/\",\"name\":\"PowerShell Scripts\",\"description\":\"Eine Sammlung von PowerShell Snippets\",\"inLanguage\":\"de-DE\",\"publisher\":{\"@id\":\"https:\\\/\\\/ps.stefanrehwald.de\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Verbinden mit dem QAD Service | PowerShell Scripts","description":"Verbinden mit dem QAD Service um Eintr\u00e4ge in die Change History (EDMS) zu generieren.","canonical_url":"https:\/\/ps.stefanrehwald.de\/?p=92","robots":"max-image-preview:large","keywords":"connect-qadservice,qadservice,edms,qad service,ars,activesroles,getcurrentdomain,domain,assecurestring,read host,read-host,active roles,activeroles server,active roles server,change,history,change history,activesroles,edms,getcurrentdomain,qadservice","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/ps.stefanrehwald.de\/?p=92#article","name":"Verbinden mit dem QAD Service | PowerShell Scripts","headline":"PowerShell &#8211; Change History (ARS)","author":{"@id":"https:\/\/ps.stefanrehwald.de\/?author=2#author"},"publisher":{"@id":"https:\/\/ps.stefanrehwald.de\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/ps.stefanrehwald.de\/wp-content\/uploads\/2013\/08\/logo_powershell.jpg","width":244,"height":191,"caption":"PowerShell 3.0"},"datePublished":"2013-08-21T11:57:30+02:00","dateModified":"2013-08-21T12:06:28+02:00","inLanguage":"de-DE","mainEntityOfPage":{"@id":"https:\/\/ps.stefanrehwald.de\/?p=92#webpage"},"isPartOf":{"@id":"https:\/\/ps.stefanrehwald.de\/?p=92#webpage"},"articleSection":"PowerShell, Snippet, Active Roles, Active Roles Server, ActiveRoles Server, ActivesRoles, ARS, AsSecureString, Change, Change History, connect-qadService, Domain, EDMS, GetCurrentDomain, History, QAD Service, QADService, Read Host"},{"@type":"BreadcrumbList","@id":"https:\/\/ps.stefanrehwald.de\/?p=92#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/ps.stefanrehwald.de#listItem","position":1,"name":"Home","item":"https:\/\/ps.stefanrehwald.de","nextItem":{"@type":"ListItem","@id":"https:\/\/ps.stefanrehwald.de\/?cat=2#listItem","name":"PowerShell"}},{"@type":"ListItem","@id":"https:\/\/ps.stefanrehwald.de\/?cat=2#listItem","position":2,"name":"PowerShell","item":"https:\/\/ps.stefanrehwald.de\/?cat=2","nextItem":{"@type":"ListItem","@id":"https:\/\/ps.stefanrehwald.de\/?cat=9#listItem","name":"Snippet"},"previousItem":{"@type":"ListItem","@id":"https:\/\/ps.stefanrehwald.de#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/ps.stefanrehwald.de\/?cat=9#listItem","position":3,"name":"Snippet","item":"https:\/\/ps.stefanrehwald.de\/?cat=9","nextItem":{"@type":"ListItem","@id":"https:\/\/ps.stefanrehwald.de\/?p=92#listItem","name":"PowerShell &#8211; Change History (ARS)"},"previousItem":{"@type":"ListItem","@id":"https:\/\/ps.stefanrehwald.de\/?cat=2#listItem","name":"PowerShell"}},{"@type":"ListItem","@id":"https:\/\/ps.stefanrehwald.de\/?p=92#listItem","position":4,"name":"PowerShell &#8211; Change History (ARS)","previousItem":{"@type":"ListItem","@id":"https:\/\/ps.stefanrehwald.de\/?cat=9#listItem","name":"Snippet"}}]},{"@type":"Organization","@id":"https:\/\/ps.stefanrehwald.de\/#organization","name":"PowerShell Scripts","description":"Eine Sammlung von PowerShell Snippets","url":"https:\/\/ps.stefanrehwald.de\/"},{"@type":"Person","@id":"https:\/\/ps.stefanrehwald.de\/?author=2#author","url":"https:\/\/ps.stefanrehwald.de\/?author=2","name":"Stefan Rehwald","image":{"@type":"ImageObject","@id":"https:\/\/ps.stefanrehwald.de\/?p=92#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/00349957f89eb7edc5bfe4e8d19b2198e56cb63116c2a4ac8ba0e6b8b8b75451?s=96&d=mm&r=g","width":96,"height":96,"caption":"Stefan Rehwald"}},{"@type":"WebPage","@id":"https:\/\/ps.stefanrehwald.de\/?p=92#webpage","url":"https:\/\/ps.stefanrehwald.de\/?p=92","name":"Verbinden mit dem QAD Service | PowerShell Scripts","description":"Verbinden mit dem QAD Service um Eintr\u00e4ge in die Change History (EDMS) zu generieren.","inLanguage":"de-DE","isPartOf":{"@id":"https:\/\/ps.stefanrehwald.de\/#website"},"breadcrumb":{"@id":"https:\/\/ps.stefanrehwald.de\/?p=92#breadcrumblist"},"author":{"@id":"https:\/\/ps.stefanrehwald.de\/?author=2#author"},"creator":{"@id":"https:\/\/ps.stefanrehwald.de\/?author=2#author"},"image":{"@type":"ImageObject","url":"https:\/\/ps.stefanrehwald.de\/wp-content\/uploads\/2013\/08\/logo_powershell.jpg","@id":"https:\/\/ps.stefanrehwald.de\/?p=92\/#mainImage","width":244,"height":191,"caption":"PowerShell 3.0"},"primaryImageOfPage":{"@id":"https:\/\/ps.stefanrehwald.de\/?p=92#mainImage"},"datePublished":"2013-08-21T11:57:30+02:00","dateModified":"2013-08-21T12:06:28+02:00"},{"@type":"WebSite","@id":"https:\/\/ps.stefanrehwald.de\/#website","url":"https:\/\/ps.stefanrehwald.de\/","name":"PowerShell Scripts","description":"Eine Sammlung von PowerShell Snippets","inLanguage":"de-DE","publisher":{"@id":"https:\/\/ps.stefanrehwald.de\/#organization"}}]},"og:locale":"de_DE","og:site_name":"PowerShell Scripts | Eine Sammlung von PowerShell Snippets","og:type":"article","og:title":"Verbinden mit dem QAD Service | PowerShell Scripts","og:description":"Verbinden mit dem QAD Service um Eintr\u00e4ge in die Change History (EDMS) zu generieren.","og:url":"https:\/\/ps.stefanrehwald.de\/?p=92","article:published_time":"2013-08-21T09:57:30+00:00","article:modified_time":"2013-08-21T10:06:28+00:00","twitter:card":"summary","twitter:title":"Verbinden mit dem QAD Service | PowerShell Scripts","twitter:description":"Verbinden mit dem QAD Service um Eintr\u00e4ge in die Change History (EDMS) zu generieren."},"aioseo_meta_data":{"post_id":"92","title":"Verbinden mit dem QAD Service | #site_title","description":"Verbinden mit dem QAD Service um Eintr\u00e4ge in die Change History (EDMS) zu generieren.","keywords":[{"label":"connect-qadService","value":"connect-qadService"},{"label":"QADService,EDMS","value":"QADService,EDMS"},{"label":"QAD Service","value":"QAD Service"},{"label":"ARS","value":"ARS"},{"label":"ActivesRoles,GetCurrentDomain","value":"ActivesRoles,GetCurrentDomain"},{"label":"Domain","value":"Domain"},{"label":"AsSecureString","value":"AsSecureString"},{"label":"Read Host","value":"Read Host"},{"label":"Read-Host","value":"Read-Host"},{"label":"Active Roles","value":"Active Roles"},{"label":"ActiveRoles Server","value":"ActiveRoles Server"},{"label":"Active Roles Server","value":"Active Roles Server"},{"label":"Change","value":"Change"},{"label":"History","value":"History"},{"label":"Change History","value":"Change History"}],"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":"Article","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,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2020-12-30 00:57:17","updated":"2025-10-06 09:18:03","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/ps.stefanrehwald.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=\"https:\/\/ps.stefanrehwald.de\/?cat=2\" title=\"PowerShell\">PowerShell<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/ps.stefanrehwald.de\/?cat=9\" title=\"Snippet\">Snippet<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tPowerShell \u2013 Change History (ARS)\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/ps.stefanrehwald.de"},{"label":"PowerShell","link":"https:\/\/ps.stefanrehwald.de\/?cat=2"},{"label":"Snippet","link":"https:\/\/ps.stefanrehwald.de\/?cat=9"},{"label":"PowerShell &#8211; Change History (ARS)","link":"https:\/\/ps.stefanrehwald.de\/?p=92"}],"jetpack_featured_media_url":"https:\/\/ps.stefanrehwald.de\/wp-content\/uploads\/2013\/08\/logo_powershell.jpg","jetpack_shortlink":"https:\/\/wp.me\/p3N2Ht-1u","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/ps.stefanrehwald.de\/index.php?rest_route=\/wp\/v2\/posts\/92","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ps.stefanrehwald.de\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ps.stefanrehwald.de\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ps.stefanrehwald.de\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/ps.stefanrehwald.de\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=92"}],"version-history":[{"count":6,"href":"https:\/\/ps.stefanrehwald.de\/index.php?rest_route=\/wp\/v2\/posts\/92\/revisions"}],"predecessor-version":[{"id":108,"href":"https:\/\/ps.stefanrehwald.de\/index.php?rest_route=\/wp\/v2\/posts\/92\/revisions\/108"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ps.stefanrehwald.de\/index.php?rest_route=\/wp\/v2\/media\/8"}],"wp:attachment":[{"href":"https:\/\/ps.stefanrehwald.de\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=92"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ps.stefanrehwald.de\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=92"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ps.stefanrehwald.de\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=92"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}