├── .gitignore ├── ADManager.sln ├── ADManager ├── ADManager.csproj ├── ADManager.ruleset ├── App.config ├── ApplicationContext │ └── MyApplicationContext.cs ├── Business │ ├── AbuseIpService │ │ └── AbuseService.cs │ ├── CharConvertion │ │ └── EnglishChar.cs │ ├── Computers │ │ ├── BusinessComputer.cs │ │ └── ComputerInfo.cs │ ├── DTConvert │ │ └── ListtoDtConverter.cs │ ├── DataTable │ │ └── DataTableFill.cs │ ├── OU │ │ └── OUClass.cs │ ├── Report │ │ └── Report.cs │ └── Users │ │ ├── BusinessUser.cs │ │ ├── UserFormInputs.cs │ │ └── UsersProperties.cs ├── DAL │ ├── Authentication.cs │ ├── Computer.cs │ └── User.cs ├── Presentation │ ├── About │ │ ├── About.Designer.cs │ │ ├── About.cs │ │ └── About.resx │ ├── BlacklistKontrol │ │ ├── BlacklistKontrol.Designer.cs │ │ ├── BlacklistKontrol.cs │ │ └── BlacklistKontrol.resx │ ├── Computer │ │ ├── ComputerForm.Designer.cs │ │ ├── ComputerForm.cs │ │ └── ComputerForm.resx │ ├── ComputerInfo │ │ ├── ComputerInfoForm.Designer.cs │ │ ├── ComputerInfoForm.cs │ │ └── ComputerInfoForm.resx │ ├── Contact │ │ ├── Contact.Designer.cs │ │ ├── Contact.cs │ │ └── Contact.resx │ ├── Home │ │ ├── Home.Designer.cs │ │ ├── Home.cs │ │ └── Home.resx │ ├── Intro │ │ ├── Intro.Designer.cs │ │ ├── Intro.cs │ │ └── Intro.resx │ ├── Login │ │ ├── Giris.Designer.cs │ │ ├── Giris.cs │ │ └── Giris.resx │ └── User │ │ ├── AdminListesi │ │ ├── AdminListesi.Designer.cs │ │ ├── AdminListesi.cs │ │ └── AdminListesi.resx │ │ ├── PasswordChange │ │ ├── PasswordChange.Designer.cs │ │ ├── PasswordChange.cs │ │ └── PasswordChange.resx │ │ ├── UserAdmin │ │ ├── AdminUye.Designer.cs │ │ ├── AdminUye.cs │ │ └── AdminUye.resx │ │ ├── UserForm │ │ ├── UserForm.Designer.cs │ │ ├── UserForm.cs │ │ └── UserForm.resx │ │ └── UserMembersFrm │ │ ├── UsersMemFrm.Designer.cs │ │ ├── UsersMemFrm.cs │ │ └── UsersMemFrm.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── packages.config ├── ADManagerTests ├── ADManagerTests.csproj ├── Business │ ├── Computers │ │ └── BusinessComputerTests.cs │ └── Users │ │ └── BusinessUserTests.cs ├── DAL │ └── AuthenticationTests.cs └── Properties │ └── AssemblyInfo.cs ├── Kurulum └── setup.exe ├── LICENSE ├── README.md ├── ScreenShots ├── BilgisayarArayuz.PNG ├── Home.png ├── KullaniciArayuz.png ├── logo.ico └── uyg_logo.png └── Sln └── ADManager.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/.gitignore -------------------------------------------------------------------------------- /ADManager.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager.sln -------------------------------------------------------------------------------- /ADManager/ADManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/ADManager.csproj -------------------------------------------------------------------------------- /ADManager/ADManager.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/ADManager.ruleset -------------------------------------------------------------------------------- /ADManager/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/App.config -------------------------------------------------------------------------------- /ADManager/ApplicationContext/MyApplicationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/ApplicationContext/MyApplicationContext.cs -------------------------------------------------------------------------------- /ADManager/Business/AbuseIpService/AbuseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Business/AbuseIpService/AbuseService.cs -------------------------------------------------------------------------------- /ADManager/Business/CharConvertion/EnglishChar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Business/CharConvertion/EnglishChar.cs -------------------------------------------------------------------------------- /ADManager/Business/Computers/BusinessComputer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Business/Computers/BusinessComputer.cs -------------------------------------------------------------------------------- /ADManager/Business/Computers/ComputerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Business/Computers/ComputerInfo.cs -------------------------------------------------------------------------------- /ADManager/Business/DTConvert/ListtoDtConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Business/DTConvert/ListtoDtConverter.cs -------------------------------------------------------------------------------- /ADManager/Business/DataTable/DataTableFill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Business/DataTable/DataTableFill.cs -------------------------------------------------------------------------------- /ADManager/Business/OU/OUClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Business/OU/OUClass.cs -------------------------------------------------------------------------------- /ADManager/Business/Report/Report.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Business/Report/Report.cs -------------------------------------------------------------------------------- /ADManager/Business/Users/BusinessUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Business/Users/BusinessUser.cs -------------------------------------------------------------------------------- /ADManager/Business/Users/UserFormInputs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Business/Users/UserFormInputs.cs -------------------------------------------------------------------------------- /ADManager/Business/Users/UsersProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Business/Users/UsersProperties.cs -------------------------------------------------------------------------------- /ADManager/DAL/Authentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/DAL/Authentication.cs -------------------------------------------------------------------------------- /ADManager/DAL/Computer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/DAL/Computer.cs -------------------------------------------------------------------------------- /ADManager/DAL/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/DAL/User.cs -------------------------------------------------------------------------------- /ADManager/Presentation/About/About.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/About/About.Designer.cs -------------------------------------------------------------------------------- /ADManager/Presentation/About/About.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/About/About.cs -------------------------------------------------------------------------------- /ADManager/Presentation/About/About.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/About/About.resx -------------------------------------------------------------------------------- /ADManager/Presentation/BlacklistKontrol/BlacklistKontrol.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/BlacklistKontrol/BlacklistKontrol.Designer.cs -------------------------------------------------------------------------------- /ADManager/Presentation/BlacklistKontrol/BlacklistKontrol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/BlacklistKontrol/BlacklistKontrol.cs -------------------------------------------------------------------------------- /ADManager/Presentation/BlacklistKontrol/BlacklistKontrol.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/BlacklistKontrol/BlacklistKontrol.resx -------------------------------------------------------------------------------- /ADManager/Presentation/Computer/ComputerForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/Computer/ComputerForm.Designer.cs -------------------------------------------------------------------------------- /ADManager/Presentation/Computer/ComputerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/Computer/ComputerForm.cs -------------------------------------------------------------------------------- /ADManager/Presentation/Computer/ComputerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/Computer/ComputerForm.resx -------------------------------------------------------------------------------- /ADManager/Presentation/ComputerInfo/ComputerInfoForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/ComputerInfo/ComputerInfoForm.Designer.cs -------------------------------------------------------------------------------- /ADManager/Presentation/ComputerInfo/ComputerInfoForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/ComputerInfo/ComputerInfoForm.cs -------------------------------------------------------------------------------- /ADManager/Presentation/ComputerInfo/ComputerInfoForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/ComputerInfo/ComputerInfoForm.resx -------------------------------------------------------------------------------- /ADManager/Presentation/Contact/Contact.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/Contact/Contact.Designer.cs -------------------------------------------------------------------------------- /ADManager/Presentation/Contact/Contact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/Contact/Contact.cs -------------------------------------------------------------------------------- /ADManager/Presentation/Contact/Contact.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/Contact/Contact.resx -------------------------------------------------------------------------------- /ADManager/Presentation/Home/Home.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/Home/Home.Designer.cs -------------------------------------------------------------------------------- /ADManager/Presentation/Home/Home.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/Home/Home.cs -------------------------------------------------------------------------------- /ADManager/Presentation/Home/Home.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/Home/Home.resx -------------------------------------------------------------------------------- /ADManager/Presentation/Intro/Intro.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/Intro/Intro.Designer.cs -------------------------------------------------------------------------------- /ADManager/Presentation/Intro/Intro.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/Intro/Intro.cs -------------------------------------------------------------------------------- /ADManager/Presentation/Intro/Intro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/Intro/Intro.resx -------------------------------------------------------------------------------- /ADManager/Presentation/Login/Giris.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/Login/Giris.Designer.cs -------------------------------------------------------------------------------- /ADManager/Presentation/Login/Giris.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/Login/Giris.cs -------------------------------------------------------------------------------- /ADManager/Presentation/Login/Giris.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/Login/Giris.resx -------------------------------------------------------------------------------- /ADManager/Presentation/User/AdminListesi/AdminListesi.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/User/AdminListesi/AdminListesi.Designer.cs -------------------------------------------------------------------------------- /ADManager/Presentation/User/AdminListesi/AdminListesi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/User/AdminListesi/AdminListesi.cs -------------------------------------------------------------------------------- /ADManager/Presentation/User/AdminListesi/AdminListesi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/User/AdminListesi/AdminListesi.resx -------------------------------------------------------------------------------- /ADManager/Presentation/User/PasswordChange/PasswordChange.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/User/PasswordChange/PasswordChange.Designer.cs -------------------------------------------------------------------------------- /ADManager/Presentation/User/PasswordChange/PasswordChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/User/PasswordChange/PasswordChange.cs -------------------------------------------------------------------------------- /ADManager/Presentation/User/PasswordChange/PasswordChange.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/User/PasswordChange/PasswordChange.resx -------------------------------------------------------------------------------- /ADManager/Presentation/User/UserAdmin/AdminUye.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/User/UserAdmin/AdminUye.Designer.cs -------------------------------------------------------------------------------- /ADManager/Presentation/User/UserAdmin/AdminUye.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/User/UserAdmin/AdminUye.cs -------------------------------------------------------------------------------- /ADManager/Presentation/User/UserAdmin/AdminUye.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/User/UserAdmin/AdminUye.resx -------------------------------------------------------------------------------- /ADManager/Presentation/User/UserForm/UserForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/User/UserForm/UserForm.Designer.cs -------------------------------------------------------------------------------- /ADManager/Presentation/User/UserForm/UserForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/User/UserForm/UserForm.cs -------------------------------------------------------------------------------- /ADManager/Presentation/User/UserForm/UserForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/User/UserForm/UserForm.resx -------------------------------------------------------------------------------- /ADManager/Presentation/User/UserMembersFrm/UsersMemFrm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/User/UserMembersFrm/UsersMemFrm.Designer.cs -------------------------------------------------------------------------------- /ADManager/Presentation/User/UserMembersFrm/UsersMemFrm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/User/UserMembersFrm/UsersMemFrm.cs -------------------------------------------------------------------------------- /ADManager/Presentation/User/UserMembersFrm/UsersMemFrm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Presentation/User/UserMembersFrm/UsersMemFrm.resx -------------------------------------------------------------------------------- /ADManager/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Program.cs -------------------------------------------------------------------------------- /ADManager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ADManager/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ADManager/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Properties/Resources.resx -------------------------------------------------------------------------------- /ADManager/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ADManager/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/Properties/Settings.settings -------------------------------------------------------------------------------- /ADManager/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManager/packages.config -------------------------------------------------------------------------------- /ADManagerTests/ADManagerTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManagerTests/ADManagerTests.csproj -------------------------------------------------------------------------------- /ADManagerTests/Business/Computers/BusinessComputerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManagerTests/Business/Computers/BusinessComputerTests.cs -------------------------------------------------------------------------------- /ADManagerTests/Business/Users/BusinessUserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManagerTests/Business/Users/BusinessUserTests.cs -------------------------------------------------------------------------------- /ADManagerTests/DAL/AuthenticationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManagerTests/DAL/AuthenticationTests.cs -------------------------------------------------------------------------------- /ADManagerTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ADManagerTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Kurulum/setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/Kurulum/setup.exe -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/README.md -------------------------------------------------------------------------------- /ScreenShots/BilgisayarArayuz.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ScreenShots/BilgisayarArayuz.PNG -------------------------------------------------------------------------------- /ScreenShots/Home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ScreenShots/Home.png -------------------------------------------------------------------------------- /ScreenShots/KullaniciArayuz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ScreenShots/KullaniciArayuz.png -------------------------------------------------------------------------------- /ScreenShots/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ScreenShots/logo.ico -------------------------------------------------------------------------------- /ScreenShots/uyg_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/ScreenShots/uyg_logo.png -------------------------------------------------------------------------------- /Sln/ADManager.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cankirism/ADManager/HEAD/Sln/ADManager.sln --------------------------------------------------------------------------------