├── .gitattributes ├── .gitignore ├── Indented.StubCommand ├── Indented.StubCommand.psd1 ├── Indented.StubCommand.psm1 ├── InitializeModule.ps1 ├── class │ └── ScriptBuilder.ps1 ├── help │ ├── Get-StubRequiredType.md │ ├── New-StubCommand.md │ ├── New-StubDynamicParam.md │ ├── New-StubModule.md │ └── New-StubType.md ├── private │ ├── GetTypeName.ps1 │ └── TestIsForeignAssembly.ps1 ├── public │ ├── Get-StubRequiredType.ps1 │ ├── New-StubCommand.ps1 │ ├── New-StubDynamicParam.ps1 │ ├── New-StubModule.ps1 │ └── New-StubType.ps1 ├── test │ ├── InitializeModule.tests.ps1 │ ├── classes │ │ └── ScriptBuilder.tests.ps1 │ ├── private │ │ ├── GetTypeName.tests.ps1 │ │ └── TestIsForeignAssembly.tests.ps1 │ └── public │ │ ├── Get-StubRequiredType.tests.ps1 │ │ ├── New-StubCommand.tests.ps1 │ │ ├── New-StubDynamicParam.tests.ps1 │ │ ├── New-StubModule.tests.ps1 │ │ └── New-StubType.tests.ps1 └── var │ └── assemblyList.txt ├── LICENSE ├── README.md ├── appveyor.yml └── examples ├── DnsClient.psm1 ├── DnsServer.psm1 ├── Kds.psm1 ├── ScheduledTasks.psm1 ├── ServerManager.psm1 ├── VMWare └── VMware.VimAutomation.Core.psm1 ├── WebAdministration.psm1 ├── activedirectory.psm1 └── exchange.psm1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/.gitignore -------------------------------------------------------------------------------- /Indented.StubCommand/Indented.StubCommand.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/Indented.StubCommand/Indented.StubCommand.psd1 -------------------------------------------------------------------------------- /Indented.StubCommand/Indented.StubCommand.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/Indented.StubCommand/Indented.StubCommand.psm1 -------------------------------------------------------------------------------- /Indented.StubCommand/InitializeModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/Indented.StubCommand/InitializeModule.ps1 -------------------------------------------------------------------------------- /Indented.StubCommand/class/ScriptBuilder.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/Indented.StubCommand/class/ScriptBuilder.ps1 -------------------------------------------------------------------------------- /Indented.StubCommand/help/Get-StubRequiredType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/Indented.StubCommand/help/Get-StubRequiredType.md -------------------------------------------------------------------------------- /Indented.StubCommand/help/New-StubCommand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/Indented.StubCommand/help/New-StubCommand.md -------------------------------------------------------------------------------- /Indented.StubCommand/help/New-StubDynamicParam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/Indented.StubCommand/help/New-StubDynamicParam.md -------------------------------------------------------------------------------- /Indented.StubCommand/help/New-StubModule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/Indented.StubCommand/help/New-StubModule.md -------------------------------------------------------------------------------- /Indented.StubCommand/help/New-StubType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/Indented.StubCommand/help/New-StubType.md -------------------------------------------------------------------------------- /Indented.StubCommand/private/GetTypeName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/Indented.StubCommand/private/GetTypeName.ps1 -------------------------------------------------------------------------------- /Indented.StubCommand/private/TestIsForeignAssembly.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/Indented.StubCommand/private/TestIsForeignAssembly.ps1 -------------------------------------------------------------------------------- /Indented.StubCommand/public/Get-StubRequiredType.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/Indented.StubCommand/public/Get-StubRequiredType.ps1 -------------------------------------------------------------------------------- /Indented.StubCommand/public/New-StubCommand.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/Indented.StubCommand/public/New-StubCommand.ps1 -------------------------------------------------------------------------------- /Indented.StubCommand/public/New-StubDynamicParam.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/Indented.StubCommand/public/New-StubDynamicParam.ps1 -------------------------------------------------------------------------------- /Indented.StubCommand/public/New-StubModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/Indented.StubCommand/public/New-StubModule.ps1 -------------------------------------------------------------------------------- /Indented.StubCommand/public/New-StubType.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/Indented.StubCommand/public/New-StubType.ps1 -------------------------------------------------------------------------------- /Indented.StubCommand/test/InitializeModule.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/Indented.StubCommand/test/InitializeModule.tests.ps1 -------------------------------------------------------------------------------- /Indented.StubCommand/test/classes/ScriptBuilder.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/Indented.StubCommand/test/classes/ScriptBuilder.tests.ps1 -------------------------------------------------------------------------------- /Indented.StubCommand/test/private/GetTypeName.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/Indented.StubCommand/test/private/GetTypeName.tests.ps1 -------------------------------------------------------------------------------- /Indented.StubCommand/test/private/TestIsForeignAssembly.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/Indented.StubCommand/test/private/TestIsForeignAssembly.tests.ps1 -------------------------------------------------------------------------------- /Indented.StubCommand/test/public/Get-StubRequiredType.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/Indented.StubCommand/test/public/Get-StubRequiredType.tests.ps1 -------------------------------------------------------------------------------- /Indented.StubCommand/test/public/New-StubCommand.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/Indented.StubCommand/test/public/New-StubCommand.tests.ps1 -------------------------------------------------------------------------------- /Indented.StubCommand/test/public/New-StubDynamicParam.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/Indented.StubCommand/test/public/New-StubDynamicParam.tests.ps1 -------------------------------------------------------------------------------- /Indented.StubCommand/test/public/New-StubModule.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/Indented.StubCommand/test/public/New-StubModule.tests.ps1 -------------------------------------------------------------------------------- /Indented.StubCommand/test/public/New-StubType.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/Indented.StubCommand/test/public/New-StubType.tests.ps1 -------------------------------------------------------------------------------- /Indented.StubCommand/var/assemblyList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/Indented.StubCommand/var/assemblyList.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/appveyor.yml -------------------------------------------------------------------------------- /examples/DnsClient.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/examples/DnsClient.psm1 -------------------------------------------------------------------------------- /examples/DnsServer.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/examples/DnsServer.psm1 -------------------------------------------------------------------------------- /examples/Kds.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/examples/Kds.psm1 -------------------------------------------------------------------------------- /examples/ScheduledTasks.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/examples/ScheduledTasks.psm1 -------------------------------------------------------------------------------- /examples/ServerManager.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/examples/ServerManager.psm1 -------------------------------------------------------------------------------- /examples/VMWare/VMware.VimAutomation.Core.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/examples/VMWare/VMware.VimAutomation.Core.psm1 -------------------------------------------------------------------------------- /examples/WebAdministration.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/examples/WebAdministration.psm1 -------------------------------------------------------------------------------- /examples/activedirectory.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/examples/activedirectory.psm1 -------------------------------------------------------------------------------- /examples/exchange.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indented-automation/Indented.StubCommand/HEAD/examples/exchange.psm1 --------------------------------------------------------------------------------