Skip to content

Commit

Permalink
Merge pull request #3 from gerhard84/master
Browse files Browse the repository at this point in the history
Updated AdhocAdam.WorkItemAssignmentPrevention.OOO.xml to fix issue #…
  • Loading branch information
AdhocAdam authored Nov 7, 2019
2 parents cef131e + d79ee74 commit 98bade2
Show file tree
Hide file tree
Showing 15 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Manifest>
<Identity>
<ID>AdhocAdam.WorkItemAssignmentPrevention.OOO</ID>
<Version>1.0.0.8</Version>
<Version>1.0.0.9</Version>
</Identity>
<Name>AdhocAdam.WorkItemAssignmentPrevention.OOO</Name>
<References>
Expand Down Expand Up @@ -105,13 +105,13 @@ $assignedToUsers = $assignedToUserRelationships | foreach-object {Get-SCSMObject
if (($assignedToUsers[0].OutOfOffice -eq $true) -and ($assignedToUsers[1]))
{
#New Assigned To is Out of the Office, Assign back to previous
Remove-SCSMRelationshipObject -SMObject $assignedToUserRelationships [0]
Remove-SCSMRelationshipObject -SMObject $assignedToUserRelationships[0]
New-SCSMRelationshipObject -Relationship $assignedToRelClass -Source $incident -Target $assignedToUsers[1] -bulk
}
if (($assignedToUsers[0].OutOfOffice -eq $true) -and !($assignedToUsers[1]))
{
#New Assigned To is Out of the Office AND Previous Analyst was never set
Remove-SCSMRelationshipObject -SMObject $assignedToUserRelationships [0]
Remove-SCSMRelationshipObject -SMObject $assignedToUserRelationships[0]
}</ScriptBody>
<SnapIns></SnapIns>
<Parameters>
Expand Down Expand Up @@ -151,19 +151,19 @@ if (($assignedToUsers[0].OutOfOffice -eq $true) -and !($assignedToUsers[1]))
import-module smlets
$srClass = Get-SCSMClass -name "System.WorkItem.ServiceRequest$"
$assignedToRelClass = Get-SCSMRelationshipClass "System.WorkItemAssignedToUser$"
$serviceRequest = Get-SCSMObject -class $irClass -filter "Name -eq '$Id'"
$serviceRequest = Get-SCSMObject -class $srClass -filter "Name -eq '$Id'"
$assignedToUserRelationships = Get-SCSMRelationshipObject -BySource $serviceRequest -Filter "relationshipid -eq '$($assignedToRelClass.id)'" | Sort-Object LastModified -descending | Select-Object -First 2
$assignedToUsers = $assignedToUserRelationships | foreach-object {Get-SCSMObject -id $_.TargetObject.Id}
if (($assignedToUsers[0].OutOfOffice -eq $true) -and ($assignedToUsers[1]))
{
#New Assigned To is Out of the Office, Assign back to previous
Remove-SCSMRelationshipObject -SMObject $assignedToUserRelationships [0]
Remove-SCSMRelationshipObject -SMObject $assignedToUserRelationships[0]
New-SCSMRelationshipObject -Relationship $assignedToRelClass -Source $serviceRequest -Target $assignedToUsers[1] -bulk
}
if (($assignedToUsers[0].OutOfOffice -eq $true) -and !($assignedToUsers[1]))
{
#New Assigned To is Out of the Office AND Previous Analyst was never set
Remove-SCSMRelationshipObject -SMObject $assignedToUserRelationships [0]
Remove-SCSMRelationshipObject -SMObject $assignedToUserRelationships[0]
}</ScriptBody>
<SnapIns></SnapIns>
<Parameters>
Expand Down Expand Up @@ -261,13 +261,13 @@ $assignedToUsers = $assignedToUserRelationships | foreach-object {Get-SCSMObject
if (($assignedToUsers[0].OutOfOffice -eq $true) -and ($assignedToUsers[1]))
{
#New Assigned To is Out of the Office, Assign back to previous
Remove-SCSMRelationshipObject -SMObject $assignedToUserRelationships [0]
Remove-SCSMRelationshipObject -SMObject $assignedToUserRelationships[0]
New-SCSMRelationshipObject -Relationship $assignedToRelClass -Source $changeRequest -Target $assignedToUsers[1] -bulk
}
if (($assignedToUsers[0].OutOfOffice -eq $true) -and !($assignedToUsers[1]))
{
#New Assigned To is Out of the Office AND Previous Analyst was never set
Remove-SCSMRelationshipObject -SMObject $assignedToUserRelationships [0]
Remove-SCSMRelationshipObject -SMObject $assignedToUserRelationships[0]
}</ScriptBody>
<SnapIns></SnapIns>
<Parameters>
Expand Down Expand Up @@ -313,13 +313,13 @@ $assignedToUsers = $assignedToUserRelationships | foreach-object {Get-SCSMObject
if (($assignedToUsers[0].OutOfOffice -eq $true) -and ($assignedToUsers[1]))
{
#New Assigned To is Out of the Office, Assign back to previous
Remove-SCSMRelationshipObject -SMObject $assignedToUserRelationships [0]
Remove-SCSMRelationshipObject -SMObject $assignedToUserRelationships[0]
New-SCSMRelationshipObject -Relationship $assignedToRelClass -Source $manualActivity -Target $assignedToUsers[1] -bulk
}
if (($assignedToUsers[0].OutOfOffice -eq $true) -and !($assignedToUsers[1]))
{
#New Assigned To is Out of the Office AND Previous Analyst was never set
Remove-SCSMRelationshipObject -SMObject $assignedToUserRelationships [0]
Remove-SCSMRelationshipObject -SMObject $assignedToUserRelationships[0]
}</ScriptBody>
<SnapIns></SnapIns>
<Parameters>
Expand Down
Binary file modified UnsealedManagementPacks/AdhocAdamOOOChangeRequest.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion UnsealedManagementPacks/AdhocAdamOOOChangeRequest.xoml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<SequentialWorkflowActivity x:Class="WorkflowAuthoring.AdhocAdamOOOChangeRequest" x:Name="AdhocAdamOOOChangeRequest" xmlns:ns0="clr-namespace:Microsoft.ServiceManager.WorkflowAuthoring.ActivityLibrary;Assembly=Microsoft.ServiceManager.WorkflowAuthoring.ActivityLibrary, Version=7.0.5000.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/workflow">
<ns0:WindowsPowerShellScript x:Name="ChangeRequestOOO" ScriptBody="import-module smlets&#xD;&#xA;$crClass = Get-SCSMClass -name &quot;System.WorkItem.ChangeRequest$&quot;&#xD;&#xA;$assignedToRelClass = Get-SCSMRelationshipClass &quot;System.WorkItemAssignedToUser$&quot;&#xD;&#xA;$changeRequest = Get-SCSMObject -class $crClass -filter &quot;Name -eq '$Id'&quot;&#xD;&#xA;$assignedToUserRelationships = Get-SCSMRelationshipObject -BySource $changeRequest -Filter &quot;relationshipid -eq '$($assignedToRelClass.id)'&quot; | Sort-Object LastModified -descending | Select-Object -First 2&#xD;&#xA;$assignedToUsers = $assignedToUserRelationships | foreach-object {Get-SCSMObject -id $_.TargetObject.Id}&#xD;&#xA;if (($assignedToUsers[0].OutOfOffice -eq $true) -and ($assignedToUsers[1]))&#xD;&#xA;{&#xD;&#xA; #New Assigned To is Out of the Office, Assign back to previous&#xD;&#xA; Remove-SCSMRelationshipObject -SMObject $assignedToUserRelationships [0]&#xD;&#xA; New-SCSMRelationshipObject -Relationship $assignedToRelClass -Source $changeRequest -Target $assignedToUsers[1] -bulk&#xD;&#xA;}&#xD;&#xA;if (($assignedToUsers[0].OutOfOffice -eq $true) -and !($assignedToUsers[1]))&#xD;&#xA;{&#xD;&#xA; #New Assigned To is Out of the Office AND Previous Analyst was never set&#xD;&#xA; Remove-SCSMRelationshipObject -SMObject $assignedToUserRelationships [0]&#xD;&#xA;}" TaskID="AdhocAdamOOOChangeRequest.WindowsPowerShellScript.a7a82f51_b251_4a83_94c4_54c10a165307" Description="PowerShell script that checks if new Assigned To on Change Request is OOO, otherwise reset back to previous state" SnapIns="{x:Null}" ScriptName="{x:Null}" PropertyToBind="{x:Null}" Parameter="{x:Null}">
<ns0:WindowsPowerShellScript x:Name="ChangeRequestOOO" ScriptBody="import-module smlets&#xD;&#xA;$crClass = Get-SCSMClass -name &quot;System.WorkItem.ChangeRequest$&quot;&#xD;&#xA;$assignedToRelClass = Get-SCSMRelationshipClass &quot;System.WorkItemAssignedToUser$&quot;&#xD;&#xA;$changeRequest = Get-SCSMObject -class $crClass -filter &quot;Name -eq '$Id'&quot;&#xD;&#xA;$assignedToUserRelationships = Get-SCSMRelationshipObject -BySource $changeRequest -Filter &quot;relationshipid -eq '$($assignedToRelClass.id)'&quot; | Sort-Object LastModified -descending | Select-Object -First 2&#xD;&#xA;$assignedToUsers = $assignedToUserRelationships | foreach-object {Get-SCSMObject -id $_.TargetObject.Id}&#xD;&#xA;if (($assignedToUsers[0].OutOfOffice -eq $true) -and ($assignedToUsers[1]))&#xD;&#xA;{&#xD;&#xA; #New Assigned To is Out of the Office, Assign back to previous&#xD;&#xA; Remove-SCSMRelationshipObject -SMObject $assignedToUserRelationships[0]&#xD;&#xA; New-SCSMRelationshipObject -Relationship $assignedToRelClass -Source $changeRequest -Target $assignedToUsers[1] -bulk&#xD;&#xA;}&#xD;&#xA;if (($assignedToUsers[0].OutOfOffice -eq $true) -and !($assignedToUsers[1]))&#xD;&#xA;{&#xD;&#xA; #New Assigned To is Out of the Office AND Previous Analyst was never set&#xD;&#xA; Remove-SCSMRelationshipObject -SMObject $assignedToUserRelationships[0]&#xD;&#xA;}" TaskID="AdhocAdamOOOChangeRequest.WindowsPowerShellScript.a7a82f51_b251_4a83_94c4_54c10a165307" Description="PowerShell script that checks if new Assigned To on Change Request is OOO, otherwise reset back to previous state" SnapIns="{x:Null}" ScriptName="{x:Null}" PropertyToBind="{x:Null}" Parameter="{x:Null}">
<ns0:WindowsPowerShellScript.Parameters>
<x:Array Type="{x:Type p7:ActivityParameter}" xmlns:p7="clr-namespace:Microsoft.ServiceManager.WorkflowAuthoring.Common;Assembly=Microsoft.ServiceManager.WorkflowAuthoring.Common, Version=7.0.5000.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
<ns1:ActivityParameter Key="ID" Value="Activity=AdhocAdamOOOChangeRequest, Path=ChangeRequestOOO_ID" BindPath="{ActivityBind AdhocAdamOOOChangeRequest,Path=ChangeRequestOOO_ID}" xmlns:ns1="clr-namespace:Microsoft.ServiceManager.WorkflowAuthoring.Common;Assembly=Microsoft.ServiceManager.WorkflowAuthoring.Common, Version=7.0.5000.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
Expand Down
Binary file modified UnsealedManagementPacks/AdhocAdamOOOChangeRequest.xomlx
Binary file not shown.
Binary file modified UnsealedManagementPacks/AdhocAdamOOOIncident.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion UnsealedManagementPacks/AdhocAdamOOOIncident.xoml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<SequentialWorkflowActivity x:Class="WorkflowAuthoring.AdhocAdamOOOIncident" x:Name="AdhocAdamOOOIncident" xmlns:ns0="clr-namespace:Microsoft.ServiceManager.WorkflowAuthoring.ActivityLibrary;Assembly=Microsoft.ServiceManager.WorkflowAuthoring.ActivityLibrary, Version=7.0.5000.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/workflow">
<ns0:WindowsPowerShellScript x:Name="IncidentOOO" ScriptBody="import-module smlets&#xD;&#xA;$irClass = Get-SCSMClass -name &quot;System.WorkItem.Incident$&quot;&#xD;&#xA;$assignedToRelClass = Get-SCSMRelationshipClass &quot;System.WorkItemAssignedToUser$&quot;&#xD;&#xA;$incident = Get-SCSMObject -class $irClass -filter &quot;Name -eq '$Id'&quot;&#xD;&#xA;$assignedToUserRelationships = Get-SCSMRelationshipObject -BySource $incident -Filter &quot;relationshipid -eq '$($assignedToRelClass.id)'&quot; | Sort-Object LastModified -descending | Select-Object -First 2&#xD;&#xA;$assignedToUsers = $assignedToUserRelationships | foreach-object {Get-SCSMObject -id $_.TargetObject.Id}&#xD;&#xA;if (($assignedToUsers[0].OutOfOffice -eq $true) -and ($assignedToUsers[1]))&#xD;&#xA;{&#xD;&#xA; #New Assigned To is Out of the Office, Assign back to previous&#xD;&#xA; Remove-SCSMRelationshipObject -SMObject $assignedToUserRelationships [0]&#xD;&#xA; New-SCSMRelationshipObject -Relationship $assignedToRelClass -Source $incident -Target $assignedToUsers[1] -bulk&#xD;&#xA;}&#xD;&#xA;if (($assignedToUsers[0].OutOfOffice -eq $true) -and !($assignedToUsers[1]))&#xD;&#xA;{&#xD;&#xA; #New Assigned To is Out of the Office AND Previous Analyst was never set&#xD;&#xA; Remove-SCSMRelationshipObject -SMObject $assignedToUserRelationships [0]&#xD;&#xA;}" TaskID="AdhocAdamOOOIncident.WindowsPowerShellScript.2c87db04_d882_4326_be6a_e8336b848877" Description="PowerShell script that checks if new Assigned To on Incident is OOO, otherwise reset back to previous state" SnapIns="{x:Null}" ScriptName="{x:Null}" PropertyToBind="{x:Null}" Parameter="{x:Null}">
<ns0:WindowsPowerShellScript x:Name="IncidentOOO" ScriptBody="import-module smlets&#xD;&#xA;$irClass = Get-SCSMClass -name &quot;System.WorkItem.Incident$&quot;&#xD;&#xA;$assignedToRelClass = Get-SCSMRelationshipClass &quot;System.WorkItemAssignedToUser$&quot;&#xD;&#xA;$incident = Get-SCSMObject -class $irClass -filter &quot;Name -eq '$Id'&quot;&#xD;&#xA;$assignedToUserRelationships = Get-SCSMRelationshipObject -BySource $incident -Filter &quot;relationshipid -eq '$($assignedToRelClass.id)'&quot; | Sort-Object LastModified -descending | Select-Object -First 2&#xD;&#xA;$assignedToUsers = $assignedToUserRelationships | foreach-object {Get-SCSMObject -id $_.TargetObject.Id}&#xD;&#xA;if (($assignedToUsers[0].OutOfOffice -eq $true) -and ($assignedToUsers[1]))&#xD;&#xA;{&#xD;&#xA; #New Assigned To is Out of the Office, Assign back to previous&#xD;&#xA; Remove-SCSMRelationshipObject -SMObject $assignedToUserRelationships[0]&#xD;&#xA; New-SCSMRelationshipObject -Relationship $assignedToRelClass -Source $incident -Target $assignedToUsers[1] -bulk&#xD;&#xA;}&#xD;&#xA;if (($assignedToUsers[0].OutOfOffice -eq $true) -and !($assignedToUsers[1]))&#xD;&#xA;{&#xD;&#xA; #New Assigned To is Out of the Office AND Previous Analyst was never set&#xD;&#xA; Remove-SCSMRelationshipObject -SMObject $assignedToUserRelationships[0]&#xD;&#xA;}" TaskID="AdhocAdamOOOIncident.WindowsPowerShellScript.2c87db04_d882_4326_be6a_e8336b848877" Description="PowerShell script that checks if new Assigned To on Incident is OOO, otherwise reset back to previous state" SnapIns="{x:Null}" ScriptName="{x:Null}" PropertyToBind="{x:Null}" Parameter="{x:Null}">
<ns0:WindowsPowerShellScript.Parameters>
<x:Array Type="{x:Type p7:ActivityParameter}" xmlns:p7="clr-namespace:Microsoft.ServiceManager.WorkflowAuthoring.Common;Assembly=Microsoft.ServiceManager.WorkflowAuthoring.Common, Version=7.0.5000.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
<ns1:ActivityParameter Key="ID" Value="Activity=AdhocAdamOOOIncident, Path=IncidentOOO_ID" BindPath="{ActivityBind AdhocAdamOOOIncident,Path=IncidentOOO_ID}" xmlns:ns1="clr-namespace:Microsoft.ServiceManager.WorkflowAuthoring.Common;Assembly=Microsoft.ServiceManager.WorkflowAuthoring.Common, Version=7.0.5000.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
Expand Down
Binary file modified UnsealedManagementPacks/AdhocAdamOOOIncident.xomlx
Binary file not shown.
Binary file modified UnsealedManagementPacks/AdhocAdamOOOManualActivity.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion UnsealedManagementPacks/AdhocAdamOOOManualActivity.xoml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<SequentialWorkflowActivity x:Class="WorkflowAuthoring.AdhocAdamOOOManualActivity" x:Name="AdhocAdamOOOManualActivity" xmlns:ns0="clr-namespace:Microsoft.ServiceManager.WorkflowAuthoring.ActivityLibrary;Assembly=Microsoft.ServiceManager.WorkflowAuthoring.ActivityLibrary, Version=7.0.5000.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/workflow">
<ns0:WindowsPowerShellScript x:Name="ManualActivityOOO" ScriptBody="import-module smlets&#xD;&#xA;$maClass = Get-SCSMClass -name &quot;System.WorkItem.Activity.ManualActivity$&quot;&#xD;&#xA;$assignedToRelClass = Get-SCSMRelationshipClass &quot;System.WorkItemAssignedToUser$&quot;&#xD;&#xA;$manualActivity = Get-SCSMObject -class $maClass -filter &quot;Name -eq '$Id'&quot;&#xD;&#xA;$assignedToUserRelationships = Get-SCSMRelationshipObject -BySource $manualActivity -Filter &quot;relationshipid -eq '$($assignedToRelClass.id)'&quot; | Sort-Object LastModified -descending | Select-Object -First 2&#xD;&#xA;$assignedToUsers = $assignedToUserRelationships | foreach-object {Get-SCSMObject -id $_.TargetObject.Id}&#xD;&#xA;if (($assignedToUsers[0].OutOfOffice -eq $true) -and ($assignedToUsers[1]))&#xD;&#xA;{&#xD;&#xA; #New Assigned To is Out of the Office, Assign back to previous&#xD;&#xA; Remove-SCSMRelationshipObject -SMObject $assignedToUserRelationships [0]&#xD;&#xA; New-SCSMRelationshipObject -Relationship $assignedToRelClass -Source $manualActivity -Target $assignedToUsers[1] -bulk&#xD;&#xA;}&#xD;&#xA;if (($assignedToUsers[0].OutOfOffice -eq $true) -and !($assignedToUsers[1]))&#xD;&#xA;{&#xD;&#xA; #New Assigned To is Out of the Office AND Previous Analyst was never set&#xD;&#xA; Remove-SCSMRelationshipObject -SMObject $assignedToUserRelationships [0]&#xD;&#xA;}" TaskID="AdhocAdamOOOManualActivity.WindowsPowerShellScript.b08c0d2b_0803_4a15_8283_c4e7ee69a87f" Description="PowerShell script that checks if new Assigned To on Manual Activity is OOO, otherwise reset back to previous state" SnapIns="{x:Null}" ScriptName="{x:Null}" PropertyToBind="{x:Null}" Parameter="{x:Null}">
<ns0:WindowsPowerShellScript x:Name="ManualActivityOOO" ScriptBody="import-module smlets&#xD;&#xA;$maClass = Get-SCSMClass -name &quot;System.WorkItem.Activity.ManualActivity$&quot;&#xD;&#xA;$assignedToRelClass = Get-SCSMRelationshipClass &quot;System.WorkItemAssignedToUser$&quot;&#xD;&#xA;$manualActivity = Get-SCSMObject -class $maClass -filter &quot;Name -eq '$Id'&quot;&#xD;&#xA;$assignedToUserRelationships = Get-SCSMRelationshipObject -BySource $manualActivity -Filter &quot;relationshipid -eq '$($assignedToRelClass.id)'&quot; | Sort-Object LastModified -descending | Select-Object -First 2&#xD;&#xA;$assignedToUsers = $assignedToUserRelationships | foreach-object {Get-SCSMObject -id $_.TargetObject.Id}&#xD;&#xA;if (($assignedToUsers[0].OutOfOffice -eq $true) -and ($assignedToUsers[1]))&#xD;&#xA;{&#xD;&#xA; #New Assigned To is Out of the Office, Assign back to previous&#xD;&#xA; Remove-SCSMRelationshipObject -SMObject $assignedToUserRelationships[0]&#xD;&#xA; New-SCSMRelationshipObject -Relationship $assignedToRelClass -Source $manualActivity -Target $assignedToUsers[1] -bulk&#xD;&#xA;}&#xD;&#xA;if (($assignedToUsers[0].OutOfOffice -eq $true) -and !($assignedToUsers[1]))&#xD;&#xA;{&#xD;&#xA; #New Assigned To is Out of the Office AND Previous Analyst was never set&#xD;&#xA; Remove-SCSMRelationshipObject -SMObject $assignedToUserRelationships[0]&#xD;&#xA;}" TaskID="AdhocAdamOOOManualActivity.WindowsPowerShellScript.b08c0d2b_0803_4a15_8283_c4e7ee69a87f" Description="PowerShell script that checks if new Assigned To on Manual Activity is OOO, otherwise reset back to previous state" SnapIns="{x:Null}" ScriptName="{x:Null}" PropertyToBind="{x:Null}" Parameter="{x:Null}">
<ns0:WindowsPowerShellScript.Parameters>
<x:Array Type="{x:Type p7:ActivityParameter}" xmlns:p7="clr-namespace:Microsoft.ServiceManager.WorkflowAuthoring.Common;Assembly=Microsoft.ServiceManager.WorkflowAuthoring.Common, Version=7.0.5000.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
<ns1:ActivityParameter Key="ID" Value="Activity=AdhocAdamOOOManualActivity, Path=ManualActivityOOO_ID" BindPath="{ActivityBind AdhocAdamOOOManualActivity,Path=ManualActivityOOO_ID}" xmlns:ns1="clr-namespace:Microsoft.ServiceManager.WorkflowAuthoring.Common;Assembly=Microsoft.ServiceManager.WorkflowAuthoring.Common, Version=7.0.5000.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
Expand Down
Binary file modified UnsealedManagementPacks/AdhocAdamOOOManualActivity.xomlx
Binary file not shown.
Binary file modified UnsealedManagementPacks/AdhocAdamOOOProblem.dll
Binary file not shown.
Binary file modified UnsealedManagementPacks/AdhocAdamOOOReleaseRecord.dll
Binary file not shown.
Binary file modified UnsealedManagementPacks/AdhocAdamOOOServiceRequest.dll
Binary file not shown.
Loading

0 comments on commit 98bade2

Please sign in to comment.