├── .gitattributes ├── .gitignore ├── ADReplStatus.csproj ├── ADReplStatus.sln ├── ADReplStatusForm.Designer.cs ├── ADReplStatusForm.cs ├── ADReplStatusForm.resx ├── AlternateCredsForm.Designer.cs ├── AlternateCredsForm.cs ├── AlternateCredsForm.resx ├── App.config ├── Forest.ico ├── PortTester.Designer.cs ├── PortTester.cs ├── PortTester.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── SetForestNameForm.Designer.cs ├── SetForestNameForm.cs ├── SetForestNameForm.resx ├── SetUserDomainControllerForm.Designer.cs ├── SetUserDomainControllerForm.cs ├── SetUserDomainControllerForm.resx ├── images ├── Darkmode.png ├── DomainController.png ├── Error.png ├── Forest.ico ├── Forest.png ├── Go.png ├── KeyLock.png └── Logging.png ├── packages.config ├── screenshot01.png ├── screenshot02.png ├── screenshot03.png └── screenshot04.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/.gitignore -------------------------------------------------------------------------------- /ADReplStatus.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/ADReplStatus.csproj -------------------------------------------------------------------------------- /ADReplStatus.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/ADReplStatus.sln -------------------------------------------------------------------------------- /ADReplStatusForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/ADReplStatusForm.Designer.cs -------------------------------------------------------------------------------- /ADReplStatusForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/ADReplStatusForm.cs -------------------------------------------------------------------------------- /ADReplStatusForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/ADReplStatusForm.resx -------------------------------------------------------------------------------- /AlternateCredsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/AlternateCredsForm.Designer.cs -------------------------------------------------------------------------------- /AlternateCredsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/AlternateCredsForm.cs -------------------------------------------------------------------------------- /AlternateCredsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/AlternateCredsForm.resx -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/App.config -------------------------------------------------------------------------------- /Forest.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/Forest.ico -------------------------------------------------------------------------------- /PortTester.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/PortTester.Designer.cs -------------------------------------------------------------------------------- /PortTester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/PortTester.cs -------------------------------------------------------------------------------- /PortTester.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/PortTester.resx -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/README.md -------------------------------------------------------------------------------- /SetForestNameForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/SetForestNameForm.Designer.cs -------------------------------------------------------------------------------- /SetForestNameForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/SetForestNameForm.cs -------------------------------------------------------------------------------- /SetForestNameForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/SetForestNameForm.resx -------------------------------------------------------------------------------- /SetUserDomainControllerForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/SetUserDomainControllerForm.Designer.cs -------------------------------------------------------------------------------- /SetUserDomainControllerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/SetUserDomainControllerForm.cs -------------------------------------------------------------------------------- /SetUserDomainControllerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/SetUserDomainControllerForm.resx -------------------------------------------------------------------------------- /images/Darkmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/images/Darkmode.png -------------------------------------------------------------------------------- /images/DomainController.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/images/DomainController.png -------------------------------------------------------------------------------- /images/Error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/images/Error.png -------------------------------------------------------------------------------- /images/Forest.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/images/Forest.ico -------------------------------------------------------------------------------- /images/Forest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/images/Forest.png -------------------------------------------------------------------------------- /images/Go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/images/Go.png -------------------------------------------------------------------------------- /images/KeyLock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/images/KeyLock.png -------------------------------------------------------------------------------- /images/Logging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/images/Logging.png -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/packages.config -------------------------------------------------------------------------------- /screenshot01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/screenshot01.png -------------------------------------------------------------------------------- /screenshot02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/screenshot02.png -------------------------------------------------------------------------------- /screenshot03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/screenshot03.png -------------------------------------------------------------------------------- /screenshot04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanries/ADReplStatus/HEAD/screenshot04.png --------------------------------------------------------------------------------