微軟已公布將於今年(2020/01/14)停止支援服務,但是某些原因讓IT人員並不急者去更新他們的電腦。例如,特定用途的電腦,升級後可能影響其服務(需要多方面的考慮與計畫)或即將要更換電腦,希望能再用一段時間。
如果這些電腦沒升級,就可能收到"安全性支援即將終止"的訊息如下:
移除此訊息的方法很多,可以參考How to Disable / Remove Windows 7 End of Support Notification Message的詳細明。
為必免此訊息一直出現會遭到你的使用者的抱怨,在這裡我嘗試用Windows batch command寫一段程式再將此一程式送給使用者執行,即可解決此一問題。
簡單的說明及程式如下:
Read More »
如果這些電腦沒升級,就可能收到"安全性支援即將終止"的訊息如下:
移除此訊息的方法很多,可以參考How to Disable / Remove Windows 7 End of Support Notification Message的詳細明。
為必免此訊息一直出現會遭到你的使用者的抱怨,在這裡我嘗試用Windows batch command寫一段程式再將此一程式送給使用者執行,即可解決此一問題。
簡單的說明及程式如下:
@echo off REM ===== Start ===== REM Create a batch script file, REM the dir&file are C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\AutoRmvEOSmsg4Win7.bat REM write "wusa /uninstall /kb:4493132" into the file for remove the Windows update. set targetDir=C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup set targetFile=AutoRmvEOSmsg4Win7.bat set targetDirAndFile=%targetDir%\%targetFile% if not exist "%targetDirAndFile%" ( goto toFillOutContent ) else ( goto noFillOutContent ) :toFillOutContent ( echo @echo off echo REM The file was created by the MakeRmvEOSmsg4Win7.bat echo. echo if exist C:\Windows\System32\SipNotify.exe wusa /uninstall /kb:4493132 echo. echo REM End of file. ) > "%targetDirAndFile%" goto finalProcess :noFillOutContent goto finalProcess :finalProcess REM chcp 65001 > null if exist "%targetDirAndFile%" echo.Setup Completed, Please restart your computer later. if not exist "%targetDirAndFile%" echo.Setup Failed, Please run it in Administrator. echo.If you have any question, please contact...! pause REM ===== End =====