[[oktatas:operációs rendszerek:windows|< Windows]] ====== Windows Server ====== * **Szerző:** Sallai András * Copyright (c) Sallai András, 2018 * Licenc: [[https://creativecommons.org/licenses/by-sa/4.0/|CC Attribution-Share Alike 4.0 International]] * Web: https://szit.hu ===== Beszerzés ===== * https://www.microsoft.com/en-us/evalcenter/evaluate-windows-server ===== Telepítés ===== Első képernyő: * Language to install: English (United States) * Time and currency format: English (United States) * Keyboard or input method: US ===== Alapkonfigurációk ===== sconfig ===== Információszerzés ===== Szabad hely: dir c:\ C:\>diskpart Microsoft DiskPart version 10.0.14393.0 Copyright (C) 1999-2013 Microsfoft Corporation. On computer: WIN-DDHHCC9DMOK DISKPART> list vol Volume ### Ltr Label Fs Type Size Status Info ---------- --- ----------- ----- ------- ------- ------- -------- Volume 0 D SSS_X64FREE UDF CD-ROM 6649 MB Healthy Volume 1 System Rese NTFS Partition 500 MB Healthy System Volume 2 C NTFS Partition 49 MB Healthy Boot DISKPART> select vol 2 Volume 2 is the selected volume. DISKPART> detail vol Disk ### Status Size Free Dyn Gpt -------- -------------- ---- ------- --- --- * Disk 0 Online 50 GB 0 B Read-only : No Hidden : No No Default Drive Letter: No Shadow Copy : No Offline : No BitLocker Encrypted : No Installable : Yes Volume Capacity : 49 GB Volume Free Space : 42 GB Vagy: C:\> wmic volume list status Capacity DirtyBitSet FreeSpace Name 524283904 FALSE 178180096 \\?\Volume{551144ea2-0000-0000-0000-100000000000}\ 53160701952 FALSE 45718962176 C:\ 6942221440 FALSE 0 D:\ Vagy: powershell PS C:\> get-Volume Gépnév: hostname ===== Várakozási jel ===== set prompt=$$ ===== PowerShell ===== ls pwd Kiírja az összes aliast: alias ps host ===== Felhasználókezelés ===== Felhasználók lekérdezése: Get-LocalUser [[-Name] ] [] Get-LocalUser [[-SID] ] [] Ha önmagában kiadjuk a parancsot, az összes felhasználót megtekinthetjük: Get-LocalUser Új felhasználó: New-LocalUser [-AccountExpires ] [-AccountNeverExpires] [-Description ] [-Disabled] [-FullName ] [-Name] -Password [-PasswordNeverExpires] [-UserMayNotChangePassword] [-WhatIf] [-Confirm] [] New-LocalUser [-AccountExpires ] [-AccountNeverExpires] [-Description ] [-Disabled] [-FullName ] [-Name] [-NoPassword] [-UserMayNotChangePassword] [-WhatIf] [-Confirm] [] PS C:\> $Password = Read-Host -AsSecureString PS C:\> New-LocalUser "janos" -Password $Password -FullName "Nagy János" -Description "Teszt" PS C:\> New-LocalUser -Name "janos" -Description "Teszt" -NoPassword ===== Csoportkezelés ===== Get-LocalGroup [[-Name] ] [] Get-LocalGroup [[-SID] ] [] GetLocalGroup Az Administrators csoport megtekintése: PS C:\> Get-LocalGroup -Name "Administrators" ===== Webszerver telepítése ===== A webszerver telepítése: Install-WindowsFeature Web-Server -IncludeManagementTools Telepítés után nézzük meg a szerver IP címét az ipconfig paranccsal, majd egy másik gépen a böngésző címsorába írja szerver IP címét. Böngésző címsorába példaként: 192.168.10.5 Az alapértelmezett weblap a következő helyen található: c:\inetpub\wwwroot ===== AD-DS telepítése ===== PowerShellben: Install-WindowsFeature -Name AD-Domain-Services -IncludeManagementTools Az ADDSDeployment modulban elérhető parancsok megtekintése: Get-Command -Module ADDSDeployment A parancsokról többet tudhatunk meg: Get-Help ==== AD felhasználó ==== New-ADUser [-WhatIf] [-Confirm] [-AccountExpirationDate ] [-AccountNotDelegated ] [-AccountPassword ] [-AllowReversiblePasswordEncryption ] [-AuthenticationPolicy ] [-AuthenticationPolicySilo ] [-AuthType ] [-CannotChangePassword ] [-Certificates ] [-ChangePasswordAtLogon ] [-City ] [-Company ] [-CompoundIdentitySupported ] [-Country ] [-Credential ] [-Department ] [-Description ] [-DisplayName ] [-Division ] [-EmailAddress ] [-EmployeeID ] [-EmployeeNumber ] [-Enabled ] [-Fax ] [-GivenName ] [-HomeDirectory ] [-HomeDrive ] [-HomePage ] [-HomePhone ] [-Initials ] [-Instance ] [-KerberosEncryptionType ] [-LogonWorkstations ] [-Manager ] [-MobilePhone ] [-Name] [-Office ] [-OfficePhone ] [-Organization ] [-OtherAttributes ] [-OtherName ] [-PassThru] [-PasswordNeverExpires ] [-PasswordNotRequired ] [-Path ] [-POBox ] [-PostalCode ] [-PrincipalsAllowedToDelegateToAccount ] [-ProfilePath ] [-SamAccountName ] [-ScriptPath ] [-Server ] [-ServicePrincipalNames ] [-SmartcardLogonRequired ] [-State ] [-StreetAddress ] [-Surname ] [-Title ] [-TrustedForDelegation ] [-Type ] [-UserPrincipalName ] [] ===== Fájlmegosztás ===== Használható parancsok: * Get-SmbShare * New-SmbShare * Remove-SmbShare * Set-SmbShare Hozzunk létre egy megosztás könyvtárat: PS C:\> cd \ PS C:\> mkdir smb PS C:\> mkdir smb\pub Hozzuk létre a megosztást: PS C:\> new-smbsare cmdlet New-SmbShare at command pipeline position 1 Supply values for the following parameters: Path: c:\smb\pub Name: Nyilvanos Name ScopeName Path Description ---- --------- ---- ----------- Nyilvanos * c:\smb\pub ===== Könyvtárkezelés ===== tree dir ==== Poweshellben ==== ls pwd ===== Grafikus programok ===== * notepad * taskmgr * regedit ===== Források ===== * [[https://docs.microsoft.com/hu-hu/windows-server/windows-server|https://docs.microsoft.com/]] (2018) * [[https://docs.microsoft.com/hu-hu/windows-server/identity/ad-ds/deploy/install-active-directory-domain-services--level-100-|https://docs.microsoft.com/]] * https://docs.microsoft.com/en-us/powershell/scripting/overview?view=powershell-5.1 * https://www.businessnewsdaily.com/11020-create-file-share-windows-server-2016.html (2018) * https://www.server-world.info/en/note?os=Windows_Server_2016&p=download (2020)