InterviewSolution
Saved Bookmarks
| 1. |
Explain how would you place a registry value with PowerShell? |
|
Answer» Registry values are PROPERTIES of keys and, as such, cannot be directly browsed. This requires us to understand that there are no registry-specific cmdlets, so we have to utilize the registry provider and Set-ItemProperty. You can also utilize the New-ItemProperty cmdlet to build the registry entry and its value and then MAKE USE of Set-ItemProperty to modify the value. The registry has been an essential PART of Windows forever, thus this is hardly area-specific KNOWLEDGE. |
|