├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── docfx ├── .gitignore ├── api │ ├── .gitignore │ └── index.md ├── docfx.json ├── examples │ ├── custom_startup.md │ ├── default_startup.md │ └── toc.yml ├── index.md ├── toc.yml └── webservices.filter.yaml ├── docs ├── api │ ├── Microsoft.UpdateServcies.WebServices.ClientReporting.BasicData.html │ ├── Microsoft.UpdateServcies.WebServices.ClientReporting.ChangedComputer.html │ ├── Microsoft.UpdateServcies.WebServices.ClientReporting.ComputerChangeType.html │ ├── Microsoft.UpdateServcies.WebServices.ClientReporting.ComputerLastRollupNumber.html │ ├── Microsoft.UpdateServcies.WebServices.ClientReporting.ComputerRollupDetails.html │ ├── Microsoft.UpdateServcies.WebServices.ClientReporting.ComputerRollupInfo.html │ ├── Microsoft.UpdateServcies.WebServices.ClientReporting.ComputerStatusRollupInfo.html │ ├── Microsoft.UpdateServcies.WebServices.ClientReporting.ComputerStatusRollupUpdateStatus.html │ ├── Microsoft.UpdateServcies.WebServices.ClientReporting.ComputerTargetIdentifier.html │ ├── Microsoft.UpdateServcies.WebServices.ClientReporting.Cookie.html │ ├── Microsoft.UpdateServcies.WebServices.ClientReporting.DetailedVersion.html │ ├── Microsoft.UpdateServcies.WebServices.ClientReporting.DownstreamServerRollupClientActivitySummary.html │ ├── Microsoft.UpdateServcies.WebServices.ClientReporting.DownstreamServerRollupClientSummary.html │ ├── Microsoft.UpdateServcies.WebServices.ClientReporting.DownstreamServerRollupInfo.html │ ├── Microsoft.UpdateServcies.WebServices.ClientReporting.DownstreamServerRollupServerSummary.html │ ├── Microsoft.UpdateServcies.WebServices.ClientReporting.ExtendedData.html │ ├── Microsoft.UpdateServcies.WebServices.ClientReporting.PrivateData.html │ ├── Microsoft.UpdateServcies.WebServices.ClientReporting.ProcessorArchitecture.html │ ├── Microsoft.UpdateServcies.WebServices.ClientReporting.ReportingEvent.html │ ├── Microsoft.UpdateServcies.WebServices.ClientReporting.ReportingInventory.html │ ├── Microsoft.UpdateServcies.WebServices.ClientReporting.RollupConfiguration.html │ ├── Microsoft.UpdateServcies.WebServices.ClientReporting.UpdateRevisionIdentifier.html │ ├── Microsoft.UpdateServcies.WebServices.ClientReporting.WebServiceSoap.html │ ├── Microsoft.UpdateServcies.WebServices.ClientReporting.WebServiceSoapChannel.html │ ├── Microsoft.UpdateServcies.WebServices.ClientReporting.WebServiceSoapClient.EndpointConfiguration.html │ ├── Microsoft.UpdateServcies.WebServices.ClientReporting.WebServiceSoapClient.html │ ├── Microsoft.UpdateServcies.WebServices.ClientReporting.html │ ├── Microsoft.UpdateServices.ClientSync.Server.ClientServerSyncContentController.html │ ├── Microsoft.UpdateServices.ClientSync.Server.ClientSyncContentController.html │ ├── Microsoft.UpdateServices.ClientSync.Server.ClientSyncWebService.UnApprovedUpdatesRequestedDelegate.html │ ├── Microsoft.UpdateServices.ClientSync.Server.ClientSyncWebService.html │ ├── Microsoft.UpdateServices.ClientSync.Server.ContentController.html │ ├── Microsoft.UpdateServices.ClientSync.Server.ReportingWebService.html │ ├── Microsoft.UpdateServices.ClientSync.Server.SimpleAuthenticationWebService.html │ ├── Microsoft.UpdateServices.ClientSync.Server.UpdateServerStartup.html │ ├── Microsoft.UpdateServices.ClientSync.Server.html │ ├── index.html │ └── toc.html ├── examples │ ├── custom_startup.html │ ├── default_startup.html │ └── toc.html ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── index.html ├── logo.svg ├── manifest.json ├── search-stopwords.json ├── styles │ ├── docfx.css │ ├── docfx.js │ ├── docfx.vendor.css │ ├── docfx.vendor.js │ ├── lunr.js │ ├── lunr.min.js │ ├── main.css │ ├── main.js │ └── search-worker.js ├── toc.html └── xrefmap.yml ├── nuget ├── UpdateServices.ClientServerSync.nuspec ├── nuget.exe └── readme.txt └── src ├── client-server-sync-lib ├── Connected Services │ ├── Microsoft.UpdateServcies.WebServices.ClientReporting │ │ ├── ConnectedService.json │ │ └── Reference.cs │ ├── Microsoft.UpdateServices.WebServices.ClientAuthentication │ │ ├── ConnectedService.json │ │ └── Reference.cs │ └── Microsoft.UpdateServices.WebServices.ClientSync │ │ ├── ConnectedService.json │ │ └── Reference.cs ├── Server │ ├── ClientSync.cs │ ├── ClientSyncContentController.cs │ ├── ClientSync_Approvals.cs │ ├── ClientSync_Drivers.cs │ ├── ClientSync_Software.cs │ ├── IClientSync.cs │ ├── IReportingService.cs │ ├── ISimpleAuthentication.cs │ ├── ReportingService.cs │ ├── SimpleAuthentication.cs │ ├── UpdateServerStartup.cs │ └── UpdateXmlTransformer.cs ├── client-server-sync-lib.csproj └── client-server-sync-lib.xml └── downsync-tool ├── CommandLineOptions.cs ├── ConsoleOutput.cs ├── Program.cs ├── UpdateServer.cs ├── default-server-configuration.json ├── downsync-tool.csproj └── publish.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docfx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docfx/.gitignore -------------------------------------------------------------------------------- /docfx/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docfx/api/.gitignore -------------------------------------------------------------------------------- /docfx/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docfx/api/index.md -------------------------------------------------------------------------------- /docfx/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docfx/docfx.json -------------------------------------------------------------------------------- /docfx/examples/custom_startup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docfx/examples/custom_startup.md -------------------------------------------------------------------------------- /docfx/examples/default_startup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docfx/examples/default_startup.md -------------------------------------------------------------------------------- /docfx/examples/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docfx/examples/toc.yml -------------------------------------------------------------------------------- /docfx/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docfx/index.md -------------------------------------------------------------------------------- /docfx/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docfx/toc.yml -------------------------------------------------------------------------------- /docfx/webservices.filter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docfx/webservices.filter.yaml -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.BasicData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.BasicData.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.ChangedComputer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.ChangedComputer.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.ComputerChangeType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.ComputerChangeType.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.ComputerLastRollupNumber.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.ComputerLastRollupNumber.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.ComputerRollupDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.ComputerRollupDetails.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.ComputerRollupInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.ComputerRollupInfo.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.ComputerStatusRollupInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.ComputerStatusRollupInfo.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.ComputerStatusRollupUpdateStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.ComputerStatusRollupUpdateStatus.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.ComputerTargetIdentifier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.ComputerTargetIdentifier.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.Cookie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.Cookie.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.DetailedVersion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.DetailedVersion.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.DownstreamServerRollupClientActivitySummary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.DownstreamServerRollupClientActivitySummary.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.DownstreamServerRollupClientSummary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.DownstreamServerRollupClientSummary.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.DownstreamServerRollupInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.DownstreamServerRollupInfo.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.DownstreamServerRollupServerSummary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.DownstreamServerRollupServerSummary.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.ExtendedData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.ExtendedData.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.PrivateData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.PrivateData.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.ProcessorArchitecture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.ProcessorArchitecture.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.ReportingEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.ReportingEvent.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.ReportingInventory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.ReportingInventory.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.RollupConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.RollupConfiguration.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.UpdateRevisionIdentifier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.UpdateRevisionIdentifier.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.WebServiceSoap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.WebServiceSoap.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.WebServiceSoapChannel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.WebServiceSoapChannel.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.WebServiceSoapClient.EndpointConfiguration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.WebServiceSoapClient.EndpointConfiguration.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.WebServiceSoapClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.WebServiceSoapClient.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServcies.WebServices.ClientReporting.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServices.ClientSync.Server.ClientServerSyncContentController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServices.ClientSync.Server.ClientServerSyncContentController.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServices.ClientSync.Server.ClientSyncContentController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServices.ClientSync.Server.ClientSyncContentController.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServices.ClientSync.Server.ClientSyncWebService.UnApprovedUpdatesRequestedDelegate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServices.ClientSync.Server.ClientSyncWebService.UnApprovedUpdatesRequestedDelegate.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServices.ClientSync.Server.ClientSyncWebService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServices.ClientSync.Server.ClientSyncWebService.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServices.ClientSync.Server.ContentController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServices.ClientSync.Server.ContentController.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServices.ClientSync.Server.ReportingWebService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServices.ClientSync.Server.ReportingWebService.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServices.ClientSync.Server.SimpleAuthenticationWebService.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServices.ClientSync.Server.SimpleAuthenticationWebService.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServices.ClientSync.Server.UpdateServerStartup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServices.ClientSync.Server.UpdateServerStartup.html -------------------------------------------------------------------------------- /docs/api/Microsoft.UpdateServices.ClientSync.Server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/Microsoft.UpdateServices.ClientSync.Server.html -------------------------------------------------------------------------------- /docs/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/index.html -------------------------------------------------------------------------------- /docs/api/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/api/toc.html -------------------------------------------------------------------------------- /docs/examples/custom_startup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/examples/custom_startup.html -------------------------------------------------------------------------------- /docs/examples/default_startup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/examples/default_startup.html -------------------------------------------------------------------------------- /docs/examples/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/examples/toc.html -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/logo.svg -------------------------------------------------------------------------------- /docs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/manifest.json -------------------------------------------------------------------------------- /docs/search-stopwords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/search-stopwords.json -------------------------------------------------------------------------------- /docs/styles/docfx.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/styles/docfx.css -------------------------------------------------------------------------------- /docs/styles/docfx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/styles/docfx.js -------------------------------------------------------------------------------- /docs/styles/docfx.vendor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/styles/docfx.vendor.css -------------------------------------------------------------------------------- /docs/styles/docfx.vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/styles/docfx.vendor.js -------------------------------------------------------------------------------- /docs/styles/lunr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/styles/lunr.js -------------------------------------------------------------------------------- /docs/styles/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/styles/lunr.min.js -------------------------------------------------------------------------------- /docs/styles/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/styles/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/styles/main.js -------------------------------------------------------------------------------- /docs/styles/search-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/styles/search-worker.js -------------------------------------------------------------------------------- /docs/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/toc.html -------------------------------------------------------------------------------- /docs/xrefmap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/docs/xrefmap.yml -------------------------------------------------------------------------------- /nuget/UpdateServices.ClientServerSync.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/nuget/UpdateServices.ClientServerSync.nuspec -------------------------------------------------------------------------------- /nuget/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/nuget/nuget.exe -------------------------------------------------------------------------------- /nuget/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/nuget/readme.txt -------------------------------------------------------------------------------- /src/client-server-sync-lib/Connected Services/Microsoft.UpdateServcies.WebServices.ClientReporting/ConnectedService.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/src/client-server-sync-lib/Connected Services/Microsoft.UpdateServcies.WebServices.ClientReporting/ConnectedService.json -------------------------------------------------------------------------------- /src/client-server-sync-lib/Connected Services/Microsoft.UpdateServcies.WebServices.ClientReporting/Reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/src/client-server-sync-lib/Connected Services/Microsoft.UpdateServcies.WebServices.ClientReporting/Reference.cs -------------------------------------------------------------------------------- /src/client-server-sync-lib/Connected Services/Microsoft.UpdateServices.WebServices.ClientAuthentication/ConnectedService.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/src/client-server-sync-lib/Connected Services/Microsoft.UpdateServices.WebServices.ClientAuthentication/ConnectedService.json -------------------------------------------------------------------------------- /src/client-server-sync-lib/Connected Services/Microsoft.UpdateServices.WebServices.ClientAuthentication/Reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/src/client-server-sync-lib/Connected Services/Microsoft.UpdateServices.WebServices.ClientAuthentication/Reference.cs -------------------------------------------------------------------------------- /src/client-server-sync-lib/Connected Services/Microsoft.UpdateServices.WebServices.ClientSync/ConnectedService.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/src/client-server-sync-lib/Connected Services/Microsoft.UpdateServices.WebServices.ClientSync/ConnectedService.json -------------------------------------------------------------------------------- /src/client-server-sync-lib/Connected Services/Microsoft.UpdateServices.WebServices.ClientSync/Reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/src/client-server-sync-lib/Connected Services/Microsoft.UpdateServices.WebServices.ClientSync/Reference.cs -------------------------------------------------------------------------------- /src/client-server-sync-lib/Server/ClientSync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/src/client-server-sync-lib/Server/ClientSync.cs -------------------------------------------------------------------------------- /src/client-server-sync-lib/Server/ClientSyncContentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/src/client-server-sync-lib/Server/ClientSyncContentController.cs -------------------------------------------------------------------------------- /src/client-server-sync-lib/Server/ClientSync_Approvals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/src/client-server-sync-lib/Server/ClientSync_Approvals.cs -------------------------------------------------------------------------------- /src/client-server-sync-lib/Server/ClientSync_Drivers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/src/client-server-sync-lib/Server/ClientSync_Drivers.cs -------------------------------------------------------------------------------- /src/client-server-sync-lib/Server/ClientSync_Software.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/src/client-server-sync-lib/Server/ClientSync_Software.cs -------------------------------------------------------------------------------- /src/client-server-sync-lib/Server/IClientSync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/src/client-server-sync-lib/Server/IClientSync.cs -------------------------------------------------------------------------------- /src/client-server-sync-lib/Server/IReportingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/src/client-server-sync-lib/Server/IReportingService.cs -------------------------------------------------------------------------------- /src/client-server-sync-lib/Server/ISimpleAuthentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/src/client-server-sync-lib/Server/ISimpleAuthentication.cs -------------------------------------------------------------------------------- /src/client-server-sync-lib/Server/ReportingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/src/client-server-sync-lib/Server/ReportingService.cs -------------------------------------------------------------------------------- /src/client-server-sync-lib/Server/SimpleAuthentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/src/client-server-sync-lib/Server/SimpleAuthentication.cs -------------------------------------------------------------------------------- /src/client-server-sync-lib/Server/UpdateServerStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/src/client-server-sync-lib/Server/UpdateServerStartup.cs -------------------------------------------------------------------------------- /src/client-server-sync-lib/Server/UpdateXmlTransformer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/src/client-server-sync-lib/Server/UpdateXmlTransformer.cs -------------------------------------------------------------------------------- /src/client-server-sync-lib/client-server-sync-lib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/src/client-server-sync-lib/client-server-sync-lib.csproj -------------------------------------------------------------------------------- /src/client-server-sync-lib/client-server-sync-lib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/src/client-server-sync-lib/client-server-sync-lib.xml -------------------------------------------------------------------------------- /src/downsync-tool/CommandLineOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/src/downsync-tool/CommandLineOptions.cs -------------------------------------------------------------------------------- /src/downsync-tool/ConsoleOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/src/downsync-tool/ConsoleOutput.cs -------------------------------------------------------------------------------- /src/downsync-tool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/src/downsync-tool/Program.cs -------------------------------------------------------------------------------- /src/downsync-tool/UpdateServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/src/downsync-tool/UpdateServer.cs -------------------------------------------------------------------------------- /src/downsync-tool/default-server-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/src/downsync-tool/default-server-configuration.json -------------------------------------------------------------------------------- /src/downsync-tool/downsync-tool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/src/downsync-tool/downsync-tool.csproj -------------------------------------------------------------------------------- /src/downsync-tool/publish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/update-client-server-sync/HEAD/src/downsync-tool/publish.txt --------------------------------------------------------------------------------