Help removing old Windows & Users folder without breaking anything!

Page 2 of 3 FirstFirst 123 LastLast

  1. Posts : 29
    Windows 7 Ultimate x64
    Thread Starter
       #11

    AddRAM said:
    Not sure. Who is Alpha/Red, the users on that install ?
    Yep. Alpha/Red is the only user account on this computer.

    AddRAM said:
    Have you tried taking ownership of the files ?
    Yep. I used this tutorial. It seems to work when I use it on the Users and Windows folder on F drive. I can see the word 'Success' flash by in the command prompt, and the phrase '...now owned by "Alpha/Red"'.

    Kaktussoft said:
    Are you logged on as user RED on computer ALPHA? Do you have administrator priviliges?
    Yep. I'm sure that I have admin privileges, it's the only user account. Here's a screenshot if that helps:

    Help removing old Windows & Users folder without breaking anything!-user-accounts-capture-2012-12-07.png


    Kaktussoft said:
    Does system,admistrator,user etc have any DENY access in folder Windows?
    No. Every 'group or username' seems to have full access with the exception of 'Special Permissions'. The only 'group or username' that doesn't have full access is the 'CREATOR OWNER' account and the 'TrustedInstaller' account that each only appear on the Windows folder permissions.

    Here's the message I get when I try to delete Windows or Users from the F drive:

    Help removing old Windows & Users folder without breaking anything!-folder-access-denied-capture-2012-12-07.png


      My Computer


  2. Posts : 10,796
    Microsoft Windows 7 Home Premium 64-bits 7601 Multiprocessor Free Service Pack 1
       #12

    right click F:\windows , properties, tab security->advanced
    Post screenshot
    tab owner. Post screenshot as well
      My Computer


  3. Posts : 29
    Windows 7 Ultimate x64
    Thread Starter
       #13

    Kaktussoft said:
    right click F:\windows , properties, tab security->advanced
    Post screenshot
    tab owner. Post screenshot as well
    Thanks Kaktussoft, here we go:

    Help removing old Windows & Users folder without breaking anything!-permissions-capture-2012-12-07.png

    Help removing old Windows & Users folder without breaking anything!-owner-capture-2012-12-07.png
      My Computer


  4. Posts : 10,796
    Microsoft Windows 7 Home Premium 64-bits 7601 Multiprocessor Free Service Pack 1
       #14

    Try to delete some folders in f:\windows (some random one)
    Try to delete some files in f:\windows (some random one)
    Works?? if not

    Create a file and folder in f:\windows. Works? Delete them, works?
      My Computer


  5. Posts : 10,796
    Microsoft Windows 7 Home Premium 64-bits 7601 Multiprocessor Free Service Pack 1
       #15

    In elevated command prompt:
    Code:
    become owner of everything under f:\windows
    takeown  /f  f:\windows  /r  /d  Y
    reset the permissions. includes subfolders
    icacls  f:\windows\*  /reset  /t  /c  /l  /q
    set permission to inherete. includes subfolders
    icacls  f:\windows\*  /inheritance:e  /t  /c  /l  /q
    Works? any errors?
    Last edited by Kaktussoft; 07 Dec 2012 at 07:06.
      My Computer


  6. Posts : 10,796
    Microsoft Windows 7 Home Premium 64-bits 7601 Multiprocessor Free Service Pack 1
       #16

    Kaktussoft said:
    In elevated command prompt:
    Code:
    become owner of everything under f:\windows
    takeown  /f  f:\windows  /r  /d  Y
    reset the permissions. includes subfolders
    icacls  f:\windows\*  /reset  /t  /c  /l  /q
    set permission to inherete. includes subfolders
    icacls  f:\windows\*  /inheritance:e  /t  /c  /l  /q
    Works? any errors?
    did it fix the problem?
      My Computer


  7. Posts : 6,458
    x64 (6.3.9600) Win8.1 Pro & soon dual boot x64 (6.1.7601) Win7_SP1 HomePrem
       #17

    Might this be a case for EVERYONE?

    Add the EVERYONE object with full control to the security for F:\Windows and F:\Users - populate subfolders and files.

    Might work.

    Bill
      My Computer


  8. Posts : 10,796
    Microsoft Windows 7 Home Premium 64-bits 7601 Multiprocessor Free Service Pack 1
       #18

    Slartybart said:
    Might this be a case for EVERYONE?

    Add the EVERYONE object with full control to the security for F:\Windows and F:\Users - populate subfolders and files.

    Might work.

    Bill
    Better do: Take ownership for F:\Windows and F:\Users - populate subfolders and files first. And populate the permissions as well. So remove the excplicit permissions and inheret them only.

    Full access to EVERYONE is not enough! There can be be DENY permissions (although very unlikely)
    Last edited by Kaktussoft; 07 Dec 2012 at 10:41.
      My Computer


  9. Posts : 29
    Windows 7 Ultimate x64
    Thread Starter
       #19

    Kaktussoft said:
    In elevated command prompt:
    Code:
    become owner of everything under f:\windows
    takeown  /f  f:\windows  /r  /d  Y
    reset the permissions. includes subfolders
    icacls  f:\windows\*  /reset  /t  /c  /l  /q
    set permission to inherete. includes subfolders
    icacls  f:\windows\*  /inheritance:e  /t  /c  /l  /q
    Works? any errors?
    Kaktussoft, I think you've done it!! Thankyou so much. :)

    Windows folder is gone and I'm in the process of repeating the process with the Users folder as I type. Thanks for sharing your ninja command prompt moves!

    I think I must have good karma after helping out lots of people on audio forums! Thanks again to AddRAM, Kaktussoft and Slartybart.. hopefully some other forum members can gain something from this thread too!

    :)
      My Computer


  10. Posts : 10,796
    Microsoft Windows 7 Home Premium 64-bits 7601 Multiprocessor Free Service Pack 1
       #20

    jimdandy said:
    Kaktussoft said:
    In elevated command prompt:
    Code:
    become owner of everything under f:\windows
    takeown  /f  f:\windows  /r  /d  Y
    reset the permissions. includes subfolders
    icacls  f:\windows\*  /reset  /t  /c  /l  /q
    set permission to inherete. includes subfolders
    icacls  f:\windows\*  /inheritance:e  /t  /c  /l  /q
    Works? any errors?
    Kaktussoft, I think you've done it!! Thankyou so much. :)

    Windows folder is gone and I'm in the process of repeating the process with the Users folder as I type. Thanks for sharing your ninja command prompt moves!

    I think I must have good karma after helping out lots of people on audio forums! Thanks again to AddRAM, Kaktussoft and Slartybart.. hopefully some other forum members can gain something from this thread too!

    :)
    Glad you solved it. You could have done it yourself using windows explorer GUI!


    My commands only did:
    • take ownership of everything in f:\windows
    • delete all explicit permissions on the files
    • activate inherentence.
    Probably most of the files did actually delete on first try(?)
    You forgot to populate ownership to files/subfolders(?)
    You forgot to populate permissions to files/subfolders(?)

    that's why I gave you the cryptic commands.

    Why not simply format F?
      My Computer


 
Page 2 of 3 FirstFirst 123 LastLast

  Related Discussions
Our Sites
Site Links
About Us
Windows 7 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 7" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 06:20.
Find Us