added folders and scripts

This commit is contained in:
Gramzon
2025-01-20 15:48:15 +01:00
parent f8ac849f76
commit 44898bf457
15 changed files with 667 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
# Installing RSAT Tools for Windows using PowerShell
#**Note**: These commands require administrative privileges. Make sure to run PowerShell as Administrator before executing them.
## Listing Available RSAT Tools
#First, let's check which RSAT tools are available on your system:
#powershell
Get-WindowsCapability -Name RSAT* -Online | Select-Object Name, State
#![alt text](ListRSAT.png)
## Installing Specific RSAT Tools
### Active Directory Tools
#To install Active Directory Domain Services and Lightweight Directory Services Tools:
#powershell
Add-WindowsCapability -Online -Name "Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0"
#[alt text](InstallRSAT_ADDS.png)
### DNS Server Tools
#To install DNS Server Tools:
#powershell
Add-WindowsCapability -Online -Name "Rsat.Dns.Tools~~~~0.0.1.0"
## Verifying Installation
#To verify that the tools were installed successfully:
#powershell
Get-WindowsCapability -Name Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0 -Online | Select-Object Name, State
Get-WindowsCapability -Name Rsat.Dns.Tools~~~~0.0.1.0 -Online | Select-Object Name, State
#**Note**: These commands require administrative privileges. Make sure to run PowerShell as Administrator before executing them.