- Search Event Logs and error codes with Netikus.net System32 - Thu, Jan 10 2019
- Netikus.net IPMon+ – GUI for ipmon.exe - Tue, Nov 20 2018
- Understanding PowerShell Begin, Process, and End blocks - Mon, Oct 15 2018
Traditionally you could accomplish this by using the User Configuration option in a Group Policy object, but with PowerShell you don't have to. Don't get me wrong—Group Policy may be the best option in your situation. If you want to remove software or a configuration item almost immediately, and you do not want to wait until users log in to their systems to apply it, then PowerShell is your answer. PowerShell is nothing but flexible.
There may be many reasons why you would want to remove registry keys from unloaded profiles, but more than likely it is because you need to remove HKCU registry keys that a piece of software left behind. By writing a PowerShell script or function, you can load all unloaded HKCU user hives, make your change, and unload those hives. The general process to do this in PowerShell is to:
- Find all unloaded user hives on a system.
- Iterate through each of them.
- Make the necessary change.
- Unload each loaded user hive.
To find all the unloaded user hives on a system, we first need to find all HKCU hives on the machine. We can find all profiles on a machine by looking in the registry:
$PatternSID = 'S-1-5-21-\d+-\d+\-\d+\-\d+$' # Get Username, SID, and location of ntuser.dat for all users $ProfileList = @() $ProfileList = Get-ItemProperty 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList\*' | Where-Object { $_.PSChildName ‑match $PatternSID } | Select @{ name = "SID"; expression = { $_.PSChildName } }, @{ name = "UserHive"; expression = { "$($_.ProfileImagePath)\ntuser.dat" } }, @{ name = "Username"; expression = { $_.ProfileImagePath -replace '^(.*[\\\/])', '' } }
Now that we know which user profiles are on the machine, we need to filter out all the currently loaded profiles.
# Get all user SIDs found in HKEY_USERS (ntuser.dat files that are loaded) $LoadedHives = Get-ChildItem Registry::HKEY_USERS | ? { $_.PSChildname ‑match $PatternSID } | Select @{ name = "SID"; expression = { $_.PSChildName } }
For backward compatibility with PowerShell V2, we need to separate out the values from $LoadedHives and create a new PSCustomObject:
$SIDObject = @() foreach ($item in $LoadedHives) { $props = @{ SID = $item.SID } $TempSIDObject = New-Object -TypeName PSCustomObject -Property $props $SIDObject += $TempSIDObject }
Now that we have two lists of SIDs, all HKCU hives, and the currently loaded HKCU hive(s), we need to filter them so that we only load unloaded hives. Additionally, for backward compatibility, we need to use the Measure-Object cmdlet instead of the traditional $var.count approach. In PowerShell V2, if you have an object of fewer than two items, the count property does not work properly, thus the use of Measure-Object:
# We need to use ($ProfileList | Measure-Object).count instead of just ($ProfileList).count # because in PS V2, if the count is less than 2, it doesn't work. :) for ($p = 0; $p -lt ($ProfileList | Measure-Object).count; $p++) { for ($l = 0; $l -lt ($SIDObject | Measure-Object).count; $l++) { if (($ProfileList[$p].SID) -ne ($SIDObject[$l].SID)) { $UnloadedHives += $ProfileList[$p].SID Write-Verbose -Message "Loading Registry hives for $($ProfileList[$p].SID)" reg load "HKU\$($ProfileList[$p].SID)" "$($ProfileList[$p].UserHive)" Write-Verbose -Message 'Attempting to remove registry keys for each profile' ##################################################################### # This is where you can read/modify a user's portion of the registry } } }
In the block comment above, you can search, add, modify, or remove any registry keys for that specific HKCU user hive. After we have made any additions or subtractions from the loaded user hive, we then need to do a little cleanup. You never want to leave items behind or in a state that has the potential to cause issues or conflicts with other system calls. To do this, we just need to add the following piece of code within our inner if statement:
Write-Verbose 'Unloading registry hives for all users' # Unload ntuser.dat # Garbage collection and closing of ntuser.dat ### [gc]::Collect() reg unload "HKU\$($ProfileList[$p].SID)"
That's it! Next time you have a piece of software that leaves items around or you need to add registry keys/values to resolve an issue, PowerShell is the answer.
Initial research for this article was provided by Bryce McDonald.
Can you send or share the entire code?
and how do I do this remoting
Tnx
FYI, in Powershel v2 if you force the object type to an Array you can use .count on a single item array. Example, [Array]$LoadedHives.
When I run this I get an unexpected token message on -match.
It’s an encoding issue with “-” -character, which is not really a “-“. Just replace it with a proper one.
IMHO, it’s more easy on this way:
With the reg load we’re loading the user registry key in a temporal key of the registry. And we can do whatever we need of that temp key.
Current users logged on the system will be not affected because the ntuser.dat file it’s locked by the system.
Easiest PowerShell script to remove all HKCU in system context:
https://blogs.technet.microsoft.com/pstips/2016/05/07/write-to-hkcu-from-the-system-account/
i need to check one hkcu registry value for all user is that possible?