diff --git a/Tools.ps1 b/Tools.ps1 index 632d1e4..cf6c543 100644 --- a/Tools.ps1 +++ b/Tools.ps1 @@ -783,7 +783,7 @@ Function Get-FileSizes { # If no path is specified, set $Path to the directory containing user profiles If (-not $Path ) { - $Path = (Get-ItemPropertyValue -Path 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList' -Name ProfilesDirectory) + $Path = (Get-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList' -Name ProfilesDirectory).ProfilesDirectory $Recurse = $true $IncludeHidden = $false } @@ -844,7 +844,7 @@ Function WriteToFile_UTF8NoBOM { # Function to enumerate all user profile folders Function Get-UserProfiles { - $ProfilePath = (Get-ItemPropertyValue -Path 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList' -Name ProfilesDirectory) + $ProfilePath = (Get-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList' -Name ProfilesDirectory).ProfilesDirectory $UserProfilePaths = @() ForEach ( $userProfile in (Get-ChildItem -Path $ProfilePath | Where-Object { $_.PSIsContainer }) ) { $UserProfilePaths += ,@($userProfile.FullName)