Mar 07

 

IE8 Beta下载已经开始提供了,让我们一起为短命的IE7哀悼一下….

昨天花儿的post还声明下载地址无效,今天就可以下载了!提供了多个操作系统的版本下载

整个程序14.4MB..

据说超过了ff3b3的水准!赶快安装试试…

下载下来的程序只是一个初步的引导安装程序,还有很多是需要从微软的主页去Downloading……..

然后是检查安全性,安装,更新…..完成!
Continue reading »

written by doo \\ tags: , , , , ,

Mar 07

我试验过在PC上装osx..但是打死都不行..

没有办法,我只有用低级的办法,美化吧..!谁叫我们那么喜欢osx呢..

美化下来的效果还不错,用了不少小的插件!不过对于系统的速度还算是可以..毕竟我是2G的内存…
Mac Osx皮肤

written by doo \\ tags: , , , ,

Mar 04

开始我也不知道这是什么来着.只知道它占用了我90%以上的CUP.

只能使用我们强大的Google来查询了..

问题原来出在windows live 照片库上,这是一个用来调用Apple QuickTime SDK来预览Apple格式文件的程序.
在微软官方上有详细的说明:
Windows Live 照片库使用 Apple QuickTime SDK 来预览和播放所有 QuickTime 内容。
我们发现,在某些极少数情况下,预览和播放此内容是不可靠的。 在这些情况下,遇到此类问题的用户如果不愿意等待 Apple QuickTime 的更新版本,则可能需要禁用此功能。

那么我们就有几种解决办法了/
1.删除照片库程序
2.禁用QuickTime的支持.

下列批处理文件将自动执行禁用对 QuickTime 的支持所需的所有步骤。(来自微软官方)

要创建和运行将禁用对 QuickTime 的支持的批处理文件,请按照下列步骤操作:
1. 复制下一节“用于禁用 QT 支持的批处理文件”中的文本。
2. 将该文本粘贴到记事本中。
3. 将文档另存为“DisableWLPGQT.cmd”,保存至桌面,然后退出“记事本”。
4. 运行该批处理文件。 为此,请按照适当的步骤操作: • 在 Windows Vista 中,右键单击 DisableWLPGQT.cmd 文件,然后单击以管理员身份运行。
• 在 Windows XP 中,确保以具有管理员凭据的用户身份登录。 然后,双击 DisableWLPGQT.cmd 文件。

5. 重新启动计算机。

现已在 Windows Live 照片库中禁用 QuickTime 内容。
用于禁用 QT 支持的批处理文件

下载: xxx.txt
;----
;-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

;----

还原对 QuickTime 的支持
在任何时候,如果要在 Windows Live 照片库中还原对 QuickTime 内容的支持,请按照以下步骤操作: 1. 复制下一节“用于还原 QT 支持的批处理文件”中的文本。
2. 将该文本粘贴到记事本中。
3. 将文档另存为“RestoreWLPGQT.cmd”,保存至桌面,然后退出“记事本”。
4. 运行该批处理文件。 为此,请执行适当的步骤: • 在 Windows Vista 中,右键单击 RestoreWLPGQT.cmd 文件,然后单击以管理员身份运行。
• 在 Windows XP 中,确保以具有管理员凭据的用户身份登录。 然后,双击 RestoreWLPGQT.cmd 文件。

5. 卸载 Windows Live 照片库。
6. 重新安装 Windows Live 照片库。

用于还原 QT 支持的批处理文件

下载: xxx.txt
;----
;- 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

;----

written by doo \\ tags: , , , ,

Mar 04

最近一段时间没有写日志..有三四天了吧..

不是因为我懒惰了,确实是电脑不争气,崩溃了.

 

我想换电脑已经有一段时间了.到现在还在用..

 

其实装电脑每次要不了多少时间,顶多半个小时,系统和驱动就都OK了.主要是我那些软件,该破解的,该设置环境的.配置服务器启动的…

 

累死我了,劳顿了两天,才OK…

 

不过,想要电脑用的顺手,还是得自己配置才可以!:)

written by doo \\ tags: ,