Update 20231210

master
Stefan Hutter 2 years ago
parent 584a947572
commit 9ba127e7b6

Binary file not shown.

Binary file not shown.

@ -261,6 +261,11 @@ Public Class EDKB02DMSIL
Public Sub Archivierung_Verarbeitung()
w = New Microsoft.Office.Interop.Word.Application
x = New Microsoft.Office.Interop.Excel.Application
' 2012-12-16 DisplayAlert ausschalten
w.DisplayAlerts = False
x.DisplayAlerts = False
'Ende 2012-12-16 DisplayAlert ausschalten
PDebug("Standard verarbeiten", 1)
deleteTempFiles()
Dim dt As New DataTable
@ -323,11 +328,40 @@ Public Class EDKB02DMSIL
w.Quit(SaveChanges:=False)
'w = Nothing
x.Quit()
'2023-12-16 Anpassungen ReleaseComObject
Try
If w IsNot Nothing Then
System.Runtime.InteropServices.Marshal.ReleaseComObject(2)
End If
w = Nothing
Catch ex As Exception
'PDebug("Word ReleasecomObjekt Fehler: " + ex.Message, 1)
End Try
Try
If x IsNot Nothing Then
System.Runtime.InteropServices.Marshal.ReleaseComObject(2)
End If
x = Nothing
Catch ex As Exception
'PDebug("Excel ReleasecomObjekt Fehler: " + ex.Message, 1)
End Try
Try
GC.Collect()
Catch ex As Exception
PDebug("GC.Collect: " + ex.Message, 1)
End Try
' 2023-16-16 ende
'2023-12-16 urpsürnglich
'Marshal.ReleaseComObject(w)
'Marshal.ReleaseComObject(x)
'x = Nothing
Marshal.ReleaseComObject(w)
Marshal.ReleaseComObject(x)
x = Nothing
w = Nothing
'w = Nothing
'2023-12-16 ursprünglich Ende
If Parameters.KillCmd <> "" Then
Process.Start(Parameters.KillCmd)

@ -1,6 +1,6 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.32630.194
# Visual Studio Version 17
VisualStudioVersion = 17.5.33516.290
MinimumVisualStudioVersion = 10.0.40219.1
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "EDKB02DMS", "EDKB02DMS.vbproj", "{1607A887-77A7-475C-BDCC-81B033A314AD}"
EndProject
@ -10,6 +10,10 @@ Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "ILTest", "ILTest\ILTest.vbp
EndProject
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "EDOKA_IL_Manuell", "EDOKA_IL_Manuell\EDOKA_IL_Manuell.vbproj", "{27DD387D-0B52-44B2-B2E2-E2B0ED434098}"
EndProject
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "PDFCompression", "..\PDFCompression\PDFCompression.vbproj", "{F4314696-DB9A-4191-B134-42BE9F118D6E}"
EndProject
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "PowerShellTest", "..\PowerShellTest\PowerShellTest.vbproj", "{5588A52A-955B-4974-BBDD-8699540140D3}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@ -32,6 +36,14 @@ Global
{27DD387D-0B52-44B2-B2E2-E2B0ED434098}.Debug|Any CPU.Build.0 = Debug|Any CPU
{27DD387D-0B52-44B2-B2E2-E2B0ED434098}.Release|Any CPU.ActiveCfg = Release|Any CPU
{27DD387D-0B52-44B2-B2E2-E2B0ED434098}.Release|Any CPU.Build.0 = Release|Any CPU
{F4314696-DB9A-4191-B134-42BE9F118D6E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F4314696-DB9A-4191-B134-42BE9F118D6E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F4314696-DB9A-4191-B134-42BE9F118D6E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F4314696-DB9A-4191-B134-42BE9F118D6E}.Release|Any CPU.Build.0 = Release|Any CPU
{5588A52A-955B-4974-BBDD-8699540140D3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5588A52A-955B-4974-BBDD-8699540140D3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5588A52A-955B-4974-BBDD-8699540140D3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5588A52A-955B-4974-BBDD-8699540140D3}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

@ -17,3 +17,4 @@ E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\EDOKA_IL_Manuell\obj\Debug\ED
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\EDOKA_IL_Manuell\obj\Debug\EDOKA_IL_Manuell.xml
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\EDOKA_IL_Manuell\obj\Debug\EDOKA_IL_Manuell.pdb
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\EDOKA_IL_Manuell\obj\Debug\EDOKA_IL_Manuell.vbproj.AssemblyReference.cache
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\EDOKA_IL_Manuell\obj\Debug\EDOKA_IL_Manuell.vbproj.SuggestedBindingRedirects.cache

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

@ -12,3 +12,4 @@ E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\obj\Debug\ILTest.vbpro
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\obj\Debug\ILTest.exe
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\obj\Debug\ILTest.xml
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\obj\Debug\ILTest.pdb
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\ILTest\obj\Debug\ILTest.vbproj.SuggestedBindingRedirects.cache

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

@ -12,3 +12,4 @@ E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\Tester\obj\Debug\Tester.pdb
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\Tester\bin\Debug\Newtonsoft.Json.dll
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\Tester\obj\Debug\Tester.vbproj.CopyComplete
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\Tester\bin\Debug\Newtonsoft.Json.xml
E:\Software-Projekte\EDOKA\batch\EDKB08\EDKB02_DMS\Tester\obj\Debug\Tester.vbproj.SuggestedBindingRedirects.cache

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

@ -0,0 +1,303 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.PowerShell.Diagnostics.Activities</name>
</assembly>
<members>
<member name="T:Microsoft.PowerShell.Diagnostics.Activities.ExportCounter">
<summary>
Activity to invoke the Microsoft.PowerShell.Diagnostics\Export-Counter command in a Workflow.
</summary>
</member>
<member name="M:Microsoft.PowerShell.Diagnostics.Activities.ExportCounter.#ctor">
<summary>
Gets the display name of the command invoked by this activity.
</summary>
</member>
<member name="M:Microsoft.PowerShell.Diagnostics.Activities.ExportCounter.GetPowerShell(System.Activities.NativeActivityContext)">
<summary>
Returns a configured instance of System.Management.Automation.PowerShell, pre-populated with the command to run.
</summary>
<param name="context">The NativeActivityContext for the currently running activity.</param>
<returns>A populated instance of Sytem.Management.Automation.PowerShell</returns>
<remarks>The infrastructure takes responsibility for closing and disposing the PowerShell instance returned.</remarks>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.ExportCounter.PSCommandName">
<summary>
Gets the fully qualified name of the command invoked by this activity.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.ExportCounter.Path">
<summary>
Provides access to the Path parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.ExportCounter.FileFormat">
<summary>
Provides access to the FileFormat parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.ExportCounter.MaxSize">
<summary>
Provides access to the MaxSize parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.ExportCounter.InputObject">
<summary>
Provides access to the InputObject parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.ExportCounter.Force">
<summary>
Provides access to the Force parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.ExportCounter.Circular">
<summary>
Provides access to the Circular parameter.
</summary>
</member>
<member name="T:Microsoft.PowerShell.Diagnostics.Activities.GetCounter">
<summary>
Activity to invoke the Microsoft.PowerShell.Diagnostics\Get-Counter command in a Workflow.
</summary>
</member>
<member name="M:Microsoft.PowerShell.Diagnostics.Activities.GetCounter.#ctor">
<summary>
Gets the display name of the command invoked by this activity.
</summary>
</member>
<member name="M:Microsoft.PowerShell.Diagnostics.Activities.GetCounter.GetPowerShell(System.Activities.NativeActivityContext)">
<summary>
Returns a configured instance of System.Management.Automation.PowerShell, pre-populated with the command to run.
</summary>
<param name="context">The NativeActivityContext for the currently running activity.</param>
<returns>A populated instance of Sytem.Management.Automation.PowerShell</returns>
<remarks>The infrastructure takes responsibility for closing and disposing the PowerShell instance returned.</remarks>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.GetCounter.PSCommandName">
<summary>
Gets the fully qualified name of the command invoked by this activity.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.GetCounter.ListSet">
<summary>
Provides access to the ListSet parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.GetCounter.Counter">
<summary>
Provides access to the Counter parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.GetCounter.SampleInterval">
<summary>
Provides access to the SampleInterval parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.GetCounter.MaxSamples">
<summary>
Provides access to the MaxSamples parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.GetCounter.Continuous">
<summary>
Provides access to the Continuous parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.GetCounter.SupportsCustomRemoting">
<summary>
Declares that this activity supports its own remoting.
</summary>
</member>
<member name="T:Microsoft.PowerShell.Diagnostics.Activities.GetWinEvent">
<summary>
Activity to invoke the Microsoft.PowerShell.Diagnostics\Get-WinEvent command in a Workflow.
</summary>
</member>
<member name="M:Microsoft.PowerShell.Diagnostics.Activities.GetWinEvent.#ctor">
<summary>
Gets the display name of the command invoked by this activity.
</summary>
</member>
<member name="M:Microsoft.PowerShell.Diagnostics.Activities.GetWinEvent.GetPowerShell(System.Activities.NativeActivityContext)">
<summary>
Returns a configured instance of System.Management.Automation.PowerShell, pre-populated with the command to run.
</summary>
<param name="context">The NativeActivityContext for the currently running activity.</param>
<returns>A populated instance of Sytem.Management.Automation.PowerShell</returns>
<remarks>The infrastructure takes responsibility for closing and disposing the PowerShell instance returned.</remarks>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.GetWinEvent.PSCommandName">
<summary>
Gets the fully qualified name of the command invoked by this activity.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.GetWinEvent.ListLog">
<summary>
Provides access to the ListLog parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.GetWinEvent.LogName">
<summary>
Provides access to the LogName parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.GetWinEvent.ListProvider">
<summary>
Provides access to the ListProvider parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.GetWinEvent.ProviderName">
<summary>
Provides access to the ProviderName parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.GetWinEvent.Path">
<summary>
Provides access to the Path parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.GetWinEvent.MaxEvents">
<summary>
Provides access to the MaxEvents parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.GetWinEvent.Credential">
<summary>
Provides access to the Credential parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.GetWinEvent.FilterXPath">
<summary>
Provides access to the FilterXPath parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.GetWinEvent.FilterXml">
<summary>
Provides access to the FilterXml parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.GetWinEvent.FilterHashtable">
<summary>
Provides access to the FilterHashtable parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.GetWinEvent.Force">
<summary>
Provides access to the Force parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.GetWinEvent.Oldest">
<summary>
Provides access to the Oldest parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.GetWinEvent.SupportsCustomRemoting">
<summary>
Declares that this activity supports its own remoting.
</summary>
</member>
<member name="T:Microsoft.PowerShell.Diagnostics.Activities.NewWinEvent">
<summary>
Activity to invoke the Microsoft.PowerShell.Diagnostics\New-WinEvent command in a Workflow.
</summary>
</member>
<member name="M:Microsoft.PowerShell.Diagnostics.Activities.NewWinEvent.#ctor">
<summary>
Gets the display name of the command invoked by this activity.
</summary>
</member>
<member name="M:Microsoft.PowerShell.Diagnostics.Activities.NewWinEvent.GetPowerShell(System.Activities.NativeActivityContext)">
<summary>
Returns a configured instance of System.Management.Automation.PowerShell, pre-populated with the command to run.
</summary>
<param name="context">The NativeActivityContext for the currently running activity.</param>
<returns>A populated instance of Sytem.Management.Automation.PowerShell</returns>
<remarks>The infrastructure takes responsibility for closing and disposing the PowerShell instance returned.</remarks>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.NewWinEvent.PSCommandName">
<summary>
Gets the fully qualified name of the command invoked by this activity.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.NewWinEvent.ProviderName">
<summary>
Provides access to the ProviderName parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.NewWinEvent.WinEventId">
<summary>
Provides access to the WinEventId parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.NewWinEvent.Version">
<summary>
Provides access to the Version parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.NewWinEvent.Payload">
<summary>
Provides access to the Payload parameter.
</summary>
</member>
<member name="T:Microsoft.PowerShell.Diagnostics.Activities.ImportCounter">
<summary>
Activity to invoke the Microsoft.PowerShell.Diagnostics\Import-Counter command in a Workflow.
</summary>
</member>
<member name="M:Microsoft.PowerShell.Diagnostics.Activities.ImportCounter.#ctor">
<summary>
Gets the display name of the command invoked by this activity.
</summary>
</member>
<member name="M:Microsoft.PowerShell.Diagnostics.Activities.ImportCounter.GetPowerShell(System.Activities.NativeActivityContext)">
<summary>
Returns a configured instance of System.Management.Automation.PowerShell, pre-populated with the command to run.
</summary>
<param name="context">The NativeActivityContext for the currently running activity.</param>
<returns>A populated instance of Sytem.Management.Automation.PowerShell</returns>
<remarks>The infrastructure takes responsibility for closing and disposing the PowerShell instance returned.</remarks>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.ImportCounter.PSCommandName">
<summary>
Gets the fully qualified name of the command invoked by this activity.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.ImportCounter.Path">
<summary>
Provides access to the Path parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.ImportCounter.ListSet">
<summary>
Provides access to the ListSet parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.ImportCounter.StartTime">
<summary>
Provides access to the StartTime parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.ImportCounter.EndTime">
<summary>
Provides access to the EndTime parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.ImportCounter.Counter">
<summary>
Provides access to the Counter parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.ImportCounter.Summary">
<summary>
Provides access to the Summary parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Diagnostics.Activities.ImportCounter.MaxSamples">
<summary>
Provides access to the MaxSamples parameter.
</summary>
</member>
</members>
</doc>

@ -0,0 +1,430 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.PowerShell.Security.Activities</name>
</assembly>
<members>
<member name="T:Microsoft.PowerShell.Security.Activities.ConvertFromSecureString">
<summary>
Activity to invoke the Microsoft.PowerShell.Security\ConvertFrom-SecureString command in a Workflow.
</summary>
</member>
<member name="M:Microsoft.PowerShell.Security.Activities.ConvertFromSecureString.#ctor">
<summary>
Gets the display name of the command invoked by this activity.
</summary>
</member>
<member name="M:Microsoft.PowerShell.Security.Activities.ConvertFromSecureString.GetPowerShell(System.Activities.NativeActivityContext)">
<summary>
Returns a configured instance of System.Management.Automation.PowerShell, pre-populated with the command to run.
</summary>
<param name="context">The NativeActivityContext for the currently running activity.</param>
<returns>A populated instance of Sytem.Management.Automation.PowerShell</returns>
<remarks>The infrastructure takes responsibility for closing and disposing the PowerShell instance returned.</remarks>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.ConvertFromSecureString.PSCommandName">
<summary>
Gets the fully qualified name of the command invoked by this activity.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.ConvertFromSecureString.SecureString">
<summary>
Provides access to the SecureString parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.ConvertFromSecureString.SecureKey">
<summary>
Provides access to the SecureKey parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.ConvertFromSecureString.Key">
<summary>
Provides access to the Key parameter.
</summary>
</member>
<member name="T:Microsoft.PowerShell.Security.Activities.ConvertToSecureString">
<summary>
Activity to invoke the Microsoft.PowerShell.Security\ConvertTo-SecureString command in a Workflow.
</summary>
</member>
<member name="M:Microsoft.PowerShell.Security.Activities.ConvertToSecureString.#ctor">
<summary>
Gets the display name of the command invoked by this activity.
</summary>
</member>
<member name="M:Microsoft.PowerShell.Security.Activities.ConvertToSecureString.GetPowerShell(System.Activities.NativeActivityContext)">
<summary>
Returns a configured instance of System.Management.Automation.PowerShell, pre-populated with the command to run.
</summary>
<param name="context">The NativeActivityContext for the currently running activity.</param>
<returns>A populated instance of Sytem.Management.Automation.PowerShell</returns>
<remarks>The infrastructure takes responsibility for closing and disposing the PowerShell instance returned.</remarks>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.ConvertToSecureString.PSCommandName">
<summary>
Gets the fully qualified name of the command invoked by this activity.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.ConvertToSecureString.String">
<summary>
Provides access to the String parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.ConvertToSecureString.AsPlainText">
<summary>
Provides access to the AsPlainText parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.ConvertToSecureString.Force">
<summary>
Provides access to the Force parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.ConvertToSecureString.SecureKey">
<summary>
Provides access to the SecureKey parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.ConvertToSecureString.Key">
<summary>
Provides access to the Key parameter.
</summary>
</member>
<member name="T:Microsoft.PowerShell.Security.Activities.GetAcl">
<summary>
Activity to invoke the Microsoft.PowerShell.Security\Get-Acl command in a Workflow.
</summary>
</member>
<member name="M:Microsoft.PowerShell.Security.Activities.GetAcl.#ctor">
<summary>
Gets the display name of the command invoked by this activity.
</summary>
</member>
<member name="M:Microsoft.PowerShell.Security.Activities.GetAcl.GetPowerShell(System.Activities.NativeActivityContext)">
<summary>
Returns a configured instance of System.Management.Automation.PowerShell, pre-populated with the command to run.
</summary>
<param name="context">The NativeActivityContext for the currently running activity.</param>
<returns>A populated instance of Sytem.Management.Automation.PowerShell</returns>
<remarks>The infrastructure takes responsibility for closing and disposing the PowerShell instance returned.</remarks>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.GetAcl.PSCommandName">
<summary>
Gets the fully qualified name of the command invoked by this activity.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.GetAcl.Path">
<summary>
Provides access to the Path parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.GetAcl.InputObject">
<summary>
Provides access to the InputObject parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.GetAcl.LiteralPath">
<summary>
Provides access to the LiteralPath parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.GetAcl.Audit">
<summary>
Provides access to the Audit parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.GetAcl.AllCentralAccessPolicies">
<summary>
Provides access to the AllCentralAccessPolicies parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.GetAcl.Filter">
<summary>
Provides access to the Filter parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.GetAcl.Include">
<summary>
Provides access to the Include parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.GetAcl.Exclude">
<summary>
Provides access to the Exclude parameter.
</summary>
</member>
<member name="T:Microsoft.PowerShell.Security.Activities.GetAuthenticodeSignature">
<summary>
Activity to invoke the Microsoft.PowerShell.Security\Get-AuthenticodeSignature command in a Workflow.
</summary>
</member>
<member name="M:Microsoft.PowerShell.Security.Activities.GetAuthenticodeSignature.#ctor">
<summary>
Gets the display name of the command invoked by this activity.
</summary>
</member>
<member name="M:Microsoft.PowerShell.Security.Activities.GetAuthenticodeSignature.GetPowerShell(System.Activities.NativeActivityContext)">
<summary>
Returns a configured instance of System.Management.Automation.PowerShell, pre-populated with the command to run.
</summary>
<param name="context">The NativeActivityContext for the currently running activity.</param>
<returns>A populated instance of Sytem.Management.Automation.PowerShell</returns>
<remarks>The infrastructure takes responsibility for closing and disposing the PowerShell instance returned.</remarks>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.GetAuthenticodeSignature.PSCommandName">
<summary>
Gets the fully qualified name of the command invoked by this activity.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.GetAuthenticodeSignature.FilePath">
<summary>
Provides access to the FilePath parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.GetAuthenticodeSignature.LiteralPath">
<summary>
Provides access to the LiteralPath parameter.
</summary>
</member>
<member name="T:Microsoft.PowerShell.Security.Activities.GetExecutionPolicy">
<summary>
Activity to invoke the Microsoft.PowerShell.Security\Get-ExecutionPolicy command in a Workflow.
</summary>
</member>
<member name="M:Microsoft.PowerShell.Security.Activities.GetExecutionPolicy.#ctor">
<summary>
Gets the display name of the command invoked by this activity.
</summary>
</member>
<member name="M:Microsoft.PowerShell.Security.Activities.GetExecutionPolicy.GetPowerShell(System.Activities.NativeActivityContext)">
<summary>
Returns a configured instance of System.Management.Automation.PowerShell, pre-populated with the command to run.
</summary>
<param name="context">The NativeActivityContext for the currently running activity.</param>
<returns>A populated instance of Sytem.Management.Automation.PowerShell</returns>
<remarks>The infrastructure takes responsibility for closing and disposing the PowerShell instance returned.</remarks>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.GetExecutionPolicy.PSCommandName">
<summary>
Gets the fully qualified name of the command invoked by this activity.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.GetExecutionPolicy.Scope">
<summary>
Provides access to the Scope parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.GetExecutionPolicy.List">
<summary>
Provides access to the List parameter.
</summary>
</member>
<member name="T:Microsoft.PowerShell.Security.Activities.GetPfxCertificate">
<summary>
Activity to invoke the Microsoft.PowerShell.Security\Get-PfxCertificate command in a Workflow.
</summary>
</member>
<member name="M:Microsoft.PowerShell.Security.Activities.GetPfxCertificate.#ctor">
<summary>
Gets the display name of the command invoked by this activity.
</summary>
</member>
<member name="M:Microsoft.PowerShell.Security.Activities.GetPfxCertificate.GetPowerShell(System.Activities.NativeActivityContext)">
<summary>
Returns a configured instance of System.Management.Automation.PowerShell, pre-populated with the command to run.
</summary>
<param name="context">The NativeActivityContext for the currently running activity.</param>
<returns>A populated instance of Sytem.Management.Automation.PowerShell</returns>
<remarks>The infrastructure takes responsibility for closing and disposing the PowerShell instance returned.</remarks>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.GetPfxCertificate.PSCommandName">
<summary>
Gets the fully qualified name of the command invoked by this activity.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.GetPfxCertificate.FilePath">
<summary>
Provides access to the FilePath parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.GetPfxCertificate.LiteralPath">
<summary>
Provides access to the LiteralPath parameter.
</summary>
</member>
<member name="T:Microsoft.PowerShell.Security.Activities.SetAcl">
<summary>
Activity to invoke the Microsoft.PowerShell.Security\Set-Acl command in a Workflow.
</summary>
</member>
<member name="M:Microsoft.PowerShell.Security.Activities.SetAcl.#ctor">
<summary>
Gets the display name of the command invoked by this activity.
</summary>
</member>
<member name="M:Microsoft.PowerShell.Security.Activities.SetAcl.GetPowerShell(System.Activities.NativeActivityContext)">
<summary>
Returns a configured instance of System.Management.Automation.PowerShell, pre-populated with the command to run.
</summary>
<param name="context">The NativeActivityContext for the currently running activity.</param>
<returns>A populated instance of Sytem.Management.Automation.PowerShell</returns>
<remarks>The infrastructure takes responsibility for closing and disposing the PowerShell instance returned.</remarks>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.SetAcl.PSCommandName">
<summary>
Gets the fully qualified name of the command invoked by this activity.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.SetAcl.Path">
<summary>
Provides access to the Path parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.SetAcl.InputObject">
<summary>
Provides access to the InputObject parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.SetAcl.LiteralPath">
<summary>
Provides access to the LiteralPath parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.SetAcl.AclObject">
<summary>
Provides access to the AclObject parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.SetAcl.SecurityDescriptor">
<summary>
Provides access to the SecurityDescriptor parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.SetAcl.CentralAccessPolicy">
<summary>
Provides access to the CentralAccessPolicy parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.SetAcl.ClearCentralAccessPolicy">
<summary>
Provides access to the ClearCentralAccessPolicy parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.SetAcl.Passthru">
<summary>
Provides access to the Passthru parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.SetAcl.Filter">
<summary>
Provides access to the Filter parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.SetAcl.Include">
<summary>
Provides access to the Include parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.SetAcl.Exclude">
<summary>
Provides access to the Exclude parameter.
</summary>
</member>
<member name="T:Microsoft.PowerShell.Security.Activities.SetAuthenticodeSignature">
<summary>
Activity to invoke the Microsoft.PowerShell.Security\Set-AuthenticodeSignature command in a Workflow.
</summary>
</member>
<member name="M:Microsoft.PowerShell.Security.Activities.SetAuthenticodeSignature.#ctor">
<summary>
Gets the display name of the command invoked by this activity.
</summary>
</member>
<member name="M:Microsoft.PowerShell.Security.Activities.SetAuthenticodeSignature.GetPowerShell(System.Activities.NativeActivityContext)">
<summary>
Returns a configured instance of System.Management.Automation.PowerShell, pre-populated with the command to run.
</summary>
<param name="context">The NativeActivityContext for the currently running activity.</param>
<returns>A populated instance of Sytem.Management.Automation.PowerShell</returns>
<remarks>The infrastructure takes responsibility for closing and disposing the PowerShell instance returned.</remarks>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.SetAuthenticodeSignature.PSCommandName">
<summary>
Gets the fully qualified name of the command invoked by this activity.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.SetAuthenticodeSignature.Certificate">
<summary>
Provides access to the Certificate parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.SetAuthenticodeSignature.IncludeChain">
<summary>
Provides access to the IncludeChain parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.SetAuthenticodeSignature.TimestampServer">
<summary>
Provides access to the TimestampServer parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.SetAuthenticodeSignature.HashAlgorithm">
<summary>
Provides access to the HashAlgorithm parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.SetAuthenticodeSignature.Force">
<summary>
Provides access to the Force parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.SetAuthenticodeSignature.FilePath">
<summary>
Provides access to the FilePath parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.SetAuthenticodeSignature.LiteralPath">
<summary>
Provides access to the LiteralPath parameter.
</summary>
</member>
<member name="T:Microsoft.PowerShell.Security.Activities.SetExecutionPolicy">
<summary>
Activity to invoke the Microsoft.PowerShell.Security\Set-ExecutionPolicy command in a Workflow.
</summary>
</member>
<member name="M:Microsoft.PowerShell.Security.Activities.SetExecutionPolicy.#ctor">
<summary>
Gets the display name of the command invoked by this activity.
</summary>
</member>
<member name="M:Microsoft.PowerShell.Security.Activities.SetExecutionPolicy.GetPowerShell(System.Activities.NativeActivityContext)">
<summary>
Returns a configured instance of System.Management.Automation.PowerShell, pre-populated with the command to run.
</summary>
<param name="context">The NativeActivityContext for the currently running activity.</param>
<returns>A populated instance of Sytem.Management.Automation.PowerShell</returns>
<remarks>The infrastructure takes responsibility for closing and disposing the PowerShell instance returned.</remarks>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.SetExecutionPolicy.PSCommandName">
<summary>
Gets the fully qualified name of the command invoked by this activity.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.SetExecutionPolicy.ExecutionPolicy">
<summary>
Provides access to the ExecutionPolicy parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.SetExecutionPolicy.Scope">
<summary>
Provides access to the Scope parameter.
</summary>
</member>
<member name="P:Microsoft.PowerShell.Security.Activities.SetExecutionPolicy.Force">
<summary>
Provides access to the Force parameter.
</summary>
</member>
</members>
</doc>
Loading…
Cancel
Save