Accounts Add Take Ownership to Context Menu in Windows 11


  • Staff
Owner_banner.png

This tutorial will show you how to add Take Ownership to the context menu of all files, folders, and drives for all users in Windows 10 and Windows 11.

This will allow you to be able to instantly take ownership of a file, folder (and all contents), or drive (and all contents) by changing the owner to the current user and grant the Owner_Rights SID (for current owner) full access permission.

When you right click or press and hold on a file, folder, or drive, click/tap on Show more options, and click/tap on Take Ownership, you will be prompted by UAC for approval first.

If a user is signed in as an administrator, then the user would just click/tap on Yes to approve and take ownership. The owner of the file, folder, or drive would be changed to the current user account. Permissions would be set to allow this current owner (Owner_Rights SID) full control of the file, folder, or drive.

If a user is signed in as a standard user, then the user would need to enter a selected administrator's password to approve and take ownership. The owner of the file, folder, or drive would be changed to the selected administrator account and not the standard user. Permissions would be set to allow this current owner (Owner_Rights SID) full control of the file, folder, or drive.

The Take Ownership context menu will not be available when you right click or press and hold only on the specific C: drive, C:\Program Files folder, C:\Program Files (x86) folder, C:\ProgramData folder, C:\Users folder, and C:\Windows folder. This was done by design since taking ownership of the Windows "C:" drive and these specific system folders can make Windows unstable as it would also take ownership of all their content at the same time.

You will still be able to use the Take Ownership context menu on files and folders inside the locations above, and on all drives other than the C drive and FAT32 drives.

Application files (ex: EXE, CMD, MSI) will have the Take Ownership context menu without replacing Run as administrator.

You must be signed in as an administrator to add, remove, and use the "Take Ownership" context menu.


Taking Ownership of a FAT32 drive will not work and you will get an error indicating so since file permissions are only supported on NTFS and ReFS drives.


If you would like to have a custom location(s) of your own to not show the context menu for, then please feel free to post a request in this tutorial thread. I'll be happy to post back with a custom .reg file for it.



EXAMPLE: Take Ownership context menu

In Windows 11, you will need to click/tap on Show more options first by default, then click/tap on Take Ownership.


Show_more_options.png
Take_Ownership_context_menu.png



Here's How:

1 Do step 2 (add), step 3 (add w/pause), or step 4 (remove) below for what you would like to do.

2 Add "Take Ownership" to Context Menu

A) Click/tap on the Download button below to download the .reg file below, and go to step 5 below.​

Add_Take_Ownership_to_context_menu.reg


(Contents of REG file for reference)
Code:
Windows Registry Editor Version 5.00

[-HKEY_CLASSES_ROOT\*\shell\TakeOwnership]
[-HKEY_CLASSES_ROOT\*\shell\runas]

[HKEY_CLASSES_ROOT\*\shell\TakeOwnership]
@="Take Ownership"
"Extended"=-
"HasLUAShield"=""
"NoWorkingDirectory"=""
"NeverDefault"=""

[HKEY_CLASSES_ROOT\*\shell\TakeOwnership\command]
@="powershell -windowstyle hidden -command \"Start-Process cmd -ArgumentList '/c takeown /f \\\"%1\\\" && icacls \\\"%1\\\" /grant *S-1-3-4:F /t /c /l' -Verb runAs\""
"IsolatedCommand"= "powershell -windowstyle hidden -command \"Start-Process cmd -ArgumentList '/c takeown /f \\\"%1\\\" && icacls \\\"%1\\\" /grant *S-1-3-4:F /t /c /l' -Verb runAs\""


[HKEY_CLASSES_ROOT\Directory\shell\TakeOwnership]
@="Take Ownership"
"AppliesTo"="NOT (System.ItemPathDisplay:=\"C:\\Users\" OR System.ItemPathDisplay:=\"C:\\ProgramData\" OR System.ItemPathDisplay:=\"C:\\Windows\" OR System.ItemPathDisplay:=\"C:\\Windows\\System32\" OR System.ItemPathDisplay:=\"C:\\Program Files\" OR System.ItemPathDisplay:=\"C:\\Program Files (x86)\")"
"Extended"=-
"HasLUAShield"=""
"NoWorkingDirectory"=""
"Position"="middle"

[HKEY_CLASSES_ROOT\Directory\shell\TakeOwnership\command]
@="powershell -windowstyle hidden -command \"$Y = ($null | choice).Substring(1,1); Start-Process cmd -ArgumentList ('/c takeown /f \\\"%1\\\" /r /d ' + $Y + ' && icacls \\\"%1\\\" /grant *S-1-3-4:F /t /c /l /q') -Verb runAs\""
"IsolatedCommand"="powershell -windowstyle hidden -command \"$Y = ($null | choice).Substring(1,1); Start-Process cmd -ArgumentList ('/c takeown /f \\\"%1\\\" /r /d ' + $Y + ' && icacls \\\"%1\\\" /grant *S-1-3-4:F /t /c /l /q') -Verb runAs\""



[HKEY_CLASSES_ROOT\Drive\shell\runas]
@="Take Ownership"
"Extended"=-
"HasLUAShield"=""
"NoWorkingDirectory"=""
"Position"="middle"
"AppliesTo"="NOT (System.ItemPathDisplay:=\"C:\\\")"

[HKEY_CLASSES_ROOT\Drive\shell\runas\command]
@="cmd.exe /c takeown /f \"%1\\\" /r /d y && icacls \"%1\\\" /grant *S-1-3-4:F /t /c"
"IsolatedCommand"="cmd.exe /c takeown /f \"%1\\\" /r /d y && icacls \"%1\\\" /grant *S-1-3-4:F /t /c"

3 Add "Take Ownership" with Pause to Context Menu

This option does the same as step 2, except includes pausing the command when you use the "Take Ownership" context menu to be able to see the command results. This can be handy to verify if changing ownership and permissions was successfully processed or not.

Take_Ownership_with_pause.png


A) Click/tap on the Download button below to download the .reg file below, and go to step 5 below.​

Add_Take_Ownership_with_Pause_to_context_menu.reg


(Contents of REG file for reference)
Code:
Windows Registry Editor Version 5.00

[-HKEY_CLASSES_ROOT\*\shell\TakeOwnership]
[-HKEY_CLASSES_ROOT\*\shell\runas]

[HKEY_CLASSES_ROOT\*\shell\TakeOwnership]
@="Take Ownership"
"Extended"=-
"HasLUAShield"=""
"NoWorkingDirectory"=""
"NeverDefault"=""

[HKEY_CLASSES_ROOT\*\shell\TakeOwnership\command]
@="powershell -windowstyle hidden -command \"Start-Process cmd -ArgumentList '/c takeown /f \\\"%1\\\" && icacls \\\"%1\\\" /grant *S-1-3-4:F /t /c /l & pause' -Verb runAs\""
"IsolatedCommand"= "powershell -windowstyle hidden -command \"Start-Process cmd -ArgumentList '/c takeown /f \\\"%1\\\" && icacls \\\"%1\\\" /grant *S-1-3-4:F /t /c /l & pause' -Verb runAs\""



[HKEY_CLASSES_ROOT\Directory\shell\TakeOwnership]
@="Take Ownership"
"AppliesTo"="NOT (System.ItemPathDisplay:=\"C:\\Users\" OR System.ItemPathDisplay:=\"C:\\ProgramData\" OR System.ItemPathDisplay:=\"C:\\Windows\" OR System.ItemPathDisplay:=\"C:\\Windows\\System32\" OR System.ItemPathDisplay:=\"C:\\Program Files\" OR System.ItemPathDisplay:=\"C:\\Program Files (x86)\")"
"Extended"=-
"HasLUAShield"=""
"NoWorkingDirectory"=""
"Position"="middle"

[HKEY_CLASSES_ROOT\Directory\shell\TakeOwnership\command]
@="powershell -windowstyle hidden -command \"$Y = ($null | choice).Substring(1,1); Start-Process cmd -ArgumentList ('/c takeown /f \\\"%1\\\" /r /d ' + $Y + ' && icacls \\\"%1\\\" /grant *S-1-3-4:F /t /c /l /q & pause') -Verb runAs\""
"IsolatedCommand"="powershell -windowstyle hidden -command \"$Y = ($null | choice).Substring(1,1); Start-Process cmd -ArgumentList ('/c takeown /f \\\"%1\\\" /r /d ' + $Y + ' && icacls \\\"%1\\\" /grant *S-1-3-4:F /t /c /l /q & pause') -Verb runAs\""



[HKEY_CLASSES_ROOT\Drive\shell\runas]
@="Take Ownership"
"Extended"=-
"HasLUAShield"=""
"NoWorkingDirectory"=""
"Position"="middle"
"AppliesTo"="NOT (System.ItemPathDisplay:=\"C:\\\")"

[HKEY_CLASSES_ROOT\Drive\shell\runas\command]
@="cmd.exe /c takeown /f \"%1\\\" /r /d y && icacls \"%1\\\" /grant *S-1-3-4:F /t /c & Pause"
"IsolatedCommand"="cmd.exe /c takeown /f \"%1\\\" /r /d y && icacls \"%1\\\" /grant *S-1-3-4:F /t /c & Pause"

4 To Remove "Take Ownership" from Context Menu

This is the default setting.


A) Click/tap on the Download button below to download the .reg file below, and go to step 5 below.​

Remove_Take_Ownership_from_context_menu.reg


(Contents of REG file for reference)
Code:
Windows Registry Editor Version 5.00

[-HKEY_CLASSES_ROOT\*\shell\TakeOwnership]

[-HKEY_CLASSES_ROOT\*\shell\runas]

[-HKEY_CLASSES_ROOT\Directory\shell\TakeOwnership]

[-HKEY_CLASSES_ROOT\Drive\shell\runas]

5 Save the .reg file to your Desktop.

6 Double click/tap on the downloaded .reg file to merge it.

7 When prompted, click/tap on Run, Yes (UAC), Yes, and OK to approve the merge.

8 When finished, you can delete the downloaded .reg file if you like.


That's it,
Shawn Brink


 

Attachments

  • Owner.png
    Owner.png
    7.9 KB · Views: 235
  • Remove_Take_Ownership_from_context_menu.reg
    770 bytes · Views: 400
  • Add_Take_Ownership_with_Pause_to_context_menu.reg
    4.6 KB · Views: 34
  • Add_Take_Ownership_to_context_menu.reg
    4.5 KB · Views: 44
Last edited:

Attachments

  • Add_French_Take_Ownership_with_Pause_to_context_menu.reg
    4.4 KB · Views: 65

My Computers

System One System Two

  • OS
    Windows 11 Pro for Workstations
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom self build
    CPU
    Intel i7-8700K 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING (11GB GDDR5X)
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G75 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO M.2,
    8TB WD MyCloudEX2Ultra NAS
    PSU
    Seasonic Prime Titanium 850W
    Case
    Thermaltake Core P3 wall mounted
    Cooling
    Corsair Hydro H115i
    Keyboard
    Logitech wireless K800
    Mouse
    Logitech MX Master 3
    Internet Speed
    1 Gbps Download and 35 Mbps Upload
    Browser
    Google Chrome
    Antivirus
    Microsoft Defender and Malwarebytes Premium
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    APC SMART-UPS RT 1000 XL - SURT1000XLI,
    Galaxy S23 Plus phone
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    HP Spectre x360 2in1 14-eu0098nr (2024)
    CPU
    Intel Core Ultra 7 155H 4.8 GHz
    Memory
    16 GB LPDDR5x-7467 MHz
    Graphics card(s)
    Integrated Intel Arc
    Sound Card
    Poly Studio
    Monitor(s) Displays
    14" 2.8K OLED multitouch
    Screen Resolution
    2880 x 1800
    Hard Drives
    2 TB PCIe NVMe M.2 SSD
    Internet Speed
    Intel Wi-Fi 7 BE200 (2x2) and Bluetooth 5.4
    Browser
    Chrome and Edge
    Antivirus
    Windows Defender and Malwarebytes Premium

My Computers

System One System Two

  • OS
    Windows 11 Pro for Workstations
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom self build
    CPU
    Intel i7-8700K 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING (11GB GDDR5X)
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G75 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO M.2,
    8TB WD MyCloudEX2Ultra NAS
    PSU
    Seasonic Prime Titanium 850W
    Case
    Thermaltake Core P3 wall mounted
    Cooling
    Corsair Hydro H115i
    Keyboard
    Logitech wireless K800
    Mouse
    Logitech MX Master 3
    Internet Speed
    1 Gbps Download and 35 Mbps Upload
    Browser
    Google Chrome
    Antivirus
    Microsoft Defender and Malwarebytes Premium
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    APC SMART-UPS RT 1000 XL - SURT1000XLI,
    Galaxy S23 Plus phone
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    HP Spectre x360 2in1 14-eu0098nr (2024)
    CPU
    Intel Core Ultra 7 155H 4.8 GHz
    Memory
    16 GB LPDDR5x-7467 MHz
    Graphics card(s)
    Integrated Intel Arc
    Sound Card
    Poly Studio
    Monitor(s) Displays
    14" 2.8K OLED multitouch
    Screen Resolution
    2880 x 1800
    Hard Drives
    2 TB PCIe NVMe M.2 SSD
    Internet Speed
    Intel Wi-Fi 7 BE200 (2x2) and Bluetooth 5.4
    Browser
    Chrome and Edge
    Antivirus
    Windows Defender and Malwarebytes Premium
Hello, could you customise for a Croatian windows 11 ?
Thanks in advance
 

My Computer

System One

  • OS
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    Asus
    CPU
    Intel i5 1035G1
    Memory
    32 GB
    Graphics Card(s)
    NVIDIA®
    Monitor(s) Displays
    15.6" LED-backlit FHD
    Screen Resolution
    1920x1080
    Hard Drives
    INTEL SSDPEKNW 512GB
    Keyboard
    Logitech Wireless
    Mouse
    Logitech Wirelss
    Internet Speed
    850 Mbps
    Browser
    Chrome, Edge
    Antivirus
    Malwarebytes Premium, Windows Defender

Attachments

  • Add_Croatian_Take_Ownership_with_Pause_to_context_menu.reg
    4.3 KB · Views: 42

My Computers

System One System Two

  • OS
    Windows 11 Pro for Workstations
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom self build
    CPU
    Intel i7-8700K 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING (11GB GDDR5X)
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G75 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO M.2,
    8TB WD MyCloudEX2Ultra NAS
    PSU
    Seasonic Prime Titanium 850W
    Case
    Thermaltake Core P3 wall mounted
    Cooling
    Corsair Hydro H115i
    Keyboard
    Logitech wireless K800
    Mouse
    Logitech MX Master 3
    Internet Speed
    1 Gbps Download and 35 Mbps Upload
    Browser
    Google Chrome
    Antivirus
    Microsoft Defender and Malwarebytes Premium
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    APC SMART-UPS RT 1000 XL - SURT1000XLI,
    Galaxy S23 Plus phone
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    HP Spectre x360 2in1 14-eu0098nr (2024)
    CPU
    Intel Core Ultra 7 155H 4.8 GHz
    Memory
    16 GB LPDDR5x-7467 MHz
    Graphics card(s)
    Integrated Intel Arc
    Sound Card
    Poly Studio
    Monitor(s) Displays
    14" 2.8K OLED multitouch
    Screen Resolution
    2880 x 1800
    Hard Drives
    2 TB PCIe NVMe M.2 SSD
    Internet Speed
    Intel Wi-Fi 7 BE200 (2x2) and Bluetooth 5.4
    Browser
    Chrome and Edge
    Antivirus
    Windows Defender and Malwarebytes Premium

My Computer

System One

  • OS
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    Asus
    CPU
    Intel i5 1035G1
    Memory
    32 GB
    Graphics Card(s)
    NVIDIA®
    Monitor(s) Displays
    15.6" LED-backlit FHD
    Screen Resolution
    1920x1080
    Hard Drives
    INTEL SSDPEKNW 512GB
    Keyboard
    Logitech Wireless
    Mouse
    Logitech Wirelss
    Internet Speed
    850 Mbps
    Browser
    Chrome, Edge
    Antivirus
    Malwarebytes Premium, Windows Defender

My Computers

System One System Two

  • OS
    Windows 11 Pro for Workstations
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom self build
    CPU
    Intel i7-8700K 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING (11GB GDDR5X)
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G75 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO M.2,
    8TB WD MyCloudEX2Ultra NAS
    PSU
    Seasonic Prime Titanium 850W
    Case
    Thermaltake Core P3 wall mounted
    Cooling
    Corsair Hydro H115i
    Keyboard
    Logitech wireless K800
    Mouse
    Logitech MX Master 3
    Internet Speed
    1 Gbps Download and 35 Mbps Upload
    Browser
    Google Chrome
    Antivirus
    Microsoft Defender and Malwarebytes Premium
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    APC SMART-UPS RT 1000 XL - SURT1000XLI,
    Galaxy S23 Plus phone
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    HP Spectre x360 2in1 14-eu0098nr (2024)
    CPU
    Intel Core Ultra 7 155H 4.8 GHz
    Memory
    16 GB LPDDR5x-7467 MHz
    Graphics card(s)
    Integrated Intel Arc
    Sound Card
    Poly Studio
    Monitor(s) Displays
    14" 2.8K OLED multitouch
    Screen Resolution
    2880 x 1800
    Hard Drives
    2 TB PCIe NVMe M.2 SSD
    Internet Speed
    Intel Wi-Fi 7 BE200 (2x2) and Bluetooth 5.4
    Browser
    Chrome and Edge
    Antivirus
    Windows Defender and Malwarebytes Premium
Thank you again for such helpful fixes. I am signed in as administrator.
The Take Ownership with pause fix works for G:\Audio
But for G: I get an error message, below.
1704643310164.png


This has arisen because I remade my computer and re-fitted the old HDDs into the new.
The permissions now look like this, and (probably) the redundant permissions are screwing up the security
1704644871393.png
 

My Computer

System One

  • OS
    Win11
    Computer type
    PC/Desktop
    Manufacturer/Model
    Quiet
    CPU
    13th Gen Intel(R) Core(TM) i7-13700 2.10 GHz
    Motherboard
    ASUSTeK COMPUTER INC. PRIME B760-PLUS D4 (LGA1700
    Memory
    32 GB
    Graphics Card(s)
    NVIDIA Quadro P1000
    Monitor(s) Displays
    DELL U3821DW, S24F350
    Screen Resolution
    3840x1600 pixels,1920x1080 pixels
    Hard Drives
    Samsung SSD 970 EVO Plus 500GB
    Samsung SSD 990 PRO with Heatsink 1TB
    ST1000DX001-1NS162
    ST8000DM004-2CX188
    WDC WD181KFGX-68AFPNO
    WDC WD60EZAZ-O0ZGHBO
    WDC WD60EZRZ-O0GZ5B1
    Case
    Fractal Define 7
    Keyboard
    logitech-K120
    Internet Speed
    840 up/ 100 down Mb/s
    Browser
    Firefox
Thank you again for such helpful fixes. I am signed in as administrator.
The Take Ownership with pause fix works for G:\Audio
But for G: I get an error message, below.
View attachment 83404

This has arisen because I remade my computer and re-fitted the old HDDs into the new.
The permissions now look like this, and (probably) the redundant permissions are screwing up the security
View attachment 83407
Hello, :alien:

It appears the commands didn't get added to the registry for drives by the REG for some reason causing that error message.

I've updated the REG files in the tutorial to correct this. You'll just need to download and merge the updated REG to fix the context menu.
 

My Computers

System One System Two

  • OS
    Windows 11 Pro for Workstations
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom self build
    CPU
    Intel i7-8700K 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING (11GB GDDR5X)
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G75 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO M.2,
    8TB WD MyCloudEX2Ultra NAS
    PSU
    Seasonic Prime Titanium 850W
    Case
    Thermaltake Core P3 wall mounted
    Cooling
    Corsair Hydro H115i
    Keyboard
    Logitech wireless K800
    Mouse
    Logitech MX Master 3
    Internet Speed
    1 Gbps Download and 35 Mbps Upload
    Browser
    Google Chrome
    Antivirus
    Microsoft Defender and Malwarebytes Premium
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    APC SMART-UPS RT 1000 XL - SURT1000XLI,
    Galaxy S23 Plus phone
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    HP Spectre x360 2in1 14-eu0098nr (2024)
    CPU
    Intel Core Ultra 7 155H 4.8 GHz
    Memory
    16 GB LPDDR5x-7467 MHz
    Graphics card(s)
    Integrated Intel Arc
    Sound Card
    Poly Studio
    Monitor(s) Displays
    14" 2.8K OLED multitouch
    Screen Resolution
    2880 x 1800
    Hard Drives
    2 TB PCIe NVMe M.2 SSD
    Internet Speed
    Intel Wi-Fi 7 BE200 (2x2) and Bluetooth 5.4
    Browser
    Chrome and Edge
    Antivirus
    Windows Defender and Malwarebytes Premium
Thank you for fixing the link, promptly on a Sunday! The process seems to have run successfully. A few questions:
1. A new user has appeared on all the ca 400,000 files: OWNER RIGHTS which has no permissions allocated. What should I do with that?
2. All the S-1-5-21... redundant users are still present in the permissions list. Are they likely to cause problems and should these be removed?
 

My Computer

System One

  • OS
    Win11
    Computer type
    PC/Desktop
    Manufacturer/Model
    Quiet
    CPU
    13th Gen Intel(R) Core(TM) i7-13700 2.10 GHz
    Motherboard
    ASUSTeK COMPUTER INC. PRIME B760-PLUS D4 (LGA1700
    Memory
    32 GB
    Graphics Card(s)
    NVIDIA Quadro P1000
    Monitor(s) Displays
    DELL U3821DW, S24F350
    Screen Resolution
    3840x1600 pixels,1920x1080 pixels
    Hard Drives
    Samsung SSD 970 EVO Plus 500GB
    Samsung SSD 990 PRO with Heatsink 1TB
    ST1000DX001-1NS162
    ST8000DM004-2CX188
    WDC WD181KFGX-68AFPNO
    WDC WD60EZAZ-O0ZGHBO
    WDC WD60EZRZ-O0GZ5B1
    Case
    Fractal Define 7
    Keyboard
    logitech-K120
    Internet Speed
    840 up/ 100 down Mb/s
    Browser
    Firefox
Thank you for fixing the link, promptly on a Sunday! The process seems to have run successfully. A few questions:
1. A new user has appeared on all the ca 400,000 files: OWNER RIGHTS which has no permissions allocated. What should I do with that?
2. All the S-1-5-21... redundant users are still present in the permissions list. Are they likely to cause problems and should these be removed?
You're most welcome. :shawn:

You can safely ignore them if you like. The main thing is that it gives you the permission needed. It could block access if you mistakenly delete the wrong user/group from permissions.
 

My Computers

System One System Two

  • OS
    Windows 11 Pro for Workstations
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom self build
    CPU
    Intel i7-8700K 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING (11GB GDDR5X)
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G75 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO M.2,
    8TB WD MyCloudEX2Ultra NAS
    PSU
    Seasonic Prime Titanium 850W
    Case
    Thermaltake Core P3 wall mounted
    Cooling
    Corsair Hydro H115i
    Keyboard
    Logitech wireless K800
    Mouse
    Logitech MX Master 3
    Internet Speed
    1 Gbps Download and 35 Mbps Upload
    Browser
    Google Chrome
    Antivirus
    Microsoft Defender and Malwarebytes Premium
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    APC SMART-UPS RT 1000 XL - SURT1000XLI,
    Galaxy S23 Plus phone
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    HP Spectre x360 2in1 14-eu0098nr (2024)
    CPU
    Intel Core Ultra 7 155H 4.8 GHz
    Memory
    16 GB LPDDR5x-7467 MHz
    Graphics card(s)
    Integrated Intel Arc
    Sound Card
    Poly Studio
    Monitor(s) Displays
    14" 2.8K OLED multitouch
    Screen Resolution
    2880 x 1800
    Hard Drives
    2 TB PCIe NVMe M.2 SSD
    Internet Speed
    Intel Wi-Fi 7 BE200 (2x2) and Bluetooth 5.4
    Browser
    Chrome and Edge
    Antivirus
    Windows Defender and Malwarebytes Premium
Hi @Brink - thanks for the great support - just wondering about the distinction between the 'Take Ownership' function and the 'Give Access To' one? I am familiar with the former from past professional experience and assume the latter is a revamp of the old share permissions - so it requires ownership or permission to use (i.e. you can't use it to give access to yourself if you lack ownership or your permissions are broken)? ...or is it something new?

Also as an aside (you likely are aware of this possible occurrence but just in case) when I ran the reg merge of the 'take ownership with pause' my TrendMicro Security Software immediately flagged 4 'files' related to it as malware and cleaned them out (although one appeared to be a duplicate of one of the other 3). I restored them, adding them to the white list in the process, with the TM security app; and then reran the reg merge to be safe. FWIW these were the locations security app targeted:

Screenshot 2024-01-23 204430.png


It seems it considers the presence of 'take ownership' functions/scripts/commands within the OS GUI a malware threat?
 

My Computers

System One System Two

  • OS
    Windows 11 Pro 23H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    Bespoke Home Build
    CPU
    Intel Kaby Lake Core i7-7700K 4.20Ghz 14nm
    Motherboard
    Gigabyte H110M-S2H-CF (U3E1)
    Memory
    2 x Crucial 8GB 2400 DDR4 (CL17)
    Graphics Card(s)
    Gigabyte NVIDIA GeForce RTX 4060 AERO OC 8GB GDDR6
    Sound Card
    Integral Realtek Hi-Def Audio and GPU NVIDIA High Def Audio
    Monitor(s) Displays
    DELL S2721QS 4K and DELL S2721DS QHD
    Screen Resolution
    3840 x 2160 and 2560 x 1440
    Hard Drives
    1 x 500GB Samsung SSD 750 EVO (Windows OS)
    1 x 500GB Samsung SSD 870 EVO (Gaming Installs)
    2 x 2TB Seagate Barracuda SATA 6Gb/s 64MB 5,900rpm (User Data, etc)
    PSU
    Thermaltake 750W
    Case
    SilverStone Temjin TJ06 (black)
    Cooling
    NOCTUA NH-D9L CPU Cooler (single fan)
    Keyboard
    Cooler Master CK550 RGB Mechanical Gaming
    Mouse
    Logitech M150 3-Button (wireless) and Razer Copperhead 7-Button Green Mouse (wired)
    Browser
    Brave
    Other Info
    QNAP TS-421 NAS (12TB RAID5)
    QNAP HS-453DX NAS (4TB RAID1)
  • Operating System
    macOS 14 Sonoma
    Computer type
    Laptop
    Manufacturer/Model
    Apple MacBook Pro 18.3 (14" 2021)
    CPU
    Apple M1 Pro
    Motherboard
    Apple
    Memory
    32GB
    Graphics card(s)
    Apple M1 Pro integral GPU
    Sound Card
    MacBook Pro Integral
    Monitor(s) Displays
    14" Liquid Retina XDR Display
    Screen Resolution
    3024 x 1964
    Hard Drives
    2TB
    PSU
    MacBook Integral
    Case
    MacBook Pro 2021 14"
    Mouse
    MacBook Touchpad and Sony VAIO N50 Aluminium 3-Button Compact Bluetooth Mouse
    Keyboard
    MacBook Integral and Logitech K380 Multi-Device Compact Bluetooth Keyboard
    Browser
    Brave
    Other Info
    QNAP TS-421 NAS (12TB RAID5)
    QNAP HS-453DX NAS (4TB RAID1)
Hi @Brink - thanks for the great support - just wondering about the distinction between the 'Take Ownership' function and the 'Give Access To' one? I am familiar with the former from past professional experience and assume the latter is a revamp of the old share permissions - so it requires ownership or permission to use (i.e. you can't use it to give access to yourself if you lack ownership or your permissions are broken)? ...or is it something new?

Also as an aside (you likely are aware of this possible occurrence but just in case) when I ran the reg merge of the 'take ownership with pause' my TrendMicro Security Software immediately flagged 4 'files' related to it as malware and cleaned them out (although one appeared to be a duplicate of one of the other 3). I restored them, adding them to the white list in the process, with the TM security app; and then reran the reg merge to be safe. FWIW these were the locations security app targeted:

View attachment 84877

It seems it considers the presence of 'take ownership' functions/scripts/commands within the OS GUI a malware threat?
Hello, :alien:

"Give access to" is a built-in context menu that is indeed for sharing permissions. It's used to share with others.

"Take Ownership" is a custom context menu for file owner and permissions by your account. It's used for you to gain access.

Your assumption would the same for me as well. It's most likely TrendMicro being overly cautious since the context menu does affect file ownership and permissions when used.
 

My Computers

System One System Two

  • OS
    Windows 11 Pro for Workstations
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom self build
    CPU
    Intel i7-8700K 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING (11GB GDDR5X)
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G75 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO M.2,
    8TB WD MyCloudEX2Ultra NAS
    PSU
    Seasonic Prime Titanium 850W
    Case
    Thermaltake Core P3 wall mounted
    Cooling
    Corsair Hydro H115i
    Keyboard
    Logitech wireless K800
    Mouse
    Logitech MX Master 3
    Internet Speed
    1 Gbps Download and 35 Mbps Upload
    Browser
    Google Chrome
    Antivirus
    Microsoft Defender and Malwarebytes Premium
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    APC SMART-UPS RT 1000 XL - SURT1000XLI,
    Galaxy S23 Plus phone
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    HP Spectre x360 2in1 14-eu0098nr (2024)
    CPU
    Intel Core Ultra 7 155H 4.8 GHz
    Memory
    16 GB LPDDR5x-7467 MHz
    Graphics card(s)
    Integrated Intel Arc
    Sound Card
    Poly Studio
    Monitor(s) Displays
    14" 2.8K OLED multitouch
    Screen Resolution
    2880 x 1800
    Hard Drives
    2 TB PCIe NVMe M.2 SSD
    Internet Speed
    Intel Wi-Fi 7 BE200 (2x2) and Bluetooth 5.4
    Browser
    Chrome and Edge
    Antivirus
    Windows Defender and Malwarebytes Premium
(y) :alien: :coffee:
 

My Computers

System One System Two

  • OS
    Windows 11 Pro 23H2
    Computer type
    PC/Desktop
    Manufacturer/Model
    Bespoke Home Build
    CPU
    Intel Kaby Lake Core i7-7700K 4.20Ghz 14nm
    Motherboard
    Gigabyte H110M-S2H-CF (U3E1)
    Memory
    2 x Crucial 8GB 2400 DDR4 (CL17)
    Graphics Card(s)
    Gigabyte NVIDIA GeForce RTX 4060 AERO OC 8GB GDDR6
    Sound Card
    Integral Realtek Hi-Def Audio and GPU NVIDIA High Def Audio
    Monitor(s) Displays
    DELL S2721QS 4K and DELL S2721DS QHD
    Screen Resolution
    3840 x 2160 and 2560 x 1440
    Hard Drives
    1 x 500GB Samsung SSD 750 EVO (Windows OS)
    1 x 500GB Samsung SSD 870 EVO (Gaming Installs)
    2 x 2TB Seagate Barracuda SATA 6Gb/s 64MB 5,900rpm (User Data, etc)
    PSU
    Thermaltake 750W
    Case
    SilverStone Temjin TJ06 (black)
    Cooling
    NOCTUA NH-D9L CPU Cooler (single fan)
    Keyboard
    Cooler Master CK550 RGB Mechanical Gaming
    Mouse
    Logitech M150 3-Button (wireless) and Razer Copperhead 7-Button Green Mouse (wired)
    Browser
    Brave
    Other Info
    QNAP TS-421 NAS (12TB RAID5)
    QNAP HS-453DX NAS (4TB RAID1)
  • Operating System
    macOS 14 Sonoma
    Computer type
    Laptop
    Manufacturer/Model
    Apple MacBook Pro 18.3 (14" 2021)
    CPU
    Apple M1 Pro
    Motherboard
    Apple
    Memory
    32GB
    Graphics card(s)
    Apple M1 Pro integral GPU
    Sound Card
    MacBook Pro Integral
    Monitor(s) Displays
    14" Liquid Retina XDR Display
    Screen Resolution
    3024 x 1964
    Hard Drives
    2TB
    PSU
    MacBook Integral
    Case
    MacBook Pro 2021 14"
    Mouse
    MacBook Touchpad and Sony VAIO N50 Aluminium 3-Button Compact Bluetooth Mouse
    Keyboard
    MacBook Integral and Logitech K380 Multi-Device Compact Bluetooth Keyboard
    Browser
    Brave
    Other Info
    QNAP TS-421 NAS (12TB RAID5)
    QNAP HS-453DX NAS (4TB RAID1)
(y):-):clap: Danke
 

My Computer

System One

  • OS
    Windows 11
    Computer type
    PC/Desktop
    Manufacturer/Model
    Dell OptiPlex 3050
    CPU
    Intel Core i7-6700 CPU @ 3.40GHz
    Motherboard
    Dell Inc. 08NPPY (U3E1)
    Memory
    DDR4 32768 MBytes
    Graphics Card(s)
    Intel HD Graphics 530
    Sound Card
    Realtek Audio
    Monitor(s) Displays
    2460X , DIF-M27-FHD
    Screen Resolution
    1920x1200 Pixel
    Hard Drives
    SPCC Solid State Disk 1TB
    Browser
    Firefox , Edge , Brave
    Antivirus
    Bitdefender

My Computers

System One System Two

  • OS
    Windows 11 Pro for Workstations
    Computer type
    PC/Desktop
    Manufacturer/Model
    Custom self build
    CPU
    Intel i7-8700K 5 GHz
    Motherboard
    ASUS ROG Maximus XI Formula Z390
    Memory
    64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card(s)
    ASUS ROG-STRIX-GTX1080TI-O11G-GAMING (11GB GDDR5X)
    Sound Card
    Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays
    2 x Samsung Odyssey G75 27"
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Samsung 990 PRO M.2,
    4TB Samsung 990 PRO M.2,
    8TB WD MyCloudEX2Ultra NAS
    PSU
    Seasonic Prime Titanium 850W
    Case
    Thermaltake Core P3 wall mounted
    Cooling
    Corsair Hydro H115i
    Keyboard
    Logitech wireless K800
    Mouse
    Logitech MX Master 3
    Internet Speed
    1 Gbps Download and 35 Mbps Upload
    Browser
    Google Chrome
    Antivirus
    Microsoft Defender and Malwarebytes Premium
    Other Info
    Logitech Z625 speaker system,
    Logitech BRIO 4K Pro webcam,
    HP Color LaserJet Pro MFP M477fdn,
    APC SMART-UPS RT 1000 XL - SURT1000XLI,
    Galaxy S23 Plus phone
  • Operating System
    Windows 11 Pro
    Computer type
    Laptop
    Manufacturer/Model
    HP Spectre x360 2in1 14-eu0098nr (2024)
    CPU
    Intel Core Ultra 7 155H 4.8 GHz
    Memory
    16 GB LPDDR5x-7467 MHz
    Graphics card(s)
    Integrated Intel Arc
    Sound Card
    Poly Studio
    Monitor(s) Displays
    14" 2.8K OLED multitouch
    Screen Resolution
    2880 x 1800
    Hard Drives
    2 TB PCIe NVMe M.2 SSD
    Internet Speed
    Intel Wi-Fi 7 BE200 (2x2) and Bluetooth 5.4
    Browser
    Chrome and Edge
    Antivirus
    Windows Defender and Malwarebytes Premium
Back
Top Bottom