├── .gitattributes ├── .github ├── FUNDING.yml └── stale.yml ├── .gitignore ├── .gitmodules ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── README.md ├── license.txt └── src ├── Lithnet.Miiserver.Automation.Setup ├── Components.wxs ├── Lithnet.Miiserver.Automation.Setup.wixproj ├── Product.wxs └── license.rtf ├── Lithnet.Miiserver.Automation.sln ├── Lithnet.Miiserver.Automation.sln.DotSettings └── Lithnet.Miiserver.Automation ├── Clear-FullSyncWarning.cs ├── Clear-RunHistory.cs ├── Disconnect-CSObject.cs ├── DisconnectorState.cs ├── Export-ManagementAgent.cs ├── Export-MetaverseConfiguration.cs ├── FixedSizeQueueT.cs ├── Get-CSObject.cs ├── Get-Connectors.cs ├── Get-Disconnectors.cs ├── Get-LastRunDetails.cs ├── Get-MAStatistics.cs ├── Get-MVConfiguration.cs ├── Get-MVObject.cs ├── Get-MVSchema.cs ├── Get-ManagementAgent.cs ├── Get-PendingExportAdds.cs ├── Get-PendingExportDeletes.cs ├── Get-PendingExportRenames.cs ├── Get-PendingExportUpdates.cs ├── Get-PendingExports.cs ├── Get-PendingImportAdds.cs ├── Get-PendingImportDeletes.cs ├── Get-PendingImportUpdates.cs ├── Get-PendingImports.cs ├── Get-RunDetail.cs ├── Get-RunProfileNames.cs ├── Get-RunProfiles.cs ├── Get-RunSummary.cs ├── Get-SavedRunHistory.cs ├── Join-CSObject.cs ├── Lithnet.Miiserver.Automation.csproj ├── LithnetMIISAutomation.Help.pshproj ├── LithnetMiisAutomation.psd1 ├── LithnetMiisAutomation.psm1 ├── MATargetCmdlet.cs ├── MAWaitingCmdlet.cs ├── MiisController.cs ├── New-MVQuery.cs ├── ProgressItem.cs ├── Project-CSObject.cs ├── Properties └── AssemblyInfo.cs ├── Save-RunHistory.cs ├── Set-DisconnectorState.cs ├── Set-MVProvisioningRulesExtension.cs ├── Start-ManagementAgent.cs ├── Stop-ManagementAgent.cs ├── Sync-CSObject.cs ├── Wait-ManagementAgent.cs ├── en-us └── Lithnet.Miiserver.Automation.dll-help.xml └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/README.md -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/license.txt -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation.Setup/Components.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation.Setup/Components.wxs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation.Setup/Lithnet.Miiserver.Automation.Setup.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation.Setup/Lithnet.Miiserver.Automation.Setup.wixproj -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation.Setup/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation.Setup/Product.wxs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation.Setup/license.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation.Setup/license.rtf -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation.sln -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation.sln.DotSettings -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Clear-FullSyncWarning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Clear-FullSyncWarning.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Clear-RunHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Clear-RunHistory.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Disconnect-CSObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Disconnect-CSObject.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/DisconnectorState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/DisconnectorState.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Export-ManagementAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Export-ManagementAgent.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Export-MetaverseConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Export-MetaverseConfiguration.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/FixedSizeQueueT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/FixedSizeQueueT.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Get-CSObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Get-CSObject.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Get-Connectors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Get-Connectors.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Get-Disconnectors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Get-Disconnectors.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Get-LastRunDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Get-LastRunDetails.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Get-MAStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Get-MAStatistics.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Get-MVConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Get-MVConfiguration.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Get-MVObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Get-MVObject.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Get-MVSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Get-MVSchema.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Get-ManagementAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Get-ManagementAgent.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Get-PendingExportAdds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Get-PendingExportAdds.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Get-PendingExportDeletes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Get-PendingExportDeletes.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Get-PendingExportRenames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Get-PendingExportRenames.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Get-PendingExportUpdates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Get-PendingExportUpdates.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Get-PendingExports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Get-PendingExports.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Get-PendingImportAdds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Get-PendingImportAdds.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Get-PendingImportDeletes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Get-PendingImportDeletes.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Get-PendingImportUpdates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Get-PendingImportUpdates.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Get-PendingImports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Get-PendingImports.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Get-RunDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Get-RunDetail.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Get-RunProfileNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Get-RunProfileNames.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Get-RunProfiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Get-RunProfiles.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Get-RunSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Get-RunSummary.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Get-SavedRunHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Get-SavedRunHistory.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Join-CSObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Join-CSObject.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Lithnet.Miiserver.Automation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Lithnet.Miiserver.Automation.csproj -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/LithnetMIISAutomation.Help.pshproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/LithnetMIISAutomation.Help.pshproj -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/LithnetMiisAutomation.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/LithnetMiisAutomation.psd1 -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/LithnetMiisAutomation.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/LithnetMiisAutomation.psm1 -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/MATargetCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/MATargetCmdlet.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/MAWaitingCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/MAWaitingCmdlet.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/MiisController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/MiisController.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/New-MVQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/New-MVQuery.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/ProgressItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/ProgressItem.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Project-CSObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Project-CSObject.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Save-RunHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Save-RunHistory.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Set-DisconnectorState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Set-DisconnectorState.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Set-MVProvisioningRulesExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Set-MVProvisioningRulesExtension.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Start-ManagementAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Start-ManagementAgent.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Stop-ManagementAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Stop-ManagementAgent.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Sync-CSObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Sync-CSObject.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/Wait-ManagementAgent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/Wait-ManagementAgent.cs -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/en-us/Lithnet.Miiserver.Automation.dll-help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/en-us/Lithnet.Miiserver.Automation.dll-help.xml -------------------------------------------------------------------------------- /src/Lithnet.Miiserver.Automation/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lithnet/miis-powershell/HEAD/src/Lithnet.Miiserver.Automation/packages.config --------------------------------------------------------------------------------