ID do artigo: 944563 - Última revisão: quinta-feira, 20 de dezembro de 2007 - Revisão: 1.0 Como desabilitar e restaurar o suporte a QuickTime na Galeria de Fotos do Windows Live
Nesta páginaSumárioA Galeria de Fotos do Windows Live usa o QuickTime SDK da Apple para visualizar e reproduzir todo conteúdo QuickTime. Descobrimos que, em determinadas e raras circunstâncias, a visualização e reprodução desse conteúdo pode ser não-confiável. Nessas circunstâncias, os usuários que não desejarem esperar por uma versão atualizada do QuickTime da Apple talvez desejem desabilitar esse recurso. INTRODUÇÃOEste artigo descreve como desabilitar e restaurar o suporte ao conteúdo QuickTime na Galeria de Fotos do Windows Live. Mais InformaçõesDesabilitar o suporte ao QuickTimeO arquivo em lotes a seguir executará automaticamente todas as etapas exigidas para desabilitar o suporte ao QuickTime.Para criar e executar o arquivo em lotes que desabilitará o suporte ao QuickTime, execute as seguintes etapas:
Arquivo em lotes para desabilitar o suporte a QT
;----
;-DisableWLPGQT.cmd
;----
@echo off
setlocal
echo Running this batch file will disable QuickTime support in Windows Live
echo Photo Gallery. If this is not what you want to do, press Ctrl+C now, or
pause
echo.
echo.
set GalleryRegPath=HKLM\Software\Microsoft\Windows Live\Photo Gallery
if /i "%PROCESSOR_ARCHITECTURE%" EQU "amd64" (
set GalleryRegPath=HKLM\Software\Wow6432Node\Microsoft\Windows Live\Photo Gallery
)
echo Step 1: Disabling Quicktime control use in the Windows Live Photo Gallery
reg.exe add "%GalleryRegPath% " /v "DisableQuickTime" /t REG_DWORD /d 1 /f
echo.
echo.
echo Step 2: Removing Quicktime types from the list of known file types
reg.exe add "%GalleryRegPath%\SuppressFileTypes" /v ".mov" /t REG_NONE /f
reg.exe add "%GalleryRegPath%\SuppressFileTypes" /v ".qt" /t REG_NONE /f
reg.exe add "%GalleryRegPath%\SuppressFileTypes" /v ".mp4" /t REG_NONE /f
reg.exe add "%GalleryRegPath%\SuppressFileTypes" /v ".mqv" /t REG_NONE /f
reg.exe add "%GalleryRegPath%\SuppressFileTypes" /v ".mqt" /t REG_NONE /f
reg.exe add "%GalleryRegPath%\SuppressFileTypes" /v ".3gp" /t REG_NONE /f
reg.exe add "%GalleryRegPath%\SuppressFileTypes" /v ".3gpp" /t REG_NONE /f
reg.exe add "%GalleryRegPath%\SuppressFileTypes" /v ".3gp2" /t REG_NONE /f
reg.exe add "%GalleryRegPath%\SuppressFileTypes" /v ".3g2" /t REG_NONE /f
reg.exe add "%GalleryRegPath%\SuppressFileTypes" /v ".3gpp2" /t REG_NONE /f
echo.
echo.
echo Step 3: Deleting IExtractImage handlers (you can ignore errors if you've run this before)
reg.exe delete HKCR\.mov\shellex\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1} /ve /f
reg.exe delete HKCR\.qt\shellex\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1} /ve /f
reg.exe delete HKCR\.mp4\shellex\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1} /ve /f
reg.exe delete HKCR\.mqv\shellex\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1} /ve /f
reg.exe delete HKCR\.mqt\shellex\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1} /ve /f
reg.exe delete HKCR\.3gp\shellex\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1} /ve /f
reg.exe delete HKCR\.3gpp\shellex\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1} /ve /f
reg.exe delete HKCR\.3gp2\shellex\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1} /ve /f
reg.exe delete HKCR\.3g2\shellex\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1} /ve /f
reg.exe delete HKCR\.3gpp2\shellex\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1} /ve /f
echo.
echo.
endlocal
;----
Restaurar o suporte ao QuickTimeA qualquer momento, se você desejar restaurar o suporte ao conteúdo QuickTime na Galeria de Fotos do Windows Live, execute as seguintes etapas:
Arquivo em lotes para restaurar o suporte a QT
;----
;- RestoreWLPGQT.cmd
;----
@echo off
setlocal
echo Running this command will remove suppressed file types from the registry
echo so they will be included in the Windows Live Photo Gallery. If this is
echo not what you want to do, press Ctrl+C now, or
pause
echo.
echo.
set GalleryRegPath=HKLM\Software\Microsoft\Windows Live\Photo Gallery
if /i "%PROCESSOR_ARCHITECTURE%" EQU "amd64" (
set GalleryRegPath=HKLM\Software\Wow6432Node\Microsoft\Windows Live\Photo Gallery
)
echo.
echo Step 1: Disabling Quicktime control use in the Windows Live Photo Gallery
reg.exe delete "%GalleryRegPath% " /v "DisableQuickTime" /f
echo.
echo.
echo Step 2: Remove Windows Live Photo Gallery suppressed file types
reg.exe delete "%GalleryRegPath%\SuppressFileTypes" /v ".mov" /f
reg.exe delete "%GalleryRegPath%\SuppressFileTypes" /v ".qt" /f
reg.exe delete "%GalleryRegPath%\SuppressFileTypes" /v ".mp4" /f
reg.exe delete "%GalleryRegPath%\SuppressFileTypes" /v ".mqv" /f
reg.exe delete "%GalleryRegPath%\SuppressFileTypes" /v ".mqt" /f
reg.exe delete "%GalleryRegPath%\SuppressFileTypes" /v ".3gp" /f
reg.exe delete "%GalleryRegPath%\SuppressFileTypes" /v ".3gpp" /f
reg.exe delete "%GalleryRegPath%\SuppressFileTypes" /v ".3gp2" /f
reg.exe delete "%GalleryRegPath%\SuppressFileTypes" /v ".3g2" /f
reg.exe delete "%GalleryRegPath%\SuppressFileTypes" /v ".3gpp2" /f
echo.
echo.
echo Step 3: Adding IExtractImage handlers
reg.exe add HKCR\.mov\shellex\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1} /ve /f
reg.exe add HKCR\.qt\shellex\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1} /ve /f
reg.exe add HKCR\.mp4\shellex\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1} /ve /f
reg.exe add HKCR\.mqv\shellex\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1} /ve /f
reg.exe add HKCR\.mqt\shellex\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1} /ve /f
reg.exe add HKCR\.3gp\shellex\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1} /ve /f
reg.exe add HKCR\.3gpp\shellex\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1} /ve /f
reg.exe add HKCR\.3gp2\shellex\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1} /ve /f
reg.exe add HKCR\.3g2\shellex\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1} /ve /f
reg.exe add HKCR\.3gpp2\shellex\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1} /ve /f
echo.
echo.
endlocal
;----
| Outros Recursos Outros Sites de Suporte
ComunidadesTraduções deste artigo
|






Windows Live
Facebook
Twitter
Linkedin
Digg it
Yahoo
Delicious
StumbleUpon
Yammer
Reddit
Technorati
FriendFeed
Email
Voltar para o início