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/feed-rss2.php on line 8
SfB Archive - http://securitynetwork.de Thu, 29 Nov 2018 13:36:06 +0000 de-DE hourly 1 https://wordpress.org/?v=5.9.9 76978976 Remove Delegate from SQL Database http://securitynetwork.de/blog/2018/11/29/remove-delegate-from-sql-database/ http://securitynetwork.de/blog/2018/11/29/remove-delegate-from-sql-database/#respond Thu, 29 Nov 2018 13:36:06 +0000 http://securitynetwork.de/?p=3227 Remove all Delegate from Skype SQL Database „RTCLocal“ We know that we have sometimes Problem with Delegates, we can´t 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 to remove it, you can […]

Der Beitrag Remove Delegate from SQL Database erschien zuerst auf .

]]>
Remove all Delegate from Skype SQL Database „RTCLocal“

We know that we have sometimes Problem with Delegates, we can´t 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 to remove it, you can use this small script.

 

Example: Get-SFBDelegate -DelegatorSip test1@contoso.com -DelegateSIP Test2@contoso.com

SFBDelegate


function Get-SfBDelegate {
Param([Parameter(Mandatory=$True,Position=0)][string]$delegateSIP,
[Parameter(Mandatory=$True,Position=1)][string]$delegatorSIP)

$SFBPools = Get-CsService | sort identity |select identity
$table =@()
foreach ($SFBPool in $SFBPools.identity)
{
$split = $SFBPool.Split(„:“)
$table += @{‚Function‘ = $split[0];’FQDN’=$split[1]}
}
$out = $table.ForEach({[PSCustomObject]$}) | ?{$.Function -match „registrar“} | Group-Object -Property Function

$menu = @{}
$Fqdn = ($out.group | ?{$_.FQDN -match „pool“} | select fqdn -Unique).FQDN
if ($fqdn.Count -gt „1“){
for ($i=1;$i -le $FQDN.count; $i++) {
Write-Host “ $i. $($FQDN[$i-1])“
$menu.Add($i,($FQDN[$i]))
}
}
else{
for ($i=1;$i -le $FQDN.count; $i++) {
Write-Host “ $i. $($FQDN)“
$menu.Add($i,($FQDN[$i]))
}
}
[int]$ans = Read-Host ‚Enter selection‘
$selection = $menu.Item($ans)
$servers = (Get-CsComputer -Pool $selection).identity

###################################################################
#$Servers = (Get-CsComputer | Where-Object -Property Pool -Match $pool | Select-Object identity).identity

$array =@()

foreach ($server in $Servers){

$DelegateQuery = „Select * From rtc.dbo.Resource Where UserAtHost='$delegateSIP‚“
$DelegateResult= (Invoke-Sqlcmd -ServerInstance $Server\rtclocal -Query $DelegateQuery)
$DelegatorQuery= „Select * From rtc.dbo.Resource Where UserAtHost='$delegatorSIP‚“
$DelegatorResult= (Invoke-Sqlcmd -ServerInstance $Server\rtclocal -Query $DelegatorQuery)

$resourceID = $DelegatorResult.ResourceId
$DelegationQuery = „select * From [rtc].[dbo].[Delegate] Where DelegatorId = '$resourceID‚“
$DelegationResult =(Invoke-Sqlcmd -ServerInstance $Server\rtclocal -Query $DelegationQuery)

foreach ($Delegation in $DelegationResult){
$search = $Delegation.DelegateId
$SQLscript = „select * From rtc.dbo.Resource where ResourceId = '$search‚“
$return= (Invoke-Sqlcmd -ServerInstance $Server\rtclocal -Query $SQLscript)

if ($DelegateResult.ResourceId -notmatch $search){$toRemove = „yes“} else {$toRemove = „no“}

$Subscribs = New-Object psobject -Property @{DelegatorId = $Delegation.DelegatorId;
DelegatorSIP =$DelegatorResult.UserAtHost;
DelegateId = $Delegation.DelegateId;
DelegateSIP =$return.UserAtHost;
FrontendServer = $server;
toRemove = $toRemove}
$array += $Subscribs
}
}

($Global:array = $array)| sort toRemove | ft -a Delegator*, Delegate*, Front*, to*

if (!([string]::IsNullOrEmpty($Global:array))){

$n = „n“
$n = Read-Host -Prompt „Do you like to remove all with property toRemove = yes? Press y = yes, n = no“

if ($n -eq ‚y‘){
foreach ($arr in $array){
if ($arr -match „yes“) {
$removeDelegator = $arr.DelegatorId
$removeDelegate = $arr.DelegateId
$DeleteQuery =“Delete From [rtc].[dbo].[PromptedSubscriber] Where PublisherId = '$removeDelegator‚ AND SubscriberId = '$removeDelegate
Delete From [rtc].[dbo].[Delegate] Where DelegatorId = '$removeDelegator‚AND DelegateId = '$removeDelegate‚“

$server = $arr.FrontendServer+“\rtclocal“
Invoke-Sqlcmd -ServerInstance $server -Query $DeleteQuery -ErrorAction SilentlyContinue
Write-Output „DELETED !!“
$arr | ft -a
}

$SubscriberId | ft -a
}
}
}
else {Write-Host „we dont found Entrys for the delegator: $delegatorSIP and delegate: $delegateSIP „}

}# Remove Delegator in SQL DATABASE end

Der Beitrag Remove Delegate from SQL Database erschien zuerst auf .

]]>
http://securitynetwork.de/blog/2018/11/29/remove-delegate-from-sql-database/feed/ 0 3227
Skype for Business Resources http://securitynetwork.de/blog/2015/04/18/skype-for-business-resources/ http://securitynetwork.de/blog/2015/04/18/skype-for-business-resources/#respond Sat, 18 Apr 2015 10:15:14 +0000 http://securitynetwork.de/?p=3110 Endlich sind auch die ersten Informationen über Skype for Business „SfB“ da.   Hier sind einige Links für euch TechNet Documentation: https://technet.microsoft.com/en-us/library/gg398616.aspx Skype for Business change management and adoption: https://support.office.com/en-us/article/Skype-for-Business-change-management-and-adoption-d8d85da6-52e7-4819-8451-45c103fb5ccb?omkt=en-us&ui=en-US&rs=en-US&ad=US Skype for Business Protocol Workloads Poster: http://www.microsoft.com/en-us/download/details.aspx?id=46448 Skype for Business Client awareness and readiness resources: https://www.microsoft.com/en-us/download/details.aspx?id=46369 Skype for Business Solutions Catalog: http://partnersolutions.skypeforbusiness.com/solutionscatalog Skype for Business FAQs: https://products.office.com/en-US/skype-for-business/faqs TechNet Documentation: https://technet.microsoft.com/en-us/library/gg398616.aspx Skype for […]

Der Beitrag Skype for Business Resources erschien zuerst auf .

]]>

Endlich sind auch die ersten Informationen über Skype for Business „SfB“ da.

SkypeforBusinessLogo

 

Hier sind einige Links für euch

TechNet Documentation: https://technet.microsoft.com/en-us/library/gg398616.aspx

Skype for Business change management and adoption: https://support.office.com/en-us/article/Skype-for-Business-change-management-and-adoption-d8d85da6-52e7-4819-8451-45c103fb5ccb?omkt=en-us&ui=en-US&rs=en-US&ad=US

Skype for Business Protocol Workloads Poster: http://www.microsoft.com/en-us/download/details.aspx?id=46448

Skype for Business Client awareness and readiness resources: https://www.microsoft.com/en-us/download/details.aspx?id=46369

Skype for Business Solutions Catalog: http://partnersolutions.skypeforbusiness.com/solutionscatalog

Skype for Business FAQs: https://products.office.com/en-US/skype-for-business/faqs

TechNet Documentation: https://technet.microsoft.com/en-us/library/gg398616.aspx

Skype for Business change management and adoption: https://support.office.com/en-us/article/Skype-for-Business-change-management-and-adoption-d8d85da6-52e7-4819-8451-45c103fb5ccb?omkt=en-us&ui=en-US&rs=en-US&ad=US

Skype for Business Protocol Workloads Poster: http://www.microsoft.com/en-us/download/details.aspx?id=46448

Skype for Business Client awareness and readiness resources: https://www.microsoft.com/en-us/download/details.aspx?id=46369

Skype for Business Solutions Catalog: http://partnersolutions.skypeforbusiness.com/solutionscatalog

Skype for Business FAQs: https://products.office.com/en-US/skype-for-business/faqs

Wenn ich einen Link vergessen haben sollte, dann last es mich wissen und ich werde ihn hier hinzufügen.

Der Beitrag Skype for Business Resources erschien zuerst auf .

]]>
http://securitynetwork.de/blog/2015/04/18/skype-for-business-resources/feed/ 0 3110
Skype for Business-Servers kommt!!! http://securitynetwork.de/blog/2015/04/04/skype-for-business-servers-kommt/ http://securitynetwork.de/blog/2015/04/04/skype-for-business-servers-kommt/#respond Sat, 04 Apr 2015 10:59:59 +0000 http://securitynetwork.de/?p=3057 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öffentlicht. Eine Preview Version des Skype for Business Clients gibt es bereits hier zum Download.   Die Veröffentlichung des Skype for Business-Servers folgt am 1. Mai!

Der Beitrag Skype for Business-Servers kommt!!! erschien zuerst auf .

]]>

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öffentlicht. Eine Preview Version des Skype for Business Clients gibt es bereits hier zum Download.

 

Die Veröffentlichung des Skype for Business-Servers folgt am 1. Mai!

Der Beitrag Skype for Business-Servers kommt!!! erschien zuerst auf .

]]>
http://securitynetwork.de/blog/2015/04/04/skype-for-business-servers-kommt/feed/ 0 3057