Nanatsu no Taizai - Soundtrack
|
UPDATES |
|
!!! Please Upload Covers
!!! |
|
If you have full covers for any of the missing
volumes, or you have covers for a manga,manhwa… that is not here on the site, please
upload them using the upload box below; (and please make sure the file name contains series name and volume number. |
|
To contact me, send an email to;
www@mokuton.com (You can also send your covers by email :p) |
$driveLetter = "Z:" $sharePath = "\\server\share" $logFile = "$env:TEMP\map_drive.log" function Write-Log Out-File -FilePath $logFile -Append $existing = Get-PSDrive -Name $driveLetter[0] -ErrorAction SilentlyContinue if ($existing -and $existing.DisplayRoot -eq $sharePath) Write-Log "Drive $driveLetter already mapped to $sharePath" exit 0 Remove stale mapping if letter conflict if ($existing) Write-Log "Removing conflicting mapping on $driveLetter" net use $driveLetter /delete /y Map the drive try $cred = Import-Clixml -Path "C:\secrets\share_cred.xml" -ErrorAction Stop New-PSDrive -Name $driveLetter[0] -PSProvider FileSystem ` -Root $sharePath -Persist -Credential $cred -ErrorAction Stop Write-Log "Successfully mapped $driveLetter to $sharePath" catch Write-Log "FAILED: $_" exit 1