Quantcast
Channel: 還暦超えた-じいさんの・・「ボケ防止」ゴゾゴゾと猫とカメラ?
Viewing all articles
Browse latest Browse all 239

Windows10でsafemode…今更ながら

$
0
0
みなさん こんにちは。

今日の四国は
曇り・・寒いか

さて、マイクソ ソフトはWindows10になって1703-1709-1803-1809と・・
ただその度に何らかの不具合が発生することが多かった。

多分 これからも同じようなことが行われるんだろう。

で・・・時々ヘルプが入ります・・・オンラインのリモートで対応できるのはマシなんだが
どうしても出かけて対応しなければならないことがある。

1:クルクルから進まない・・起動途中で強制的に電源を二回連続して落とす。
   修復モードに入れる。

2:起動はするが動きが怪しい・・ドライバーか新たに入れたソフトか・・
  Safemodeにて起動し対応する。

ただ10になってからちょっと入りにくい。

コマンドで「shutdown /r /o /t 0」を実行する。
Shiftキーを押したまま「再起動」をクリック

その他いろいrな方法があるがどちらにしろその後

イメージ 1

ここから始めなければならない・・・・ん~ん・・面倒なことは嫌だ!

で・・・

一発で出来る方法を紹介します・・・これを落として下さい。

展開後・・・バッチファイルを実行すると

イメージ 2

こんな画面になりますので「はい(y)」をクリックすれば自動的にSafemodeで再起動されます。

この中身は・・ちょっと長いので・・興味のある人だけお読み下さいな

OSが7や8でも動作します・・・・それでは良き休日をお過ごし下さいな。

::================================================
@echo off
cls
color f0
setLocal EnableExtensions EnableDelayedExpansion
set "installfolder=%~dp0"
set "installfolder=%installfolder:~0,-1%"
set "installername=%~n0.bat"
::=============================================================
:: CHECK ADMIN RIGHTS
fltmc >nul 2>&1
if "%errorlevel%" NEQ "0" (goto:UACPrompt) else (goto:gotAdmin)
::=============================================================
:UACPrompt
echo:
echo   Requesting Administrative Privileges...
echo   Press YES in UAC Prompt to Continue
echo:
echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\GetAdmin.vbs"
echo args = "ELEV " >> "%temp%\GetAdmin.vbs"
echo For Each strArg in WScript.Arguments >> "%temp%\GetAdmin.vbs"
echo args = args ^& strArg ^& " "  >> "%temp%\GetAdmin.vbs"
echo Next >> "%temp%\GetAdmin.vbs"
echo UAC.ShellExecute "%installername%", args, "%installfolder%", "runas", 1 >> "%temp%\GetAdmin.vbs"
cmd /u /c type "%temp%\GetAdmin.vbs">"%temp%\GetAdminUnicode.vbs"
cscript //nologo "%temp%\GetAdminUnicode.vbs"
del /f /q "%temp%\GetAdmin.vbs" >nul 2>&1
del /f /q "%temp%\GetAdminUnicode.vbs" >nul 2>&1
exit /B
::==============================================================
:gotAdmin
if "%1" NEQ "ELEV" shift /1
if exist "%temp%\GetAdmin.vbs" del /f /q "%temp%\GetAdmin.vbs"
if exist "%temp%\GetAdminUnicode.vbs" del /f /q "%temp%\GetAdminUnicode.vbs"
::==============================================================
@echo off
cls
color f0
cd/d %~dp0"
::==============================================================
call :MsgBox "Restart to Safe Mode ?" "VBYesNo" "Boot Into Safe Mode"
if "%errorlevel%"=="7" (
exit /b
)
if "%errorlevel%"=="6" goto:SAFEMODE
:MsgBox prompt type title
setlocal enableextensions
set "tempFile=%temp%\%~nx0.%random%%random%%random%vbs.tmp"
>"%tempFile%" echo(WScript.Quit msgBox("%~1",%~2,"%~3") & cscript //nologo //e:vbscript "%tempFile%"
set "exitCode=%errorlevel%" & del "%tempFile%" >nul 2>nul
endlocal & exit /b %exitCode%
::========================================================
:SAFEMODE
ver | findstr /i "10\.0\." > nul
if %ERRORLEVEL% EQU 0 (goto:Win10) else (goto:Others)
::========================================================
:Win10
bcdedit /set {current} safeboot network
REG ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce /v "*UndoSB" /t REG_SZ /d "bcdedit /deletevalue {current} safeboot"
SHUTDOWN -r -f -t 00
goto:end
::========================================================
:Others
ver | find "XP" > nul
if %ERRORLEVEL% == 0 (
bootcfg /raw /a /safeboot:network /id 1
REG ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce /v "*UndoSB" /t REG_SZ /d "bootcfg /raw /fastdetect /id 1"
SHUTDOWN -r -f -t 00
) else (
bcdedit /set {current} safeboot network
REG ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce /v "*UndoSB" /t REG_SZ /d "bcdedit /deletevalue {current} safeboot"
SHUTDOWN -r -f -t 00
)
goto:end
)
)
::================================
:end
::================================





Viewing all articles
Browse latest Browse all 239

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>