首页 > 其他分享 >Active Directory Server Build

Active Directory Server Build

时间:2024-09-11 13:13:08浏览次数:18  
标签:press Screenshot Windows Directory command Build Active Open PowerShell

Active Directory Server Build Document   Prepared for: Lean Development Pty Ltd   5.Computer Settings 1.2.3.4.5.5.1.General Settings General settings as recorded in ‘Control Panel / System’ are presented below: <Insert the required server screenshot the light blue cell below this line>   Open Control Panel: Press Windows Key + S and type "Control Panel" to open it.   Navigate to System: In the Control Panel, click on System and Security, then select System. Alternatively, you can press Windows Key + Pause/Break to directly open the "System" window.   Take a Screenshot: Press PrtScn (Print Screen) to capture the screen, or use Windows Key + Shift + S to open Snipping Tool and select the area of the window.   Insert Screenshot: Paste it into the document by pressing Ctrl + V in the designated cell or space.   5.2.Logical Network Settings Network and adapter and IP settings is provided using the command ‘ipconfig /all’: <Insert the required server screenshot the light blue cell below this line>   Log in to the Server: Access W99-SERVER2-DC or the relevant server you are working on.   Open Command Prompt: Press Windows + R, type cmd, and press Enter. Alternatively, search for Command Prompt in the Start menu and select Run as Administrator.   Run the Command: Type the following command and press Enter: bash Copy code ipconfig /all   Capture the Screenshot: Once the output is displayed, press Alt + PrtScn (Print Screen) to capture the active window, including the VM title bar. Open Paint or Word, paste the screenshot using Ctrl + V, and save the image.   Insert the Screenshot in Your Document: Open your document, navigate to the light blue cell area where the screenshot needs to be placed. Insert the image or paste it directly into the document.       5.3.Logical Storage Listing of disks and volumes is provided using the PowerShell command set: Hostname ; Get-Volume   <Insert the required server screenshot the light blue cell below this line> Open PowerShell:   Press Windows Key + X and select Windows PowerShell (Admin) to run PowerShell with administrative privileges. Run the Command:   Type the following command and press Enter: mathematica Copy code Get-Volume This will display a list of disks and volumes on the server, showing information such as the volume label, file system, size, and health status.   Take a Screenshot:   After the command finishes displaying the information, press PrtScn (Print Screen) or use Windows Key + Shift + S to capture the screen with the output. Insert Screenshot:   Paste the screenshot into the document by selecting the cell below the line and pressing Ctrl + V.     6.Roles and Features Installed Listing of all roles and features installed on the server is provided using the PowerShell command set: Hostname ; Get-WindowsFeature | where-object {$_.Installed -eq $True}   <Insert the required server screenshot the light blue cell below this line>   Press Windows Key + X and choose Windows PowerShell (Admin) to run PowerShell with administrative privileges.   Run the Command: Type the following command and press Enter: powershell Copy code Get-WindowsFeature | Where-Object {$_.Installed -eq $True} This will display all the roles and features that are currently installed on the server.   Take a Screenshot: Once the command output is fully displayed, press PrtScn (Print Screen) or use Windows Key + Shift + S to capture the screen with the results.   Insert Screenshot: Paste the screenshot into your document by pressing Ctrl + V in the designated cell below the line.       7.Core Network Services 6.7.7.1.DNS DNS is installed on the server and all zones are integrated with Active Directory (AD). Listing of all DNS zones is provided using the PowerShell command:   Get-DnsServerZone <Insert the required server screenshot the light blue cell below this line>   Log in to the Server: Access W99-SERVER2-DC or the relevant server where DNS is installed.   Open PowerShell as Administrator: Press Windows + X and select Windows PowerShell (Admin). Alternatively, search for PowerShell in the Start menu, right-click, and select Run as Administrator.   Run the PowerShell Command: Type the following command and press Enter: powershell Copy code Get-DnsServerZone   Capture the Screenshot: Once the DNS zones are displayed, press Alt + PrtScn (Print Screen) to capture the active window (including the VM title bar). Open Paint or Word, paste the screenshot using Ctrl + V, and save the image.   Insert the Screenshot in Your Document: Open your document, navigate to the light blue cell area where the screenshot needs to be placed. Insert the image or paste it directly into the document.       7.2.DHCP DHCP is installed on the server. Listing of all DHCP scopes is provided using the PowerShell command:   Get-DhcpServerv4Scope <Insert the required server screenshot the light blue cell below this line> Open PowerShell:   Press Windows Key + X and select Windows PowerShell (Admin) to run PowerShell with administrative privileges. Run the DHCP Scope Command:   Type the following command and press Enter: powershell Copy code Get-DhcpServerv4Scope This will list all the DHCP scopes configured on the server.   Take a Screenshot:   After the command displays the list of DHCP scopes, press PrtScn (Print Screen) or use Windows Key + Shift + S to take a screenshot of the output. Insert Screenshot:   Paste the screenshot into the document by selecting the designated area and pressing Ctrl + V.     8.Active Directory 8.8.1.Forest, Domain and Site The server acts as Domain Controller (DC) and Global Catalog server. At this stage this DC holds all Operation Master roles. Listing of the Active Directory (AD) forest, domains and sites is provided using the PowerShell command: Get-AdForest ; netdom query fsmo <Insert the required server screenshot the light blue cell below this line>     Log in to the Server: Access W99-SERVER2-DC or the relevant domain controller.   Open PowerShell as Administrator: Press Windows + X and select Windows PowerShell (Admin). Alternatively, search for PowerShell in the Start menu, right-click, and select Run as Administrator.   Run the PowerShell Commands: Type the following command and press Enter: powershell Copy code Get-AdForest ; netdom query fsmo   Capture the Screenshot: Once the output is displayed showing the forest details and FSMO roles, press Alt + PrtScn (Print Screen) to capture the active window (including the VM title bar). Open Paint or Word, 代 写Active Directory Server Build  paste the screenshot using Ctrl + V, and save the image.   Insert the Screenshot in Your Document: Open your document, navigate to the light blue cell area where the screenshot needs to be placed. Insert the image or paste it directly into the document.     8.2.Organizational Units The Organizational Unit (OU) structure reflects the stipulated system administration requirements. Listing of the OUs is provided using the PowerShell command: Get-ADObject -Filter { ObjectClass -eq 'organizationalunit' } <Insert the required server screenshot the light blue cell below this line>   Open PowerShell: Press Windows Key + X and select Windows PowerShell (Admin) or Windows PowerShell (Active Directory Module) if you are managing Active Directory remotely.   Run the OU Listing Command: Type the following command and press Enter: powershell Copy code Get-ADObject -Filter { ObjectClass -eq 'organizationalunit' } This will list all the Organizational Units (OUs) in the Active Directory.   Take a Screenshot: Once the list of OUs is displayed, press PrtScn (Print Screen) or use Windows Key + Shift + S to capture the screen with the results.   Insert Screenshot: Paste the screenshot into your document by pressing Ctrl + V in the designated area below the line.       8.3.Security Groups The group structure reflects the security requirements of the divisions/departments of the organisation.  Listing of all Global security groups in AD is provided using the PowerShell command: Get-ADGroup -filter {GroupScope -eq "Global"} | Select Name,DistinguishedName | Sort-Object Name <Insert the required server screenshot the light blue cell below this line>   Log in to the Server: Access W99-SERVER2-DC or the relevant server where Active Directory is configured.   Open PowerShell as Administrator: Press Windows + X and select Windows PowerShell (Admin). Alternatively, search for PowerShell in the Start menu, right-click, and select Run as Administrator.   Run the PowerShell Command: Type the following command and press Enter: powershell Copy code Get-ADGroup -filter {GroupScope -eq "Global"} | Select Name,DistinguishedName | Sort-Object Name   Capture the Screenshot: Once the output is displayed listing the global security groups, press Alt + PrtScn (Print Screen) to capture the active window (including the VM title bar). Open Paint or Word, paste the screenshot using Ctrl + V, and save the image.   Insert the Screenshot in Your Document: Open your document, navigate to the light blue cell where the screenshot needs to be placed. Insert the image or paste it directly into the document.     8.4.Groups Policy Objects Listing of all GPO’s in AD is provided using the PowerShell command: Get-GPO -all | Select DisplayName,Owner | Sort-Object DisplayName <Insert the required server screenshot the light blue cell below this line>   Open PowerShell: Press Windows Key + X and choose Windows PowerShell (Admin) or Windows PowerShell (Active Directory Module).   Run the GPO Listing Command: Type the following command and press Enter: powershell Copy code Get-GPO -All | Select DisplayName,Owner | Sort-Object DisplayName This will list all the Group Policy Objects (GPOs) in the Active Directory along with their display names and owners.   Take a Screenshot: After the command completes displaying the list, press PrtScn (Print Screen) or use Windows Key + Shift + S to capture the screen with the results.   Insert Screenshot: Paste the screenshot into your document by selecting the designated area below the line and pressing Ctrl + V.       9.Shared Folders Listing of all shared folders on the server is provided using the PowerShell command: net share <Insert the required server screenshot the light blue cell below this line>   Open PowerShell: Press Windows Key + X and choose Windows PowerShell (Admin).   Run the Command to List Shared Folders: Type the following command and press Enter: powershell Copy code net share This will list all shared folders on the server.   Take a Screenshot: After the command displays the shared folders, press PrtScn (Print Screen) or use Windows Key + Shift + S to capture the screen.   Insert Screenshot: Paste the screenshot into your document by selecting the designated area below the line and pressing Ctrl + V.       10.Clean up and restore worksite  Temporary and template VMs used during the server deployment were removed from the work environment.  Listing of VMs on the host on completion of the project (using PowerShell prompt): CD "C:\Program Files\Oracle\VirtualBox" Note: In the above command you must make sure that you specify the path where you have installed VirtualBox.  whoami ; get-date ; .\vboxmanage list vms <Insert the required server screenshot the light blue cell below this line>   Log in to the Host Server: Access the server or workstation where VirtualBox is installed.   Open PowerShell as Administrator: Press Windows + X and select Windows PowerShell (Admin). Alternatively, search for PowerShell in the Start menu, right-click, and select Run as Administrator.   Change Directory to VirtualBox Installation Folder: If you installed VirtualBox in the default location, use this command: powershell Copy code CD "C:\Program Files\Oracle\VirtualBox" If you installed VirtualBox in a custom path, replace the path accordingly.   Run the Commands to List VMs: After navigating to the VirtualBox directory, run the following commands in sequence: powershell Copy code whoami ; get-date ; .\vboxmanage list vms   Capture the Screenshot: Once the output is displayed showing the VMs, your username, and the date, press Alt + PrtScn (Print Screen) to capture the active window, including the VM title bar. Open Paint or Word, paste the screenshot using Ctrl + V, and save the image.   Insert the Screenshot in Your Document: Open your document and navigate to the designated light blue cell where the screenshot needs to be inserted. Paste the screenshot directly into the document.             <Below complete the parts marked light blue>   Project Acceptance Sign Off    Project  Customer: Lean Development Pty Ltd Project:  Active Directory Server Deployment   Final status report Select Yes or No Server design document has been produced and approved Yes  Agreed server services/applications are configured and operational Yes  Standard build documentation has been produced and approved Yes  Pre-production testing was successfully carried out Yes  Work site and network environment was left in order and to the client’s satisfaction Yes The work was finished within the agreed timeframe Yes    Server validation Select  Yes or No Server was built and configured according to the given design specifications and meets the operational requirements Yes    Project completion acceptance Select  Yes or No The project has been successfully completed Yes    MP Tech Solutions Ltd …………………… / System Engineer Date:    9/ 9/ 2024 MP Tech Solutions Ltd   Lean Development Pty Ltd …..…………..  / MP Tech - Project Management Consultant Date:    9 / 9/ 2024 On behalf of Lean Development Pty Ltd representative  

标签:press,Screenshot,Windows,Directory,command,Build,Active,Open,PowerShell
From: https://www.cnblogs.com/qq--99515681/p/18408049

相关文章