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 |
View advanced options for system recovery and support - System Recovery Options - Command Prompt > bootrec /fixmbr > bootrec /fixboot > bootrec /Rebuildbcd > diskpart > list disk Check the disc number > select disk 0 When the disk number is 0 > list part Confirm the partition that Windows is in Activity parts are marked with * > select part 2 When the partition containing Windows is 2 > active > list part Confirm that * is displayed in partition 2 > detail partition Check if it is active > exit Quit diskpart > bootrec /fixmbr > bootrec /fixboot > bootrec /Rebuildbcd Startup Repair Restart The causes files is displayed. Delete the files in some way. |
See: http://www.ultimatebootcd.com/
システム ファイル チェッカーでファイルの破損を調べる
1 2 3 |
DISM.exe /Online /Cleanup-image /Restorehealth sfc /scannow |
ユーザープロファイルが壊れた時
regedit
HKEY_LOCAL_MACHINE > SOFTWARE > Microsoft > Windows NT > CurrentVersion > ProfileList
S-1-5 で始まるサブキーで
ProfileImagePathの値が C:\Users\TARGET_USER となっているもの
State: 0
RefCount: 0 ※無ければ DWORD (32ビット) で作成
コマンドラインからユーザー作成
1 2 3 |
net user <アカウント名> /add net localgroup Administrators <アカウント名> /add |
コマンドラインでアクセス権設定 – 誰でもアクセス可能に
1 |
cacls <path> /E /T /C /G Everyone:F |