Category: Fileservices

Posted on: December 15, 2019 Posted by: Philipp Comments: 0

Powershell: Fileservermigration to new Domain

Since a long time I work for a customer and he asked if I can shortly write a script to help him to migrate a lot of fileserver from one to a new Active Directory. All former used tools had a lot of disadvantages because they would be very expensive, …

Posted on: December 4, 2019 Posted by: Philipp Comments: 0

Error 0x80070780 – The System can not access the File

Fehler 0X80070780: Das System kann nicht auf die Datei zugreifen During a migration a customer build a new Fileserver and attached the old disks from the old Fileserver to the new one.After attaching the virtual disc the access to the files was not possible on the new Server. If the …

Posted on: November 1, 2019 Posted by: Philipp Comments: 0

Powershell: Analyse Robocopy Logs for Error´s with Regex

Ein kleines Script welches Robocopy Log-Daten nach Fehlern durchsucht und konsolidiert. ein Auszug eines Fehlers: 2014/07/07 15:39:31 ERROR 123 (0x0000007B) Creating Destination Directory \\mswfil\USR$\aabbcc\””\ Mittels RegExr  (an online tool to learn, build, & test Regular Expressions) habe ich folgendes generiert: ([A-Z]{3,}).([0-9]{3,}).([(])+([0-9])+([x])+([0-9]{3,}).([)]).([A-Za-z]{3,}).([A-Za-z]{3,}).  und nun Powershell

Posted on: September 8, 2014 Posted by: Philipp Comments: 0

Powershell Robocopy Log-Aufbereitung für Excel

Mit diesem kleinen Script war es möglich 6000 Log-Files welche durch einzelne Robocopy-Kopiervorgänge erzeugt wurden auszuwerten. Nach dem Prinzip “short&simple” setzt dieses Skript lediglich auf String replacement, sowie das Splitten von Variablen. OS:Windows2012R2

Posted on: May 12, 2013 Posted by: admin Comments: 0

Fileserver, Daten zwischen zwei lokalen Partitionen kopieren

Bei einem größeren SAN kann es vorkommen das LUN´s aus verschiedenen Storagesystemen zu einem dynamischen Datenträger gestückelt sind. Eine Herausforderung kann entstehen wenn eines der beteiligten Systemen offline geht. Dann ist die “Dynamic Disk” unbrauchbar 🤷🏻‍♂️ Aus diesem Grund sollte eine neue ausreichend große LUN anlegt werden und mittels robocopy …