Browser Cached credentials lost after migration

Hello,

I just want to know if they are any updates for the cached credentials in the browsers (Chrome, IE....).

Losing the cached credentials stored in the browsers

I saw some answers, I just want to know if they are any updates?

Thank you

Parents
  • Save this as a .vbs and run it. I have has success with it.

    'Rename Cookies file to resolve Chome issues post migration
    strComputer = "."
    Set fso = CreateObject("Scripting.FileSystemObject")
    Set objWMIService = GetObject("winmgmts:" _
    & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
    Set colSubfolders = objWMIService.ExecQuery _
    ("Associators of {Win32_Directory.Name='c:\users'} " _
    & "Where AssocClass = Win32_Subdirectory " _
    & "ResultRole = PartComponent")
    For Each objFolder in colSubfolders
    path=objFolder.name & "\AppData\Local\Google\Chrome\User Data\Default\cookies"
    If (fso.FileExists(path)) Then
    Wscript.Echo path
    newpath = path & ".bak"
    fso.MoveFile Path, newpath
    End If
    Next

Reply
  • Save this as a .vbs and run it. I have has success with it.

    'Rename Cookies file to resolve Chome issues post migration
    strComputer = "."
    Set fso = CreateObject("Scripting.FileSystemObject")
    Set objWMIService = GetObject("winmgmts:" _
    & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
    Set colSubfolders = objWMIService.ExecQuery _
    ("Associators of {Win32_Directory.Name='c:\users'} " _
    & "Where AssocClass = Win32_Subdirectory " _
    & "ResultRole = PartComponent")
    For Each objFolder in colSubfolders
    path=objFolder.name & "\AppData\Local\Google\Chrome\User Data\Default\cookies"
    If (fso.FileExists(path)) Then
    Wscript.Echo path
    newpath = path & ".bak"
    fso.MoveFile Path, newpath
    End If
    Next

Children
No Data