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

Active Directory Server Build

时间:2024-09-11 13:13:08浏览次数:1  
标签: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

相关文章

  • 离亚世界,豪华中文,Build.14171645-星梦交辉-幻境轮回,解压即玩,
    游戏截图幻想与现实交叠的双重人生,启动!全新动作角色扮演游戏「离亚世界」故事设定在「艾伦塔罗斯」,这是一个远离首都「魅露瓦尼亞」的偏远小镇。随着主人公的造访,并试图帮助小镇上个性各异的居民们,冒险就此展开。在冒险途中突然被神秘光芒所笼罩,当主角再次张开眼睛时,发......
  • Restricted Access Forest 是一种特定的 Active Directory (AD) 架构,用于增强安全性和
    RestrictedAccessForest是一种特定的ActiveDirectory(AD)架构,用于增强安全性和控制对敏感资源的访问。这种模型将一个或多个森林用作专门的、受限的环境来管理特定的资源或服务。什么是RestrictedAccessForest定义:RestrictedAccessForest是一个AD林,用于存储和管......
  • C#中的string和stringbuild
    C#中的string在C#中,字符串是一种非常常用的数据类型,用于表示文本信息。C#中的字符串是通过System.String类实现的,它是.NETFramework类库中System命名空间下的一个类。以下是一些关于C#字符串的重要特性和常用操作:字符串的特性不可变性:C#中的字符串是不可变的......
  • String Builder 与 StringBuffer 的区别 ----面试时遇到的一个问题
    简介:在Java中,StringBuilder和StringBuffer都是用于操作字符串的类,它们提供了类似于字符串的功能,但允许在运行时修改字符串的内容。这两个类的主要区别在于线程安全性。StringBuilderStringBuilder是一个非线程安全的类,它在Java5中引入。由于它没有线程安全的限......
  • 【Java】String StringBuffer与StringBuilder(实操+面试+记忆方法)
    Java系列文章目录补充内容Windows通过SSH连接Linux第一章Linux基本命令的学习与Linux历史文章目录Java系列文章目录一、前言二、学习内容:三、问题描述四、解决方案:4.1代码学习与性能测试4.1.1代码4.1.2性能测试结果4.2区别五、总结:5.1使用场景5.2关联记忆......
  • Interactive Employee Management System
    TAIEITNERNATIONALINSTITUTEFinalAssignmentMark40BusinessRequirement:InteractiveEmployeeManagementSystemBackground:ABCCorporationrecognizestheneedforarobustEmployeeManagementSystem(EMS)tostreamlineHRoperationsandenhanceemp......
  • Building Dynamic Memory Allocators
    OutlineDuedate:13September2024,23:59Markweighting:20%ubmission:SubmityourassignmentthroughGitLab(fullinstructionsbelow)Policies:Forlatepolicies,plagiarismpolicies,etc.,seethepoliciespageTimeleft5:03:12:58DaysHrsMinsSecswa......
  • C# process =An error occurred trying to start process with working directory The
    usingSystem.Diagnostics;//Seehttps://aka.ms/new-console-templateformoreinformationConsole.WriteLine("Hello,World!");stringpath=@"..\..\..\Image";stringfullPath=System.IO.Path.GetFullPath(path);varimgsList=System......
  • 【Azure Logic App】使用Event Hub 连接器配置 Active Directory OAuth 认证无法成功
    问题描述在上一次的博文中,我们提到了使用“ 【AzureLogicApp】使用EventHub连接器配置ActiveDirectoryOAuth认证无法成功连接到中国区EventHub ”无法成功连接到EventHub,报错“ 2024-08-17T08:40:30Z  [Error]  Anexceptionoccurredwhileretrievingprope......
  • 【Azure Logic App】使用Event Hub 连接器配置 Active Directory OAuth 认证无法成功
    问题描述在上一次的博文中,我们提到了使用“ 【AzureLogicApp】使用EventHub连接器配置ActiveDirectoryOAuth认证无法成功连接到中国区EventHub ”无法成功连接到EventHub,报错“ 2024-08-17T08:40:30Z  [Error]  Anexceptionoccurredwhileretrievingpro......