Apparently it can see the disk, and i find only
To resolve this problem, remove the affected filter drivers. To do this, follow these steps:
Click Start
Start button
, type regedit in the Start Search box, and then click regedit in the Programs list.
User Account Control permission
If you are prompted for an administrator password or confirmation, type your password or click Continue.
Locate and then click the following registry subkey:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E965-E325-11CE-BFC1-08002BE10318}
2684263
Warning There can be many instances of the registry subkey that is mentioned in step 2. You must make sure that you are in the appropriate registry subkey before you change the UpperFilters and the LowerFilters values. To verify that you are in the appropriate registry subkey, make sure that the Default value is DVD/CD-ROM and the Class value is CDROM.
If you see UpperFilters in the pane on the right side, right-click UpperFilters, and then click Delete.
Click Yes to confirm the removal of the UpperFilters registry entry.
If you see LowerFilters in the pane on the right side, right-click LowerFilters, and then click Delete.
Click Yes to confirm the removal of the LowerFilters registry entry.
Exit Registry Editor, and then restart the computer.
then try this also.
copy all and make a rescan.bat
@echo off
:: BatchGotAdmin (Run as Admin code starts)
REM --> Check for permissions
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
REM --> If error flag set, we do not have admin.
if '%errorlevel%' NEQ '0' (
echo Requesting administrative privileges...
goto UACPrompt
) else ( goto gotAdmin )
:UACPrompt
echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
echo UAC.ShellExecute "%~s0", "", "", "runas", 1 >> "%temp%\getadmin.vbs"
"%temp%\getadmin.vbs"
exit /B
:gotAdmin
if exist "%temp%\getadmin.vbs" ( del "%temp%\getadmin.vbs" )
pushd "%CD%"
CD /D "%~dp0"
echo rescan | diskpart
echo Thank you Jaber from Dhaka, Bangladesh
end
:: BatchGotAdmin (Run as Admin code ends)
:: Your codes should start from the following line