$NetworkPath = "\\starbase\Artemis_Files\Artemis Versions\Mod\Artemis 2.8 TNG Mod\*" $LocalPath = "C:\Artemis 2.8 TNG Mod" Write-Host "Copying Artemis to Local Computer" -ForegroundColor DarkCyan if(Test-Path $LocalPath) {"Temp folder found"} else {New-Item -ItemType Directory -Force -Path $LocalPath} New-Item -ItemType Directory -Force -Path $LocalPath Copy-Item $NetworkPath -Destination $LocalPath -Recurse -Force