Remember to maintain security and privacy. Do not share sensitive information. Procedimento.com.br may make mistakes. Verify important information. Termo de Responsabilidade
Managing programs and features is a crucial aspect of maintaining a healthy and efficient Windows operating system. This article will guide you through the process of managing installed programs and system features using built-in Windows tools. We will explore how to use the Control Panel, Command Prompt (CMD), and PowerShell to manage these elements effectively.
Examples:
Using Control Panel:
Uninstall a Program:
Turn Windows Features On or Off:
Using Command Prompt (CMD):
List Installed Programs:
wmic product get name,version
Uninstall a Program:
wmic product where "name='ProgramName'" call uninstall
ProgramName
with the actual name of the program you wish to uninstall.Using PowerShell:
List Installed Programs:
Get-WmiObject -Class Win32_Product | Select-Object -Property Name, Version
Uninstall a Program:
Get-WmiObject -Class Win32_Product | Where-Object { $_.Name -eq "ProgramName" } | ForEach-Object { $_.Uninstall() }
ProgramName
with the actual name of the program you wish to uninstall.Enable/Disable Windows Features:
Enable-WindowsOptionalFeature -Online -FeatureName "FeatureName"
Disable-WindowsOptionalFeature -Online -FeatureName "FeatureName"
FeatureName
with the actual name of the feature you wish to enable or disable.