├── .gitignore ├── Extras ├── SharpStrike-GUI.png └── SharpStrike-Usage.gif ├── LICENSE ├── Models ├── CIM │ ├── CommanderOptions.cs │ └── Exceptions.cs ├── Common │ └── MessageData.cs ├── Lazy.cs ├── Models.csproj ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── README.md ├── ServiceLayer ├── CIM │ ├── CommandHandler.cs │ ├── Commander.cs │ ├── Common │ │ └── Commands.cs │ ├── Connector.cs │ ├── EnvelopeSize.cs │ ├── ExecuteCIM.cs │ ├── ExecuteWMI.cs │ ├── GetDeviceGuard.cs │ ├── Planter.cs │ └── RegistryMod.cs ├── CommonPublic │ ├── Helpers.cs │ ├── Messages.cs │ └── Messenger.cs ├── Lazy.cs ├── Properties │ └── AssemblyInfo.cs ├── ServiceLayer.csproj ├── ServiceLayer.csproj.DotSettings ├── SharedGlobals.cs └── packages.config ├── SharpStrike.sln ├── SharpStrikeConsole ├── App.config ├── Env.cs ├── FodyWeavers.xml ├── Log.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SharedGlobals.cs ├── SharpStrikeConsole.csproj └── packages.config ├── SharpStrikeWinForms ├── Common │ ├── Env.cs │ ├── Log.cs │ ├── SharedGlobals.cs │ └── Ui.cs ├── Console.ico ├── FodyWeavers.xml ├── Forms │ ├── FormMain.Designer.cs │ ├── FormMain.cs │ └── FormMain.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── SharpStrike.csproj.DotSettings ├── SharpStrikeWinForms.csproj ├── SharpStrikeWinForms.csproj.DotSettings ├── app.config └── packages.config └── packages ├── CommandLineParser.2.8.0 ├── .signature.p7s ├── CommandLine20.png ├── License.md ├── README.md └── lib │ ├── net40 │ ├── CommandLine.dll │ └── CommandLine.xml │ ├── net45 │ ├── CommandLine.dll │ └── CommandLine.xml │ ├── net461 │ ├── CommandLine.dll │ └── CommandLine.xml │ └── netstandard2.0 │ ├── CommandLine.dll │ └── CommandLine.xml ├── ConsoleControl.1.3.0 ├── .signature.p7s ├── content │ └── Console.ico └── lib │ └── net40-client │ ├── ConsoleControl.dll │ └── ConsoleControl.xml ├── ConsoleControlAPI.1.3.0 ├── .signature.p7s └── lib │ └── net40 │ ├── ConsoleControlAPI.dll │ └── ConsoleControlAPI.xml ├── ConsoleTables.2.4.2 ├── .signature.p7s └── lib │ ├── net40 │ └── ConsoleTables.dll │ ├── netcoreapp3.1 │ └── ConsoleTables.dll │ └── netstandard1.3 │ └── ConsoleTables.dll ├── Costura.Fody.4.1.0 ├── .signature.p7s ├── build │ └── Costura.Fody.props ├── lib │ └── net40 │ │ ├── Costura.dll │ │ └── Costura.xml └── weaver │ ├── Costura.Fody.dll │ └── Costura.Fody.xcf ├── Fody.6.1.1 ├── .signature.p7s ├── License.txt ├── build │ └── Fody.targets ├── netclassictask │ ├── Fody.dll │ ├── FodyCommon.dll │ ├── FodyHelpers.dll │ ├── FodyIsolated.dll │ ├── Mono.Cecil.Pdb.dll │ ├── Mono.Cecil.Rocks.dll │ └── Mono.Cecil.dll └── netstandardtask │ ├── Fody.dll │ ├── FodyCommon.dll │ ├── FodyHelpers.dll │ ├── FodyIsolated.dll │ ├── Mono.Cecil.Pdb.dll │ ├── Mono.Cecil.Rocks.dll │ └── Mono.Cecil.dll ├── Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0 ├── .signature.p7s └── lib │ └── net4 │ ├── Microsoft.Management.Infrastructure.dll │ ├── Microsoft.PowerShell.Activities.dll │ ├── Microsoft.PowerShell.Activities.xml │ ├── Microsoft.PowerShell.Commands.Diagnostics.dll │ ├── Microsoft.PowerShell.ConsoleHost.dll │ ├── Microsoft.PowerShell.ConsoleHost.xml │ ├── Microsoft.PowerShell.Core.Activities.dll │ ├── Microsoft.PowerShell.Core.Activities.xml │ ├── Microsoft.PowerShell.Diagnostics.Activities.dll │ ├── Microsoft.PowerShell.Diagnostics.Activities.xml │ ├── Microsoft.PowerShell.Editor.dll │ ├── Microsoft.PowerShell.GPowerShell.dll │ ├── Microsoft.PowerShell.GPowerShell.xml │ ├── Microsoft.PowerShell.GraphicalHost.dll │ ├── Microsoft.PowerShell.GraphicalHost.xml │ ├── Microsoft.PowerShell.ISECommon.dll │ ├── Microsoft.PowerShell.ISECommon.xml │ ├── Microsoft.PowerShell.Management.Activities.dll │ ├── Microsoft.PowerShell.Management.Activities.xml │ ├── Microsoft.PowerShell.PSReadLine.dll │ ├── Microsoft.PowerShell.PackageManagement.dll │ ├── Microsoft.PowerShell.Security.Activities.dll │ ├── Microsoft.PowerShell.Security.Activities.xml │ ├── Microsoft.PowerShell.Security.dll │ ├── Microsoft.PowerShell.Security.xml │ ├── Microsoft.PowerShell.Utility.Activities.dll │ ├── Microsoft.PowerShell.Utility.Activities.xml │ ├── Microsoft.PowerShell.Workflow.ServiceCore.xml │ ├── Microsoft.Powershell.Workflow.ServiceCore.dll │ ├── System.Management.Automation.dll │ └── System.Management.Automation.xml ├── Microsoft.WSMan.Management.7.1.0 ├── .signature.p7s ├── Powershell_black_64.png ├── ref │ └── net5.0 │ │ └── System.Management.Automation.dll └── runtimes │ └── win │ └── lib │ └── net5.0 │ └── Microsoft.WSMan.Management.dll ├── System.DirectoryServices.5.0.0 ├── .signature.p7s ├── Icon.png ├── LICENSE.TXT ├── THIRD-PARTY-NOTICES.TXT ├── lib │ ├── net45 │ │ └── _._ │ └── netstandard2.0 │ │ ├── System.DirectoryServices.dll │ │ └── System.DirectoryServices.xml ├── ref │ ├── net45 │ │ └── _._ │ └── netstandard2.0 │ │ ├── System.DirectoryServices.dll │ │ └── System.DirectoryServices.xml ├── runtimes │ └── win │ │ └── lib │ │ ├── net45 │ │ └── _._ │ │ └── netcoreapp2.0 │ │ ├── System.DirectoryServices.dll │ │ └── System.DirectoryServices.xml ├── useSharedDesignerContext.txt └── version.txt └── System.Management.4.7.0 ├── .signature.p7s ├── LICENSE.TXT ├── THIRD-PARTY-NOTICES.TXT ├── lib ├── net45 │ └── _._ └── netstandard2.0 │ ├── System.Management.dll │ └── System.Management.xml ├── ref ├── net45 │ └── _._ └── netstandard2.0 │ ├── System.Management.dll │ └── System.Management.xml ├── runtimes └── win │ └── lib │ ├── net45 │ └── _._ │ └── netcoreapp2.0 │ ├── System.Management.dll │ └── System.Management.xml ├── useSharedDesignerContext.txt └── version.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/.gitignore -------------------------------------------------------------------------------- /Extras/SharpStrike-GUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/Extras/SharpStrike-GUI.png -------------------------------------------------------------------------------- /Extras/SharpStrike-Usage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/Extras/SharpStrike-Usage.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/LICENSE -------------------------------------------------------------------------------- /Models/CIM/CommanderOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/Models/CIM/CommanderOptions.cs -------------------------------------------------------------------------------- /Models/CIM/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/Models/CIM/Exceptions.cs -------------------------------------------------------------------------------- /Models/Common/MessageData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/Models/Common/MessageData.cs -------------------------------------------------------------------------------- /Models/Lazy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/Models/Lazy.cs -------------------------------------------------------------------------------- /Models/Models.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/Models/Models.csproj -------------------------------------------------------------------------------- /Models/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/Models/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Models/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/Models/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/README.md -------------------------------------------------------------------------------- /ServiceLayer/CIM/CommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/ServiceLayer/CIM/CommandHandler.cs -------------------------------------------------------------------------------- /ServiceLayer/CIM/Commander.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/ServiceLayer/CIM/Commander.cs -------------------------------------------------------------------------------- /ServiceLayer/CIM/Common/Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/ServiceLayer/CIM/Common/Commands.cs -------------------------------------------------------------------------------- /ServiceLayer/CIM/Connector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/ServiceLayer/CIM/Connector.cs -------------------------------------------------------------------------------- /ServiceLayer/CIM/EnvelopeSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/ServiceLayer/CIM/EnvelopeSize.cs -------------------------------------------------------------------------------- /ServiceLayer/CIM/ExecuteCIM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/ServiceLayer/CIM/ExecuteCIM.cs -------------------------------------------------------------------------------- /ServiceLayer/CIM/ExecuteWMI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/ServiceLayer/CIM/ExecuteWMI.cs -------------------------------------------------------------------------------- /ServiceLayer/CIM/GetDeviceGuard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/ServiceLayer/CIM/GetDeviceGuard.cs -------------------------------------------------------------------------------- /ServiceLayer/CIM/Planter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/ServiceLayer/CIM/Planter.cs -------------------------------------------------------------------------------- /ServiceLayer/CIM/RegistryMod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/ServiceLayer/CIM/RegistryMod.cs -------------------------------------------------------------------------------- /ServiceLayer/CommonPublic/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/ServiceLayer/CommonPublic/Helpers.cs -------------------------------------------------------------------------------- /ServiceLayer/CommonPublic/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/ServiceLayer/CommonPublic/Messages.cs -------------------------------------------------------------------------------- /ServiceLayer/CommonPublic/Messenger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/ServiceLayer/CommonPublic/Messenger.cs -------------------------------------------------------------------------------- /ServiceLayer/Lazy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/ServiceLayer/Lazy.cs -------------------------------------------------------------------------------- /ServiceLayer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/ServiceLayer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ServiceLayer/ServiceLayer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/ServiceLayer/ServiceLayer.csproj -------------------------------------------------------------------------------- /ServiceLayer/ServiceLayer.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/ServiceLayer/ServiceLayer.csproj.DotSettings -------------------------------------------------------------------------------- /ServiceLayer/SharedGlobals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/ServiceLayer/SharedGlobals.cs -------------------------------------------------------------------------------- /ServiceLayer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/ServiceLayer/packages.config -------------------------------------------------------------------------------- /SharpStrike.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/SharpStrike.sln -------------------------------------------------------------------------------- /SharpStrikeConsole/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/SharpStrikeConsole/App.config -------------------------------------------------------------------------------- /SharpStrikeConsole/Env.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/SharpStrikeConsole/Env.cs -------------------------------------------------------------------------------- /SharpStrikeConsole/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/SharpStrikeConsole/FodyWeavers.xml -------------------------------------------------------------------------------- /SharpStrikeConsole/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/SharpStrikeConsole/Log.cs -------------------------------------------------------------------------------- /SharpStrikeConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/SharpStrikeConsole/Program.cs -------------------------------------------------------------------------------- /SharpStrikeConsole/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/SharpStrikeConsole/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SharpStrikeConsole/SharedGlobals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/SharpStrikeConsole/SharedGlobals.cs -------------------------------------------------------------------------------- /SharpStrikeConsole/SharpStrikeConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/SharpStrikeConsole/SharpStrikeConsole.csproj -------------------------------------------------------------------------------- /SharpStrikeConsole/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/SharpStrikeConsole/packages.config -------------------------------------------------------------------------------- /SharpStrikeWinForms/Common/Env.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/SharpStrikeWinForms/Common/Env.cs -------------------------------------------------------------------------------- /SharpStrikeWinForms/Common/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/SharpStrikeWinForms/Common/Log.cs -------------------------------------------------------------------------------- /SharpStrikeWinForms/Common/SharedGlobals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/SharpStrikeWinForms/Common/SharedGlobals.cs -------------------------------------------------------------------------------- /SharpStrikeWinForms/Common/Ui.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/SharpStrikeWinForms/Common/Ui.cs -------------------------------------------------------------------------------- /SharpStrikeWinForms/Console.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/SharpStrikeWinForms/Console.ico -------------------------------------------------------------------------------- /SharpStrikeWinForms/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/SharpStrikeWinForms/FodyWeavers.xml -------------------------------------------------------------------------------- /SharpStrikeWinForms/Forms/FormMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/SharpStrikeWinForms/Forms/FormMain.Designer.cs -------------------------------------------------------------------------------- /SharpStrikeWinForms/Forms/FormMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/SharpStrikeWinForms/Forms/FormMain.cs -------------------------------------------------------------------------------- /SharpStrikeWinForms/Forms/FormMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/SharpStrikeWinForms/Forms/FormMain.resx -------------------------------------------------------------------------------- /SharpStrikeWinForms/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/SharpStrikeWinForms/Program.cs -------------------------------------------------------------------------------- /SharpStrikeWinForms/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/SharpStrikeWinForms/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SharpStrikeWinForms/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/SharpStrikeWinForms/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SharpStrikeWinForms/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/SharpStrikeWinForms/Properties/Resources.resx -------------------------------------------------------------------------------- /SharpStrikeWinForms/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/SharpStrikeWinForms/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SharpStrikeWinForms/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/SharpStrikeWinForms/Properties/Settings.settings -------------------------------------------------------------------------------- /SharpStrikeWinForms/SharpStrike.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/SharpStrikeWinForms/SharpStrike.csproj.DotSettings -------------------------------------------------------------------------------- /SharpStrikeWinForms/SharpStrikeWinForms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/SharpStrikeWinForms/SharpStrikeWinForms.csproj -------------------------------------------------------------------------------- /SharpStrikeWinForms/SharpStrikeWinForms.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/SharpStrikeWinForms/SharpStrikeWinForms.csproj.DotSettings -------------------------------------------------------------------------------- /SharpStrikeWinForms/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/SharpStrikeWinForms/app.config -------------------------------------------------------------------------------- /SharpStrikeWinForms/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/SharpStrikeWinForms/packages.config -------------------------------------------------------------------------------- /packages/CommandLineParser.2.8.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/CommandLineParser.2.8.0/.signature.p7s -------------------------------------------------------------------------------- /packages/CommandLineParser.2.8.0/CommandLine20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/CommandLineParser.2.8.0/CommandLine20.png -------------------------------------------------------------------------------- /packages/CommandLineParser.2.8.0/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/CommandLineParser.2.8.0/License.md -------------------------------------------------------------------------------- /packages/CommandLineParser.2.8.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/CommandLineParser.2.8.0/README.md -------------------------------------------------------------------------------- /packages/CommandLineParser.2.8.0/lib/net40/CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/CommandLineParser.2.8.0/lib/net40/CommandLine.dll -------------------------------------------------------------------------------- /packages/CommandLineParser.2.8.0/lib/net40/CommandLine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/CommandLineParser.2.8.0/lib/net40/CommandLine.xml -------------------------------------------------------------------------------- /packages/CommandLineParser.2.8.0/lib/net45/CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/CommandLineParser.2.8.0/lib/net45/CommandLine.dll -------------------------------------------------------------------------------- /packages/CommandLineParser.2.8.0/lib/net45/CommandLine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/CommandLineParser.2.8.0/lib/net45/CommandLine.xml -------------------------------------------------------------------------------- /packages/CommandLineParser.2.8.0/lib/net461/CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/CommandLineParser.2.8.0/lib/net461/CommandLine.dll -------------------------------------------------------------------------------- /packages/CommandLineParser.2.8.0/lib/net461/CommandLine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/CommandLineParser.2.8.0/lib/net461/CommandLine.xml -------------------------------------------------------------------------------- /packages/CommandLineParser.2.8.0/lib/netstandard2.0/CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/CommandLineParser.2.8.0/lib/netstandard2.0/CommandLine.dll -------------------------------------------------------------------------------- /packages/CommandLineParser.2.8.0/lib/netstandard2.0/CommandLine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/CommandLineParser.2.8.0/lib/netstandard2.0/CommandLine.xml -------------------------------------------------------------------------------- /packages/ConsoleControl.1.3.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/ConsoleControl.1.3.0/.signature.p7s -------------------------------------------------------------------------------- /packages/ConsoleControl.1.3.0/content/Console.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/ConsoleControl.1.3.0/content/Console.ico -------------------------------------------------------------------------------- /packages/ConsoleControl.1.3.0/lib/net40-client/ConsoleControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/ConsoleControl.1.3.0/lib/net40-client/ConsoleControl.dll -------------------------------------------------------------------------------- /packages/ConsoleControl.1.3.0/lib/net40-client/ConsoleControl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/ConsoleControl.1.3.0/lib/net40-client/ConsoleControl.xml -------------------------------------------------------------------------------- /packages/ConsoleControlAPI.1.3.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/ConsoleControlAPI.1.3.0/.signature.p7s -------------------------------------------------------------------------------- /packages/ConsoleControlAPI.1.3.0/lib/net40/ConsoleControlAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/ConsoleControlAPI.1.3.0/lib/net40/ConsoleControlAPI.dll -------------------------------------------------------------------------------- /packages/ConsoleControlAPI.1.3.0/lib/net40/ConsoleControlAPI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/ConsoleControlAPI.1.3.0/lib/net40/ConsoleControlAPI.xml -------------------------------------------------------------------------------- /packages/ConsoleTables.2.4.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/ConsoleTables.2.4.2/.signature.p7s -------------------------------------------------------------------------------- /packages/ConsoleTables.2.4.2/lib/net40/ConsoleTables.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/ConsoleTables.2.4.2/lib/net40/ConsoleTables.dll -------------------------------------------------------------------------------- /packages/ConsoleTables.2.4.2/lib/netcoreapp3.1/ConsoleTables.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/ConsoleTables.2.4.2/lib/netcoreapp3.1/ConsoleTables.dll -------------------------------------------------------------------------------- /packages/ConsoleTables.2.4.2/lib/netstandard1.3/ConsoleTables.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/ConsoleTables.2.4.2/lib/netstandard1.3/ConsoleTables.dll -------------------------------------------------------------------------------- /packages/Costura.Fody.4.1.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Costura.Fody.4.1.0/.signature.p7s -------------------------------------------------------------------------------- /packages/Costura.Fody.4.1.0/build/Costura.Fody.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Costura.Fody.4.1.0/build/Costura.Fody.props -------------------------------------------------------------------------------- /packages/Costura.Fody.4.1.0/lib/net40/Costura.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Costura.Fody.4.1.0/lib/net40/Costura.dll -------------------------------------------------------------------------------- /packages/Costura.Fody.4.1.0/lib/net40/Costura.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Costura.Fody.4.1.0/lib/net40/Costura.xml -------------------------------------------------------------------------------- /packages/Costura.Fody.4.1.0/weaver/Costura.Fody.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Costura.Fody.4.1.0/weaver/Costura.Fody.dll -------------------------------------------------------------------------------- /packages/Costura.Fody.4.1.0/weaver/Costura.Fody.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Costura.Fody.4.1.0/weaver/Costura.Fody.xcf -------------------------------------------------------------------------------- /packages/Fody.6.1.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Fody.6.1.1/.signature.p7s -------------------------------------------------------------------------------- /packages/Fody.6.1.1/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Fody.6.1.1/License.txt -------------------------------------------------------------------------------- /packages/Fody.6.1.1/build/Fody.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Fody.6.1.1/build/Fody.targets -------------------------------------------------------------------------------- /packages/Fody.6.1.1/netclassictask/Fody.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Fody.6.1.1/netclassictask/Fody.dll -------------------------------------------------------------------------------- /packages/Fody.6.1.1/netclassictask/FodyCommon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Fody.6.1.1/netclassictask/FodyCommon.dll -------------------------------------------------------------------------------- /packages/Fody.6.1.1/netclassictask/FodyHelpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Fody.6.1.1/netclassictask/FodyHelpers.dll -------------------------------------------------------------------------------- /packages/Fody.6.1.1/netclassictask/FodyIsolated.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Fody.6.1.1/netclassictask/FodyIsolated.dll -------------------------------------------------------------------------------- /packages/Fody.6.1.1/netclassictask/Mono.Cecil.Pdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Fody.6.1.1/netclassictask/Mono.Cecil.Pdb.dll -------------------------------------------------------------------------------- /packages/Fody.6.1.1/netclassictask/Mono.Cecil.Rocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Fody.6.1.1/netclassictask/Mono.Cecil.Rocks.dll -------------------------------------------------------------------------------- /packages/Fody.6.1.1/netclassictask/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Fody.6.1.1/netclassictask/Mono.Cecil.dll -------------------------------------------------------------------------------- /packages/Fody.6.1.1/netstandardtask/Fody.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Fody.6.1.1/netstandardtask/Fody.dll -------------------------------------------------------------------------------- /packages/Fody.6.1.1/netstandardtask/FodyCommon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Fody.6.1.1/netstandardtask/FodyCommon.dll -------------------------------------------------------------------------------- /packages/Fody.6.1.1/netstandardtask/FodyHelpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Fody.6.1.1/netstandardtask/FodyHelpers.dll -------------------------------------------------------------------------------- /packages/Fody.6.1.1/netstandardtask/FodyIsolated.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Fody.6.1.1/netstandardtask/FodyIsolated.dll -------------------------------------------------------------------------------- /packages/Fody.6.1.1/netstandardtask/Mono.Cecil.Pdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Fody.6.1.1/netstandardtask/Mono.Cecil.Pdb.dll -------------------------------------------------------------------------------- /packages/Fody.6.1.1/netstandardtask/Mono.Cecil.Rocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Fody.6.1.1/netstandardtask/Mono.Cecil.Rocks.dll -------------------------------------------------------------------------------- /packages/Fody.6.1.1/netstandardtask/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Fody.6.1.1/netstandardtask/Mono.Cecil.dll -------------------------------------------------------------------------------- /packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/.signature.p7s -------------------------------------------------------------------------------- /packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.Management.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.Management.Infrastructure.dll -------------------------------------------------------------------------------- /packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Activities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Activities.dll -------------------------------------------------------------------------------- /packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Activities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Activities.xml -------------------------------------------------------------------------------- /packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Commands.Diagnostics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Commands.Diagnostics.dll -------------------------------------------------------------------------------- /packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.ConsoleHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.ConsoleHost.dll -------------------------------------------------------------------------------- /packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.ConsoleHost.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.ConsoleHost.xml -------------------------------------------------------------------------------- /packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Core.Activities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Core.Activities.dll -------------------------------------------------------------------------------- /packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Core.Activities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Core.Activities.xml -------------------------------------------------------------------------------- /packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Diagnostics.Activities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Diagnostics.Activities.dll -------------------------------------------------------------------------------- /packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Diagnostics.Activities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Diagnostics.Activities.xml -------------------------------------------------------------------------------- /packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Editor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Editor.dll -------------------------------------------------------------------------------- /packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.GPowerShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.GPowerShell.dll -------------------------------------------------------------------------------- /packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.GPowerShell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.GPowerShell.xml -------------------------------------------------------------------------------- /packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.GraphicalHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.GraphicalHost.dll -------------------------------------------------------------------------------- /packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.GraphicalHost.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.GraphicalHost.xml -------------------------------------------------------------------------------- /packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.ISECommon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.ISECommon.dll -------------------------------------------------------------------------------- /packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.ISECommon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.ISECommon.xml -------------------------------------------------------------------------------- /packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Management.Activities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Management.Activities.dll -------------------------------------------------------------------------------- /packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Management.Activities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Management.Activities.xml -------------------------------------------------------------------------------- /packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.PSReadLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.PSReadLine.dll -------------------------------------------------------------------------------- /packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.PackageManagement.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.PackageManagement.dll -------------------------------------------------------------------------------- /packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Security.Activities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Security.Activities.dll -------------------------------------------------------------------------------- /packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Security.Activities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Security.Activities.xml -------------------------------------------------------------------------------- /packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Security.dll -------------------------------------------------------------------------------- /packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Security.xml -------------------------------------------------------------------------------- /packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Utility.Activities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Utility.Activities.dll -------------------------------------------------------------------------------- /packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Utility.Activities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Utility.Activities.xml -------------------------------------------------------------------------------- /packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Workflow.ServiceCore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.PowerShell.Workflow.ServiceCore.xml -------------------------------------------------------------------------------- /packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.Powershell.Workflow.ServiceCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/Microsoft.Powershell.Workflow.ServiceCore.dll -------------------------------------------------------------------------------- /packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/System.Management.Automation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/System.Management.Automation.dll -------------------------------------------------------------------------------- /packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/System.Management.Automation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.PowerShell.5.ReferenceAssemblies.1.1.0/lib/net4/System.Management.Automation.xml -------------------------------------------------------------------------------- /packages/Microsoft.WSMan.Management.7.1.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.WSMan.Management.7.1.0/.signature.p7s -------------------------------------------------------------------------------- /packages/Microsoft.WSMan.Management.7.1.0/Powershell_black_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.WSMan.Management.7.1.0/Powershell_black_64.png -------------------------------------------------------------------------------- /packages/Microsoft.WSMan.Management.7.1.0/ref/net5.0/System.Management.Automation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.WSMan.Management.7.1.0/ref/net5.0/System.Management.Automation.dll -------------------------------------------------------------------------------- /packages/Microsoft.WSMan.Management.7.1.0/runtimes/win/lib/net5.0/Microsoft.WSMan.Management.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/Microsoft.WSMan.Management.7.1.0/runtimes/win/lib/net5.0/Microsoft.WSMan.Management.dll -------------------------------------------------------------------------------- /packages/System.DirectoryServices.5.0.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/System.DirectoryServices.5.0.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.DirectoryServices.5.0.0/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/System.DirectoryServices.5.0.0/Icon.png -------------------------------------------------------------------------------- /packages/System.DirectoryServices.5.0.0/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/System.DirectoryServices.5.0.0/LICENSE.TXT -------------------------------------------------------------------------------- /packages/System.DirectoryServices.5.0.0/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/System.DirectoryServices.5.0.0/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /packages/System.DirectoryServices.5.0.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.DirectoryServices.5.0.0/lib/netstandard2.0/System.DirectoryServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/System.DirectoryServices.5.0.0/lib/netstandard2.0/System.DirectoryServices.dll -------------------------------------------------------------------------------- /packages/System.DirectoryServices.5.0.0/lib/netstandard2.0/System.DirectoryServices.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/System.DirectoryServices.5.0.0/lib/netstandard2.0/System.DirectoryServices.xml -------------------------------------------------------------------------------- /packages/System.DirectoryServices.5.0.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.DirectoryServices.5.0.0/ref/netstandard2.0/System.DirectoryServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/System.DirectoryServices.5.0.0/ref/netstandard2.0/System.DirectoryServices.dll -------------------------------------------------------------------------------- /packages/System.DirectoryServices.5.0.0/ref/netstandard2.0/System.DirectoryServices.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/System.DirectoryServices.5.0.0/ref/netstandard2.0/System.DirectoryServices.xml -------------------------------------------------------------------------------- /packages/System.DirectoryServices.5.0.0/runtimes/win/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.DirectoryServices.5.0.0/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/System.DirectoryServices.5.0.0/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll -------------------------------------------------------------------------------- /packages/System.DirectoryServices.5.0.0/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/System.DirectoryServices.5.0.0/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.xml -------------------------------------------------------------------------------- /packages/System.DirectoryServices.5.0.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.DirectoryServices.5.0.0/version.txt: -------------------------------------------------------------------------------- 1 | cf258a14b70ad9069470a108f13765e0e5988f51 2 | -------------------------------------------------------------------------------- /packages/System.Management.4.7.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/System.Management.4.7.0/.signature.p7s -------------------------------------------------------------------------------- /packages/System.Management.4.7.0/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/System.Management.4.7.0/LICENSE.TXT -------------------------------------------------------------------------------- /packages/System.Management.4.7.0/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/System.Management.4.7.0/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /packages/System.Management.4.7.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Management.4.7.0/lib/netstandard2.0/System.Management.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/System.Management.4.7.0/lib/netstandard2.0/System.Management.dll -------------------------------------------------------------------------------- /packages/System.Management.4.7.0/lib/netstandard2.0/System.Management.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/System.Management.4.7.0/lib/netstandard2.0/System.Management.xml -------------------------------------------------------------------------------- /packages/System.Management.4.7.0/ref/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Management.4.7.0/ref/netstandard2.0/System.Management.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/System.Management.4.7.0/ref/netstandard2.0/System.Management.dll -------------------------------------------------------------------------------- /packages/System.Management.4.7.0/ref/netstandard2.0/System.Management.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/System.Management.4.7.0/ref/netstandard2.0/System.Management.xml -------------------------------------------------------------------------------- /packages/System.Management.4.7.0/runtimes/win/lib/net45/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Management.4.7.0/runtimes/win/lib/netcoreapp2.0/System.Management.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/System.Management.4.7.0/runtimes/win/lib/netcoreapp2.0/System.Management.dll -------------------------------------------------------------------------------- /packages/System.Management.4.7.0/runtimes/win/lib/netcoreapp2.0/System.Management.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iomoath/SharpStrike/HEAD/packages/System.Management.4.7.0/runtimes/win/lib/netcoreapp2.0/System.Management.xml -------------------------------------------------------------------------------- /packages/System.Management.4.7.0/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Management.4.7.0/version.txt: -------------------------------------------------------------------------------- 1 | 0f7f38c4fd323b26da10cce95f857f77f0f09b48 2 | --------------------------------------------------------------------------------