Első képernyő:
sconfig
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
set prompt=$$
ls
pwd
Kiírja az összes aliast:
alias
ps
host
Felhasználók lekérdezése:
Get-LocalUser [[-Name] <String[]>] [<CommonParameters>]
Get-LocalUser [[-SID] <SecurityIdentifier[]>] [<CommonParameters>]
Ha önmagában kiadjuk a parancsot, az összes felhasználót megtekinthetjük:
Get-LocalUser
Új felhasználó:
New-LocalUser [-AccountExpires <DateTime>] [-AccountNeverExpires] [-Description <String>] [-Disabled] [-FullName <String>] [-Name] <String> -Password <SecureString> [-PasswordNeverExpires] [-UserMayNotChangePassword] [-WhatIf] [-Confirm] [<CommonParameters>]
New-LocalUser [-AccountExpires <DateTime>] [-AccountNeverExpires] [-Description <String>] [-Disabled] [-FullName <String>] [-Name] <String> [-NoPassword] [-UserMayNotChangePassword] [-WhatIf] [-Confirm] [<CommonParameters>]
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
Get-LocalGroup [[-Name] <String[]>] [<CommonParameters>]
Get-LocalGroup [[-SID] <SecurityIdentifier[]>] [<CommonParameters>]
GetLocalGroup
Az Administrators csoport megtekintése:
PS C:\> Get-LocalGroup -Name "Administrators"
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
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 <cmdlet name>
New-ADUser [-WhatIf] [-Confirm] [-AccountExpirationDate <DateTime>] [-AccountNotDelegated <Boolean>] [-AccountPassword <SecureString>] [-AllowReversiblePasswordEncryption <Boolean>] [-AuthenticationPolicy <ADAuthenticationPolicy>] [-AuthenticationPolicySilo <ADAuthenticationPolicySilo>] [-AuthType <ADAuthType>] [-CannotChangePassword <Boolean>] [-Certificates <X509Certificate[]>] [-ChangePasswordAtLogon <Boolean>] [-City <String>] [-Company <String>] [-CompoundIdentitySupported <Boolean>] [-Country <String>] [-Credential <PSCredential>] [-Department <String>] [-Description <String>] [-DisplayName <String>] [-Division <String>] [-EmailAddress <String>] [-EmployeeID <String>] [-EmployeeNumber <String>] [-Enabled <Boolean>] [-Fax <String>] [-GivenName <String>] [-HomeDirectory <String>] [-HomeDrive <String>] [-HomePage <String>] [-HomePhone <String>] [-Initials <String>] [-Instance <ADUser>] [-KerberosEncryptionType <ADKerberosEncryptionType>] [-LogonWorkstations <String>] [-Manager <ADUser>] [-MobilePhone <String>] [-Name] <String> [-Office <String>] [-OfficePhone <String>] [-Organization <String>] [-OtherAttributes <Hashtable>] [-OtherName <String>] [-PassThru] [-PasswordNeverExpires <Boolean>] [-PasswordNotRequired <Boolean>] [-Path <String>] [-POBox <String>] [-PostalCode <String>] [-PrincipalsAllowedToDelegateToAccount <ADPrincipal[]>] [-ProfilePath <String>] [-SamAccountName <String>] [-ScriptPath <String>] [-Server <String>] [-ServicePrincipalNames <String[]>] [-SmartcardLogonRequired <Boolean>] [-State <String>] [-StreetAddress <String>] [-Surname <String>] [-Title <String>] [-TrustedForDelegation <Boolean>] [-Type <String>] [-UserPrincipalName <String>] [<CommonParameters>]
Használható parancsok:
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
tree
dir
ls
pwd