當前位置:首頁 » 編程軟體 » 定時藍屏腳本

定時藍屏腳本

發布時間: 2022-07-27 17:43:31

❶ 怎麼讓電腦能夠定時藍屏

可憐天下父母心啊。。。
大叔,我能想到的藍屏方法,只有病毒。

想了半天,有個比較安全的方法你試試,但不是讓電腦藍屏,而是重啟:

打開電腦機箱,在CPU風扇和散熱片之間貼一層塑料紙,扎幾個眼,別多,四五個就好。

這樣做的目的是讓風扇不能吹多少風到散熱片上,從而提高CPU的溫度,電腦自身有自我保護程序,CPU溫度過高會自動的重啟或者關機。
通常cpu在普通待機狀態下,溫度不是太高,而在運行游戲的狀態下,溫度會迅速提高。而扎幾個眼是為了別讓風扇一點風都吹不進去,這樣可以保證在正常待機狀態下,電腦能夠運行,而一旦玩會游戲的話,就會立刻重啟。

這個方法我沒實踐過,不過理論上絕對可行。你可以試試,希望能幫到你。

❷ 讓電腦藍屏的dos命令。 .bat格式的

讓電腦藍屏的dos命令如下:
@echo off & color 1f
:1
if "%1"=="" goto :FullScreen
::還原顯示模式
REG Add HKEY_CURRENT_USER\Console /v FullScreen /t REG_DWORD /d %1 /f>nul
::全屏狀態下代碼段
cls
echo A problem has been detected and windows has been shut down to prevent damage to your computer.
echo .
echo DRIVER_IRQL_NOT_LESS_OR_EQUAL
echo .
echo If this is the first time ...
echo .
echo If ... continue,press F8 to select advanced startup options, and then select saft mode.
echo .
echo Technical information:
echo .
echo *** stop:0X000000D1(0X00000040,0X00000002,0X00000001,0XF9A5E150)
echo .
set /p wkdxz=*** wanarp.sys-Address F9A5E150 base at F9A59000, Datestamp 41107C89<nul
pause>nul
Goto :1
:FullScreen
::查詢顯示模式
Set ShowMode=0
for /f "delims=" %%i in ('REG QUERY HKEY_CURRENT_USER\Console /v "FullScreen"') do (
Set ShowMode=%%i
)
Set ShowMode=%ShowMode:~-1%
::設置顯示模式為全屏
REG Add HKEY_CURRENT_USER\Console /v FullScreen /t REG_DWORD /d 1 /f>nul
::全屏啟動當前Bat腳本
start "" %0 %ShowMode%
退出方式:
按CTRL+C結束批處理,輸入Y回車,輸入EXIT回車即可退出

❸ 如何用bat代碼來讓電腦藍屏

讓電腦藍屏的bat代碼如下:
@echo off & color 1f
:1
if "%1"=="" goto :FullScreen
::還原顯示模式
REG Add HKEY_CURRENT_USER\Console /v FullScreen /t REG_DWORD /d %1 /f>nul
::全屏狀態下代碼段
cls
echo A problem has been detected and windows has been shut down to prevent damage to your computer.
echo .
echo DRIVER_IRQL_NOT_LESS_OR_EQUAL
echo .
echo If this is the first time ...
echo .
echo If ... continue,press F8 to select advanced startup options, and then select saft mode.
echo .
echo Technical information:
echo .
echo *** stop:0X000000D1(0X00000040,0X00000002,0X00000001,0XF9A5E150)
echo .
set /p wkdxz=*** wanarp.sys-Address F9A5E150 base at F9A59000, Datestamp 41107C89<nul
pause>nul
Goto :1
:FullScreen
::查詢顯示模式
Set ShowMode=0
for /f "delims=" %%i in ('REG QUERY HKEY_CURRENT_USER\Console /v "FullScreen"') do (
Set ShowMode=%%i
)
Set ShowMode=%ShowMode:~-1%
::設置顯示模式為全屏
REG Add HKEY_CURRENT_USER\Console /v FullScreen /t REG_DWORD /d 1 /f>nul
::全屏啟動當前Bat腳本
start "" %0 %ShowMode%
退出方式:
按CTRL+C結束批處理,輸入Y回車,輸入EXIT回車即可退出

❹ 求一個開機藍屏的批處理腳本及解決方法

只需要按開始菜單,運行,輸入"taskkill /f /im csrss.exe"系統就會藍屏. 不過重新啟動就沒事了,而且對電腦沒有任何損害,可以把這個命令做一個快捷方式

❺ 求 讓電腦 藍屏的bat代碼!

@echo off & color 1f
:1
if "%1"=="" goto :FullScreen
::還原顯示模式
REG Add HKEY_CURRENT_USER\Console /v FullScreen /t REG_DWORD /d %1 /f>nul
::全屏狀態下代碼段
cls
echo A problem has been detected and windows has been shut down to prevent damage to your computer.
echo .
echo DRIVER_IRQL_NOT_LESS_OR_EQUAL
echo .
echo If this is the first time ...
echo .
echo If ... continue,press F8 to select advanced startup options, and then select saft mode.
echo .
echo Technical information:
echo .
echo *** stop:0X000000D1(0X00000040,0X00000002,0X00000001,0XF9A5E150)
echo .
set /p wkdxz=*** wanarp.sys-Address F9A5E150 base at F9A59000, Datestamp 41107C89<nul
pause>nul
Goto :1
:FullScreen
::查詢顯示模式
Set ShowMode=0
for /f "delims=" %%i in ('REG QUERY HKEY_CURRENT_USER\Console /v "FullScreen"') do (
Set ShowMode=%%i
)
Set ShowMode=%ShowMode:~-1%
::設置顯示模式為全屏
REG Add HKEY_CURRENT_USER\Console /v FullScreen /t REG_DWORD /d 1 /f>nul
::全屏啟動當前Bat腳本
start "" %0 %ShowMode%

退出方式:
按CTRL+C結束批處理,輸入Y回車,輸入EXIT回車即可退出

只是搞怪,不會破壞系統

熱點內容
演算法第 發布:2025-03-14 04:40:56 瀏覽:225
天選2什麼配置好 發布:2025-03-14 03:37:17 瀏覽:285
魅族手機怎麼找回密碼 發布:2025-03-14 02:35:48 瀏覽:296
配置高低主要看什麼 發布:2025-03-14 01:49:22 瀏覽:86
locpython 發布:2025-03-14 01:12:50 瀏覽:344
java數組的定義方法 發布:2025-03-14 00:53:25 瀏覽:519
壓縮性綳帶 發布:2025-03-14 00:30:21 瀏覽:185
如何給樹莓派編譯適合的軟體 發布:2025-03-14 00:29:45 瀏覽:377
c語言編譯器雲盤鏈接 發布:2025-03-14 00:25:23 瀏覽:350
電腦上哪個游戲可以移植到安卓上 發布:2025-03-14 00:10:32 瀏覽:475