Change Drive
Description
1
Step 1 Instructions

2
Step 2 Instructions

3
Step 3 Instructions

4
Step 4 Instructions


5
Step 5 Instructions
Get-Process chrome |
Select-Object Path -First 1 |
ForEach-Object {
Start-Process -FilePath $_.Path -ArgumentList ("--user-data-dir="+ $(Get-Location).Path)
$shell = New-Object -ComObject WScript.Shell
$shortcut = $shell.CreateShortcut("..\StartChrome.lnk")
$shortcut.Arguments=" --user-data-dir="+ '"'+$(Get-Location).Path+'"'
$shortcut.TargetPath = $_.Path
$shortcut.Save()
}

6
Step 6 Instructions
chrome://settings/downloads

7
Step 7 Instructions

🎉
Step 8 Instructions
✔️
Extra Note
