RSAT tools

Winsage
August 12, 2024
Microsoft PowerShell is a command-line tool integrated into Windows 11 that replaces the traditional Command Prompt and enhances automation capabilities. - PowerShell can back up drivers and integrate them into a Windows ISO for reinstalls. - It simplifies the management of Remote Server Administration Tools (RSAT) with a single command. - PowerShell can remove bloatware from Windows to optimize system performance. - Users can back up device drivers using the command: Export-WindowsDriver -Online -Destination "full path of the backup folder". - Server administrators can install RSAT tools with the command: Get-WindowsCapability -Name RSAT* -Online | Add-WindowsCapability -Online. - PowerShell can remove unwanted applications through a script. - Users can disable Hyper-V virtualization with the command: bcdedit /set hypervisorlaunchtype off. - Administrators can delete user accounts using the command: Remove-LocalUser -Name "USERNAME". - Users can generate a battery health report with the command: powercfg /batteryreport /output "C:battery_report.html". - The Windows Package Manager (Winget) is integrated into PowerShell for managing software installations.
Winsage
August 7, 2024
Remote Server Administration Tools (RSAT) are integrated into Windows and require activation for use. In Windows 11, RSAT can be installed via the Windows Settings app or Windows PowerShell. To install RSAT from Windows Settings: 1. Open Settings from the Start menu. 2. Select System. 3. Click on Optional features. 4. Click on View features in the "Add an optional feature" section. 5. Search for "rsat" to find available RSAT features. 6. Select desired tools and click Next, then Add. To install RSAT using Windows PowerShell: 1. Open Windows PowerShell as Administrator. 2. Enter the command: Get-WindowsCapability -Name RSAT* -Online | Select-Object -Property DisplayName, State 3. To install a specific tool, use: Get-WindowsCapability -Name 'Rsat.DHCP.Tools~~~~0.0.1.0' -Online | Add-WindowsCapability -Online To uninstall RSAT: 1. Navigate to Settings > System > Optional Features. 2. Search for the installed RSAT tool, select it, and click Remove. Alternatively, to uninstall using PowerShell: 1. Open PowerShell as Administrator. 2. Execute the command: Get-WindowsCapability -Name 'Rsat.DHCP.Tools~~~~0.0.1.0' -Online | Remove-WindowsCapability -Online
Search