Warning: Declaration of WPSDAdminConfigAction::render() should be compatible with WPSDWPPlugin::render($ug_name, $ug_vars = Array, $action = NULL) in /var/www/web680/html/wp-content/plugins/wp-stats-dashboard/classes/action/WPSDAdminConfigAction.php on line 42

Warning: Cannot modify header information - headers already sent by (output started at /var/www/web680/html/wp-content/plugins/wp-stats-dashboard/classes/action/WPSDAdminConfigAction.php:42) in /var/www/web680/html/wp-includes/rest-api/class-wp-rest-server.php on line 1719

Warning: Cannot modify header information - headers already sent by (output started at /var/www/web680/html/wp-content/plugins/wp-stats-dashboard/classes/action/WPSDAdminConfigAction.php:42) in /var/www/web680/html/wp-includes/rest-api/class-wp-rest-server.php on line 1719

Warning: Cannot modify header information - headers already sent by (output started at /var/www/web680/html/wp-content/plugins/wp-stats-dashboard/classes/action/WPSDAdminConfigAction.php:42) in /var/www/web680/html/wp-includes/rest-api/class-wp-rest-server.php on line 1719

Warning: Cannot modify header information - headers already sent by (output started at /var/www/web680/html/wp-content/plugins/wp-stats-dashboard/classes/action/WPSDAdminConfigAction.php:42) in /var/www/web680/html/wp-includes/rest-api/class-wp-rest-server.php on line 1719

Warning: Cannot modify header information - headers already sent by (output started at /var/www/web680/html/wp-content/plugins/wp-stats-dashboard/classes/action/WPSDAdminConfigAction.php:42) in /var/www/web680/html/wp-includes/rest-api/class-wp-rest-server.php on line 1719

Warning: Cannot modify header information - headers already sent by (output started at /var/www/web680/html/wp-content/plugins/wp-stats-dashboard/classes/action/WPSDAdminConfigAction.php:42) in /var/www/web680/html/wp-includes/rest-api/class-wp-rest-server.php on line 1719

Warning: Cannot modify header information - headers already sent by (output started at /var/www/web680/html/wp-content/plugins/wp-stats-dashboard/classes/action/WPSDAdminConfigAction.php:42) in /var/www/web680/html/wp-includes/rest-api/class-wp-rest-server.php on line 1719

Warning: Cannot modify header information - headers already sent by (output started at /var/www/web680/html/wp-content/plugins/wp-stats-dashboard/classes/action/WPSDAdminConfigAction.php:42) in /var/www/web680/html/wp-includes/rest-api/class-wp-rest-server.php on line 1719
{"id":219,"date":"2013-11-21T17:55:11","date_gmt":"2013-11-21T15:55:11","guid":{"rendered":"http:\/\/localhost\/wordpress\/?p=219"},"modified":"2015-04-29T13:19:50","modified_gmt":"2015-04-29T11:19:50","slug":"219","status":"publish","type":"post","link":"http:\/\/securitynetwork.de\/blog\/2013\/11\/21\/219\/","title":{"rendered":"Lync Powershell auf lokalen Computer\/Server \u00f6ffnen!"},"content":{"rendered":"

Wenn du ein Script haben möchtest was dich remote auf deine Lync Server mit der Powershell verbindet dann ist dies eins für dich! <\/p>\n

hier kannst Du alle Lync Server eintragen, mit den Du Dich verbinden möchtest.<\/p>\n

 <\/p>\n

<\/span><\/p>\n

#So kannst du mit Credentials in einem PS-Script arbeiten. Achtung das PW wird mit dem ausführenden Benutzer verschlüsselt und kann nur von diesem gelesen werden.
\n#Einmalig muss das PW in ein File gespeichert werden<\/em><\/p>\n

<\/em><\/p>\n


\n<\/em> #read-host -AsSecureString | ConvertFrom-SecureString | Out-File "c:Scriptpass.txt"
\n<\/em>
\n[string] $MenuOption = "None"
\n[bool] $HasInternetAccess = ([Activator]::CreateInstance([Type]::GetTypeFromCLSID([Guid]'{DCB00C01-570F-4A9B-8D69-199FDBA5723B}‘)).IsConnectedToInternet)
\n[string] $Menu = @‘
\n<\/em>
\n    **********************************
\n    Lync Server 2013 – Remote Powershell Load script
\n    **********************************
\n<\/em>
\n    Please select an option from the choices below.
\n<\/em>
\n    Preinstallation steps
\n    ========================
\n    1) Fronent Server –> LyncPool01
\n    2) EdgeServer –> Lyncedge01
\n    3) SBA –> SBA01
\n<\/em>
\n    99)
\n‚@
\n$Menu += @‘
\n   
\n   
\n    99) Exit
\n<\/em>
\nSelect an option.. [1-99]?
\n‚@
\n<\/em><\/p>\n

<\/em><\/p>\n

# Bitte Variablen anpassen<\/font><\/em><\/p>\n

<\/em><\/p>\n

$DomainAccount = <DomainLyncAdminAccount><\/font>
\n<\/em>
\n<\/em> $lyncPool = "<FQDN für LyncPool oder lync Frontend><\/font>"
\n$Lyncedge01 = "<FQDN für LyncEdgeServer oder LyncEdgePool><\/font>"
\n<\/em> $SBA01 = "<FQDN für SBA><\/font>"<\/em><\/p>\n

<\/em><\/p>\n

# Programm
\nDo {
\n    if ($MenuOption -ne "None") {Write-Host "`nLast command: "$MenuOption -BackgroundColor Yellow -ForegroundColor black}
\n    $MenuOption = Read-Host $Menu
\n<\/em>
\n    switch ($MenuOption) {
\n        1    { # Fronent Server –> LyncPool01
\n            $username="$DomainAccount"
\n            $pass= cat c:Scriptpass.txt | ConvertTo-SecureString
\n            $credentials = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $username, $pass
\n            $session = New-PSSession -ConnectionURI “https:\/\/$lyncPool\/OcsPowershell” -Credential $credentials
\n            Import-PsSession $session
\n        }
\n        2    { # EdgeServer –> Lyncedge01
\n            $username="$DomainAccount"
\n            $pass= cat C:UserssplanerDocumentsPowershellpass.txt | ConvertTo-SecureString
\n            $credentials = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $username, $pass
\n            $session = New-PSSession -ConnectionURI “https:\/\/$Lyncedge01\/OcsPowershell” -Credential $credentials
\n            Import-PsSession $session
\n        }
\n        3    { # SBA –> SBA01
\n            $username="$DomainAccount"
\n            $pass= cat C:UserssplanerDocumentsPowershellpass.txt | ConvertTo-SecureString
\n            $credentials = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $username, $pass
\n            $session = New-PSSession -ConnectionURI “https:\/\/$SBA01\/OcsPowershell” -Credential $credentials
\n            Import-PsSession $session
\n        }
\n       default {
\n            Write-Host "You haven’t selected any of the available options."
\n        }
\n    }
\n} while ($MenuOption -ne 99)<\/em><\/p>\n

 <\/p>\n

 <\/p>\n","protected":false},"excerpt":{"rendered":"

Wenn du ein Script haben möchtest was dich remote auf deine Lync Server mit der Powershell verbindet dann ist dies eins für dich!  hier kannst Du alle Lync Server eintragen, mit den Du Dich verbinden möchtest.<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"spay_email":"","jetpack_publicize_message":"","jetpack_is_tweetstorm":false,"jetpack_publicize_feature_enabled":true},"categories":[2],"tags":[],"yoast_head":"\nLync Powershell auf lokalen Computer\/Server \u00f6ffnen! -<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/securitynetwork.de\/blog\/2013\/11\/21\/219\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Lync Powershell auf lokalen Computer\/Server \u00f6ffnen! -\" \/>\n<meta property=\"og:description\" content=\"Wenn du ein Script haben möchtest was dich remote auf deine Lync Server mit der Powershell verbindet dann ist dies eins für dich!  hier kannst Du alle Lync Server eintragen, mit den Du Dich verbinden möchtest.\" \/>\n<meta property=\"og:url\" content=\"http:\/\/securitynetwork.de\/blog\/2013\/11\/21\/219\/\" \/>\n<meta property=\"article:published_time\" content=\"2013-11-21T15:55:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2015-04-29T11:19:50+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary\" \/>\n<meta name=\"twitter:label1\" content=\"Verfasst von\" \/>\n\t<meta name=\"twitter:data1\" content=\"Stefan Planer\" \/>\n\t<meta name=\"twitter:label2\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebSite\",\"@id\":\"https:\/\/securitynetwork.de\/#website\",\"url\":\"https:\/\/securitynetwork.de\/\",\"name\":\"\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/securitynetwork.de\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"de-DE\"},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/securitynetwork.de\/blog\/2013\/11\/21\/219\/#webpage\",\"url\":\"http:\/\/securitynetwork.de\/blog\/2013\/11\/21\/219\/\",\"name\":\"Lync Powershell auf lokalen Computer\/Server \u00f6ffnen! -\",\"isPartOf\":{\"@id\":\"https:\/\/securitynetwork.de\/#website\"},\"datePublished\":\"2013-11-21T15:55:11+00:00\",\"dateModified\":\"2015-04-29T11:19:50+00:00\",\"author\":{\"@id\":\"https:\/\/securitynetwork.de\/#\/schema\/person\/0d9c415cfa591c7fee585b2ee1eded83\"},\"breadcrumb\":{\"@id\":\"http:\/\/securitynetwork.de\/blog\/2013\/11\/21\/219\/#breadcrumb\"},\"inLanguage\":\"de-DE\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/securitynetwork.de\/blog\/2013\/11\/21\/219\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/securitynetwork.de\/blog\/2013\/11\/21\/219\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startseite\",\"item\":\"https:\/\/securitynetwork.de\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Lync Powershell auf lokalen Computer\/Server \u00f6ffnen!\"}]},{\"@type\":\"Person\",\"@id\":\"https:\/\/securitynetwork.de\/#\/schema\/person\/0d9c415cfa591c7fee585b2ee1eded83\",\"name\":\"Stefan Planer\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de-DE\",\"@id\":\"https:\/\/securitynetwork.de\/#\/schema\/person\/image\/\",\"url\":\"http:\/\/0.gravatar.com\/avatar\/0dfaa4293cedcd93fc4560aa8992b329?s=96&d=mm&r=g\",\"contentUrl\":\"http:\/\/0.gravatar.com\/avatar\/0dfaa4293cedcd93fc4560aa8992b329?s=96&d=mm&r=g\",\"caption\":\"Stefan Planer\"},\"sameAs\":[\"http:\/\/Securitynetwork.de\"],\"url\":\"http:\/\/securitynetwork.de\/blog\/author\/splaner\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Lync Powershell auf lokalen Computer\/Server \u00f6ffnen! -","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":"http:\/\/securitynetwork.de\/blog\/2013\/11\/21\/219\/","og_locale":"de_DE","og_type":"article","og_title":"Lync Powershell auf lokalen Computer\/Server \u00f6ffnen! -","og_description":"Wenn du ein Script haben möchtest was dich remote auf deine Lync Server mit der Powershell verbindet dann ist dies eins für dich!  hier kannst Du alle Lync Server eintragen, mit den Du Dich verbinden möchtest.","og_url":"http:\/\/securitynetwork.de\/blog\/2013\/11\/21\/219\/","article_published_time":"2013-11-21T15:55:11+00:00","article_modified_time":"2015-04-29T11:19:50+00:00","twitter_card":"summary","twitter_misc":{"Verfasst von":"Stefan Planer","Gesch\u00e4tzte Lesezeit":"3 Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebSite","@id":"https:\/\/securitynetwork.de\/#website","url":"https:\/\/securitynetwork.de\/","name":"","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/securitynetwork.de\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"de-DE"},{"@type":"WebPage","@id":"http:\/\/securitynetwork.de\/blog\/2013\/11\/21\/219\/#webpage","url":"http:\/\/securitynetwork.de\/blog\/2013\/11\/21\/219\/","name":"Lync Powershell auf lokalen Computer\/Server \u00f6ffnen! -","isPartOf":{"@id":"https:\/\/securitynetwork.de\/#website"},"datePublished":"2013-11-21T15:55:11+00:00","dateModified":"2015-04-29T11:19:50+00:00","author":{"@id":"https:\/\/securitynetwork.de\/#\/schema\/person\/0d9c415cfa591c7fee585b2ee1eded83"},"breadcrumb":{"@id":"http:\/\/securitynetwork.de\/blog\/2013\/11\/21\/219\/#breadcrumb"},"inLanguage":"de-DE","potentialAction":[{"@type":"ReadAction","target":["http:\/\/securitynetwork.de\/blog\/2013\/11\/21\/219\/"]}]},{"@type":"BreadcrumbList","@id":"http:\/\/securitynetwork.de\/blog\/2013\/11\/21\/219\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Startseite","item":"https:\/\/securitynetwork.de\/"},{"@type":"ListItem","position":2,"name":"Lync Powershell auf lokalen Computer\/Server \u00f6ffnen!"}]},{"@type":"Person","@id":"https:\/\/securitynetwork.de\/#\/schema\/person\/0d9c415cfa591c7fee585b2ee1eded83","name":"Stefan Planer","image":{"@type":"ImageObject","inLanguage":"de-DE","@id":"https:\/\/securitynetwork.de\/#\/schema\/person\/image\/","url":"http:\/\/0.gravatar.com\/avatar\/0dfaa4293cedcd93fc4560aa8992b329?s=96&d=mm&r=g","contentUrl":"http:\/\/0.gravatar.com\/avatar\/0dfaa4293cedcd93fc4560aa8992b329?s=96&d=mm&r=g","caption":"Stefan Planer"},"sameAs":["http:\/\/Securitynetwork.de"],"url":"http:\/\/securitynetwork.de\/blog\/author\/splaner\/"}]}},"jetpack_featured_media_url":"","jetpack_publicize_connections":[],"jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/s5cZKo-219","jetpack_likes_enabled":true,"jetpack-related-posts":[{"id":166,"url":"http:\/\/securitynetwork.de\/blog\/2013\/11\/20\/166\/","url_meta":{"origin":219,"position":0},"title":"zu einen Lync Server verbinden!","date":"2013\/11\/20","format":false,"excerpt":"Mit diesem Script kannst du dich auf einen Lync Server verbinden, per Remote powershell. Ohne das du immer wieder das Passwort angeben musst.\u00a0 Als erstes musst du mit read-host -AsSecureString | ConvertFrom-SecureString | Out-File \"C:Users%userprofil%DocumentsPowershellpass.txt\" dein Passwort in deinem User Verzeichniss abspeichert!! Aber sei vorsichtig solange wie du an deinem\u2026","rel":"","context":"In "Script"","img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":3060,"url":"http:\/\/securitynetwork.de\/blog\/2015\/04\/04\/remote-call-control-mit-skype-for-business\/","url_meta":{"origin":219,"position":1},"title":"Remote Call Control mit Skype for Business","date":"2015\/04\/04","format":false,"excerpt":"Remote Call Control mit Skype for Business Client Nach der Installation f\u00e4llt auf dass der Skype for Business Client das Branding von Skype hat. Eine Funktion die in diesem Skype Branding wegf\u00e4llt ist \"RemoteCallControl\". Es ist dennoch m\u00f6glich mit Skype for Business \"Remote Call Control\" zu betreiben. Dazu muss in\u2026","rel":"","context":"In "Allgemein"","img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1598,"url":"http:\/\/securitynetwork.de\/blog\/2014\/10\/14\/check-your-lync-environment\/","url_meta":{"origin":219,"position":2},"title":"check your Lync environment","date":"2014\/10\/14","format":false,"excerpt":"Heute habe ich mal ein neues Modul f\u00fcr euch erstellt. Damit k\u00f6nnt ihr eure Lync Umgebung Testen! \u00a0Im ersten Teil des Scriptes m\u00fcsst ihr die Variable eintragen ######################################################################################### # Set Credential and Variable $Global:UserName1 =\"TestUser1\"\u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 # TestUser1 SamAccountName $Global:UserName2 =\"TestUser2\"\u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0 # TestUser2\u2026","rel":"","context":"In "Script"","img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":3133,"url":"http:\/\/securitynetwork.de\/blog\/2015\/04\/29\/lync_2013-persistent_chat_service_stoppt-after_20_minuten\/","url_meta":{"origin":219,"position":3},"title":"Lync 2013 persistent chat-service stoppt nach 20 minuten","date":"2015\/04\/29","format":false,"excerpt":"Im Event Log ist der Fehler mit der EventID 53503, LS Persistent Chat Server, dies k\u00f6nnte auf ein Problem deuten mit der Persistent Chat DB. Log Name: Lync Server Source: LS Persistent Chat Server Event ID: 53553 Level: Error Wenn dieser Fehler Auftritt m\u00fcssen sie die Konfiguration der \"Persistent Chat\"\u2026","rel":"","context":"In "Allgemein"","img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":3057,"url":"http:\/\/securitynetwork.de\/blog\/2015\/04\/04\/skype-for-business-servers-kommt\/","url_meta":{"origin":219,"position":4},"title":"Skype for Business-Servers kommt!!!","date":"2015\/04\/04","format":false,"excerpt":"Es ist nun offiziell: der Skype for Business Client kommt am 14. April mit einem Office Update. Das Meldete der offizielle BLOG Microsoft Office Blog ver\u00f6ffentlicht.\u00a0Eine Preview Version des Skype for Business Clients gibt es bereits\u00a0hier zum Download. \u00a0 Die Ver\u00f6ffentlichung des Skype for Business-Servers folgt am\u00a01. Mai!","rel":"","context":"In "Allgemein"","img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":3227,"url":"http:\/\/securitynetwork.de\/blog\/2018\/11\/29\/remove-delegate-from-sql-database\/","url_meta":{"origin":219,"position":5},"title":"Remove Delegate from SQL Database","date":"2018\/11\/29","format":false,"excerpt":"Remove all Delegate from Skype SQL Database \"RTCLocal\" We know that we have sometimes Problem with Delegates, we can\u00b4t read \/ Change \/ remove with sefautil.exe. I create a Script for this issue, this is very helpful If you have more delegate under \"Manage Calls from:\" and no other Chance\u2026","rel":"","context":"In "Script"","img":{"alt_text":"","src":"https:\/\/i0.wp.com\/securitynetwork.de\/wp-content\/uploads\/sites\/6\/2018\/11\/SFBDelegate-2.jpg?resize=350%2C200","width":350,"height":200},"classes":[]}],"_links":{"self":[{"href":"http:\/\/securitynetwork.de\/wp-json\/wp\/v2\/posts\/219"}],"collection":[{"href":"http:\/\/securitynetwork.de\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/securitynetwork.de\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/securitynetwork.de\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"http:\/\/securitynetwork.de\/wp-json\/wp\/v2\/comments?post=219"}],"version-history":[{"count":0,"href":"http:\/\/securitynetwork.de\/wp-json\/wp\/v2\/posts\/219\/revisions"}],"wp:attachment":[{"href":"http:\/\/securitynetwork.de\/wp-json\/wp\/v2\/media?parent=219"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/securitynetwork.de\/wp-json\/wp\/v2\/categories?post=219"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/securitynetwork.de\/wp-json\/wp\/v2\/tags?post=219"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}