topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Friday March 29, 2024, 1:31 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Author Topic: "System Volume Information" - TIP: How to access this locked/inaccessible folder  (Read 4341 times)

IainB

  • Supporting Member
  • Joined in 2008
  • **
  • Posts: 7,540
  • @Slartibartfarst
    • View Profile
    • Read more about this member.
    • Donate to Member
Thought this might be useful/helpful.
I had been doing some problem analysis to resolve a strange problem in a laptop (so far, no joy) and wanted to see what was inside the normally locked and inaccessible "System Volume Information" folder on the root (C:\) drive.
(OS is Win7-64 Home Premium.)
For the first time in years of using X-Setup Pro (a very useful tool, by the way), I used it to make this folder accessible.
It did this by the simple expedient of creating a file called SysVolInfo.bat on the Desktop, which was to be run once and then deleted.
So, after checking what was inside the .bat file for anything suspicious (I'm paranoid), I did just that, and amazingly the "System Volume Information" folder on the root (C:\) drive became accessible.

The file SysVolInfo.bat contents:
@echo off
SET FOLDER=C:\System Volume Information
SET USER=XXXXXXXX
cacls "%FOLDER%" /E /G "%USER%":F
SET RC=%ERRORLEVEL%
IF "%RC%"=="0" GOTO okay
 
:failed
echo.
echo The operation failed, sorry. Please check the error description.
echo Remember: If you are using Vista, you need to execute this
echo batch by right-clicking it and select "Run as administrator".
echo.
goto ende
 
:okay
echo.
echo Access rights set; you can now view the contents of
echo [%FOLDER%] using Explorer.
echo This batch file can be safely deleted now.
echo.
goto ende
 
 :ende
pause


Notes:
  • You need to put your UserID in place of the string"XXXXXXXX". If you are using X-Setup Pro to produce the file, it does that for you (gives you the choice as to which UserID you want to select).
  • I think the "System Volume Information" folder might be normally hidden from view, unless you have Windows Explorer | Tools | Folder Options | View default settings unticked such that Hidden and special System files are not hidden.
  • Once you can access that folder, if you explore within it you will find that you need to further unlock one of the sub-folders. This is easily done with the access authority you already have (press "Continue") and should need no extra tool for assistance. It will all stay unlocked after that.

If you want to find this feature in X-Setup Pro v9.2.100, then you will be able to find it under Common Annoyances | System Volume Information Access. If you select it, it will give you a warning, and then the details as to what this feature does:

X-Setup Pro - System Volume Information Access 01.png

X-Setup Pro - System Volume Information Access 02.png

Stoic Joker

  • Honorary Member
  • Joined in 2008
  • **
  • Posts: 6,646
    • View Profile
    • Donate to Member
Sounds a bit risky if the permissions are left in the altered state. I usually use a Linux boot disk to peek inside if the need arises.

IainB

  • Supporting Member
  • Joined in 2008
  • **
  • Posts: 7,540
  • @Slartibartfarst
    • View Profile
    • Read more about this member.
    • Donate to Member
Sounds a bit risky if the permissions are left in the altered state. I usually use a Linux boot disk to peek inside if the need arises.

I agree, probably a good idea to lock the folder again once you have finished using it - i.e., remove the UserID, using the same batch file.