Officeに関わるものを停止するとOfficeが立ち上がらないことがある。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
@echo off rem メモリの空き領域を利用し、アプリケーション起動の高速化 sc config "SysMain" start= disabled rem 検索インデックス作成し、検索の高速化 sc config "WSearch" start= disabled rem 管理者以外でActiveXをインストールする仕組み sc config "AxInstSV" start= disabled rem スマートカードの管理 sc config "CertPropSvc" start= disabled sc config "ScDeviceEnum" start= disabled sc config "SCPolicySvc" start= disabled rem 地図データの管理 sc config "MapsBroker" start= disabled rem 位置情報の管理 sc config "lfsvc" start= disabled rem ストアからの通知の管理 sc config "NcbService" start= disabled rem センサーの管理 sc config "SensorDataService" start= disabled sc config "SensrSvc" start= disabled sc config "SensorService" start= disabled rem PNRP(ピア名解決プロトコル) sc config "PNRPsvc" start= disabled sc config "p2psvc" start= disabled sc config "p2pimsvc" start= disabled rem 自動再生の管理 sc config "ShellHWDetection" start= disabled rem ウォレットの管理 sc config "WalletService" start= disabled rem モバイルデータ接続の管理 sc config "icssvc" start= disabled rem 生体認証の管理 sc config "WbioSrvc" start= disabled rem XboxLiveの管理 sc config "XblAuthManager" start= disabled sc config "XblGameSave" start= disabled rem 配信サービス(SMS)の管理 sc config "dmwappushservice" start= disabled pause |