0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Windows Autopilot プロビジョニングの前にMcAfeeリブセーフをコマンドプロンプトからアンインストールする

Last updated at Posted at 2021-06-17

Microsoft intuneを使ってWindows Autopilotプロビジョニングで事前にウイルス対策ソフトをインストールさせる際、端末にデフォルトでインストールされているMcAfeeリブセーフの影響でインストールが失敗するケースがあります。
その時は、下記手順で予めアンインストールさせておくことで改善できます。

  • 予め、以下のバッチファイルを作成してUSB等の外部記録媒体に格納しておく。
uninstallMcafee.bat
@echo off

"C:\Program Files\McAfee\MSC\mcuihost.exe" /body:misp://MSCJsRes.dll::uninstall.html /id:uninstall
echo McAfee Uninstall プロセス終了

pause
  • 初期化されたWindowsを起動後、言語選択画面が表示されたら、Shift+F10でコマンドプロンプトを起動
  • 外部記録媒体を接続し、作成したバッチファイルを実行する。(下の例は、外部記録媒体のドライブレターがDドライブで、直下にuninstallMcafee.batが格納されている想定)
D:\uninstallMcafee.bat
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?