程式設計例項 禁止暴風影音後台程序

2021-04-23 01:08:41 字數 983 閱讀 2376

@rem ----- exescript options begin -----

@rem scripttype: console

@rem destdirectory: temp

@rem icon: f:/娛樂//電腦/我的圖示/cancel.ico

@rem outputfile: c:/documents and settings/administrator/桌面/禁止暴風影音.exe

@rem ----- exescript options end -----

cls@color 0a

@title 禁止暴風影音後台程序 by: hackersea[卡飯論壇:bbs.kafan.cn]

@echo off

@echo 利用ifeo技術乾掉暴風後台程序,永久生效!

@set filename=stormliv.exe

@reg  add "hklm/software/microsoft/windows nt/currentversion/image file execution options/%filename%" /ve /f  

@reg  add "hklm/software/microsoft/windows nt/currentversion/image file execution options/%filename%" /v debugger /t reg_sz /d svchost.exe /f

@if %errorlevel% equ 0 @echo. & echo 成功禁止暴風影音後台程序...

::下面是如果有後台程序則結束之..

@echo.

@tasklist|findstr /i /c:"stormliv.exe" >nul 2>nul && taskkill /f /im stormliv.exe  

@echo.

@echo 3秒鐘後自動關閉...

@ping 127.1 /n 5 >nul 2>nul & exit

C 後台程序程式設計實戰

一 點睛 對於那些不需要互動的程序,很多時候希望將其在後台啟動,可以在啟動的時候加乙個 比如乙個程序的名字是recv,我們希望它在後台執行,則可以輸入 recv 這樣它就是乙個後台程序了,而且不會佔據shell,我們依然可以在shell下做其他操作。但關閉shell視窗的時候,後台程序也將隨之退出。...

8 1 7 程序程式設計例項

在本節的最後,給出乙個多程序程式設計的綜合例項,程式會建立兩個程序,在父程序和子程序之間通過管道傳遞資料,父程序向子程序傳送字串 exit 表示讓子程序退出,並且等待子程序返回 子程序查詢管道,當從管道讀出字串 exit 的時候結束。例項8 7 程序程式設計例項 1 process demo.c 2...

linux下建立後台守護程序例項

步驟 1.父程序通過fork函式建立乙個子程序,然後父程序退出 2.子程序中使用setsid函式建立乙個新的會話 3.切換程序的工作目錄到根目錄 4.設定程序的umask為0 5.關閉不需要的檔案操作符 例項 include incude include include include includ...