├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── src ├── ECMA2HostCSV │ ├── ECMA2Host Connector Export │ │ └── Configuration - CSV.xml │ ├── Prerequisite Files │ │ ├── InputFile.txt │ │ └── Schema.xml │ └── Scripts │ │ ├── CommonModule.psm1 │ │ ├── Export Script.ps1 │ │ ├── Import Scripts.ps1 │ │ └── Schema Script.ps1 ├── ExchangeConnector │ ├── BeginImport.ps1 │ ├── ExportData.ps1 │ ├── GetHierarchy.ps1 │ ├── GetPartition.ps1 │ ├── GetSchema.ps1 │ ├── ImportData.ps1 │ └── xADSyncPSConnectorModule.psm1 ├── FlatFileConnector │ ├── BeginExport.ps1 │ ├── BeginImport.ps1 │ ├── ComplexConsultants.txt │ ├── ComplexEmployees.txt │ ├── ComplexOrganizations.txt │ ├── ComplexSampleInputFile.txt │ ├── ExportData.ps1 │ ├── GetPartition.ps1 │ ├── GetSchema.ps1 │ ├── ImportData.ps1 │ ├── SampleInputFile.txt │ └── xADSyncPSConnectorModule.psm1 ├── LyncConnector │ ├── EventLogConfig │ │ ├── Register-EventSource.ps1 │ │ └── app.config │ ├── LyncConnector.sln │ ├── Scripts │ │ ├── 1. Lync.Common.psm1 │ │ ├── 10. ExportScript-Lync.ps1 │ │ ├── 11. End-ExportScript-Lync.ps1 │ │ ├── 2. ValidationScript-Lync.ps1 │ │ ├── 3. SchemaScript-Lync.ps1 │ │ ├── 4. PartitionScript-Lync.ps1 │ │ ├── 5. HierarchyScript-Lync.ps1 │ │ ├── 6. Begin-ImportScript-Lync.ps1 │ │ ├── 7. ImportScript-Lync.ps1 │ │ ├── 8. End-ImportScript-Lync.ps1 │ │ ├── 9. Begin-ExportScript-Lync.ps1 │ │ ├── Schema-Lync.xml │ │ ├── TestHarness-Lync.ps1 │ │ └── TestHarness.Common.psm1 │ ├── Template │ │ └── LyncConnectorConfigExport.xml │ └── TestData │ │ ├── Lync-Export-Add-User.xml │ │ ├── Lync-Export-Delete-User.xml │ │ └── Lync-Export-Update-User.xml ├── Modules │ └── xADSyncPSConnectorModule.psm1 └── ReferencedAssemblies │ └── Files.txt └── wiki └── FlatFileConnector ├── Fig0025.jpg ├── Fig0026.jpg ├── Fig0027.jpg ├── Fig0029.jpg ├── Fig0030.jpg └── Fig0040.jpg /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/SECURITY.md -------------------------------------------------------------------------------- /src/ECMA2HostCSV/ECMA2Host Connector Export/Configuration - CSV.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/ECMA2HostCSV/ECMA2Host Connector Export/Configuration - CSV.xml -------------------------------------------------------------------------------- /src/ECMA2HostCSV/Prerequisite Files/InputFile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/ECMA2HostCSV/Prerequisite Files/InputFile.txt -------------------------------------------------------------------------------- /src/ECMA2HostCSV/Prerequisite Files/Schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/ECMA2HostCSV/Prerequisite Files/Schema.xml -------------------------------------------------------------------------------- /src/ECMA2HostCSV/Scripts/CommonModule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/ECMA2HostCSV/Scripts/CommonModule.psm1 -------------------------------------------------------------------------------- /src/ECMA2HostCSV/Scripts/Export Script.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/ECMA2HostCSV/Scripts/Export Script.ps1 -------------------------------------------------------------------------------- /src/ECMA2HostCSV/Scripts/Import Scripts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/ECMA2HostCSV/Scripts/Import Scripts.ps1 -------------------------------------------------------------------------------- /src/ECMA2HostCSV/Scripts/Schema Script.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/ECMA2HostCSV/Scripts/Schema Script.ps1 -------------------------------------------------------------------------------- /src/ExchangeConnector/BeginImport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/ExchangeConnector/BeginImport.ps1 -------------------------------------------------------------------------------- /src/ExchangeConnector/ExportData.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/ExchangeConnector/ExportData.ps1 -------------------------------------------------------------------------------- /src/ExchangeConnector/GetHierarchy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/ExchangeConnector/GetHierarchy.ps1 -------------------------------------------------------------------------------- /src/ExchangeConnector/GetPartition.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/ExchangeConnector/GetPartition.ps1 -------------------------------------------------------------------------------- /src/ExchangeConnector/GetSchema.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/ExchangeConnector/GetSchema.ps1 -------------------------------------------------------------------------------- /src/ExchangeConnector/ImportData.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/ExchangeConnector/ImportData.ps1 -------------------------------------------------------------------------------- /src/ExchangeConnector/xADSyncPSConnectorModule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/ExchangeConnector/xADSyncPSConnectorModule.psm1 -------------------------------------------------------------------------------- /src/FlatFileConnector/BeginExport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/FlatFileConnector/BeginExport.ps1 -------------------------------------------------------------------------------- /src/FlatFileConnector/BeginImport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/FlatFileConnector/BeginImport.ps1 -------------------------------------------------------------------------------- /src/FlatFileConnector/ComplexConsultants.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/FlatFileConnector/ComplexConsultants.txt -------------------------------------------------------------------------------- /src/FlatFileConnector/ComplexEmployees.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/FlatFileConnector/ComplexEmployees.txt -------------------------------------------------------------------------------- /src/FlatFileConnector/ComplexOrganizations.txt: -------------------------------------------------------------------------------- 1 | Company; 2 | Contoso; 3 | Fabrikam; -------------------------------------------------------------------------------- /src/FlatFileConnector/ComplexSampleInputFile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/FlatFileConnector/ComplexSampleInputFile.txt -------------------------------------------------------------------------------- /src/FlatFileConnector/ExportData.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/FlatFileConnector/ExportData.ps1 -------------------------------------------------------------------------------- /src/FlatFileConnector/GetPartition.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/FlatFileConnector/GetPartition.ps1 -------------------------------------------------------------------------------- /src/FlatFileConnector/GetSchema.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/FlatFileConnector/GetSchema.ps1 -------------------------------------------------------------------------------- /src/FlatFileConnector/ImportData.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/FlatFileConnector/ImportData.ps1 -------------------------------------------------------------------------------- /src/FlatFileConnector/SampleInputFile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/FlatFileConnector/SampleInputFile.txt -------------------------------------------------------------------------------- /src/FlatFileConnector/xADSyncPSConnectorModule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/FlatFileConnector/xADSyncPSConnectorModule.psm1 -------------------------------------------------------------------------------- /src/LyncConnector/EventLogConfig/Register-EventSource.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/LyncConnector/EventLogConfig/Register-EventSource.ps1 -------------------------------------------------------------------------------- /src/LyncConnector/EventLogConfig/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/LyncConnector/EventLogConfig/app.config -------------------------------------------------------------------------------- /src/LyncConnector/LyncConnector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/LyncConnector/LyncConnector.sln -------------------------------------------------------------------------------- /src/LyncConnector/Scripts/1. Lync.Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/LyncConnector/Scripts/1. Lync.Common.psm1 -------------------------------------------------------------------------------- /src/LyncConnector/Scripts/10. ExportScript-Lync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/LyncConnector/Scripts/10. ExportScript-Lync.ps1 -------------------------------------------------------------------------------- /src/LyncConnector/Scripts/11. End-ExportScript-Lync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/LyncConnector/Scripts/11. End-ExportScript-Lync.ps1 -------------------------------------------------------------------------------- /src/LyncConnector/Scripts/2. ValidationScript-Lync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/LyncConnector/Scripts/2. ValidationScript-Lync.ps1 -------------------------------------------------------------------------------- /src/LyncConnector/Scripts/3. SchemaScript-Lync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/LyncConnector/Scripts/3. SchemaScript-Lync.ps1 -------------------------------------------------------------------------------- /src/LyncConnector/Scripts/4. PartitionScript-Lync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/LyncConnector/Scripts/4. PartitionScript-Lync.ps1 -------------------------------------------------------------------------------- /src/LyncConnector/Scripts/5. HierarchyScript-Lync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/LyncConnector/Scripts/5. HierarchyScript-Lync.ps1 -------------------------------------------------------------------------------- /src/LyncConnector/Scripts/6. Begin-ImportScript-Lync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/LyncConnector/Scripts/6. Begin-ImportScript-Lync.ps1 -------------------------------------------------------------------------------- /src/LyncConnector/Scripts/7. ImportScript-Lync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/LyncConnector/Scripts/7. ImportScript-Lync.ps1 -------------------------------------------------------------------------------- /src/LyncConnector/Scripts/8. End-ImportScript-Lync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/LyncConnector/Scripts/8. End-ImportScript-Lync.ps1 -------------------------------------------------------------------------------- /src/LyncConnector/Scripts/9. Begin-ExportScript-Lync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/LyncConnector/Scripts/9. Begin-ExportScript-Lync.ps1 -------------------------------------------------------------------------------- /src/LyncConnector/Scripts/Schema-Lync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/LyncConnector/Scripts/Schema-Lync.xml -------------------------------------------------------------------------------- /src/LyncConnector/Scripts/TestHarness-Lync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/LyncConnector/Scripts/TestHarness-Lync.ps1 -------------------------------------------------------------------------------- /src/LyncConnector/Scripts/TestHarness.Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/LyncConnector/Scripts/TestHarness.Common.psm1 -------------------------------------------------------------------------------- /src/LyncConnector/Template/LyncConnectorConfigExport.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/LyncConnector/Template/LyncConnectorConfigExport.xml -------------------------------------------------------------------------------- /src/LyncConnector/TestData/Lync-Export-Add-User.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/LyncConnector/TestData/Lync-Export-Add-User.xml -------------------------------------------------------------------------------- /src/LyncConnector/TestData/Lync-Export-Delete-User.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/LyncConnector/TestData/Lync-Export-Delete-User.xml -------------------------------------------------------------------------------- /src/LyncConnector/TestData/Lync-Export-Update-User.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/LyncConnector/TestData/Lync-Export-Update-User.xml -------------------------------------------------------------------------------- /src/Modules/xADSyncPSConnectorModule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/Modules/xADSyncPSConnectorModule.psm1 -------------------------------------------------------------------------------- /src/ReferencedAssemblies/Files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/src/ReferencedAssemblies/Files.txt -------------------------------------------------------------------------------- /wiki/FlatFileConnector/Fig0025.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/wiki/FlatFileConnector/Fig0025.jpg -------------------------------------------------------------------------------- /wiki/FlatFileConnector/Fig0026.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/wiki/FlatFileConnector/Fig0026.jpg -------------------------------------------------------------------------------- /wiki/FlatFileConnector/Fig0027.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/wiki/FlatFileConnector/Fig0027.jpg -------------------------------------------------------------------------------- /wiki/FlatFileConnector/Fig0029.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/wiki/FlatFileConnector/Fig0029.jpg -------------------------------------------------------------------------------- /wiki/FlatFileConnector/Fig0030.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/wiki/FlatFileConnector/Fig0030.jpg -------------------------------------------------------------------------------- /wiki/FlatFileConnector/Fig0040.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIMPowerShellConnectors/HEAD/wiki/FlatFileConnector/Fig0040.jpg --------------------------------------------------------------------------------