Tag Archives: windows

Take ownership of files/folders recursively in Win32

takeown /f %1 /r /d y icacls %1 /grant administrators:F /t

Posted in HowTo | Also tagged | Leave a comment

Windows Vista/7: Enable hidden Administrator account

Open CMD with Administrator privileges. To enable the account: net user administrator /active:yes To disable the account: net user administrator /active:no I’ll hold back on the rant of how insecure this will make your machine. But most of you looking for this info will want the “insecurity” part anyway.

Posted in Computer/IT, HowTo, security | Also tagged | 1 Comment

How to reset Windows NT password via BackTrack

1. Boot computer using the BackTrack5 DVD.

Posted in Computer/IT, HowTo, security | Also tagged , | Leave a comment

Reading Reiserfs from Windows

You got two choices: 1. rfstool 2. visualrfstool visualrfstool I haven’t tried yet. Here’s how to use rfstool in Windows: 1. Run rfstool on the command line and that will show you on what partition Reiserfs resides in. For my case it’s Disk 0, Partition 3. 2. rfstool -p0.3 ls 3. rfstool -p0.3 cp /home/nocti/filetocopy [...]

Posted in Computer/IT | Also tagged , | Leave a comment