Tp Test Server

Alb Test

WARNING: Plotting chart from file c: temp SRDestinationDataVolumeBytesPerSec.csv failed. WARNING: System.Exception WARNING: Test-SRTopology: Plotting chart from file c: temp SRDestinationDataVolumeBytesPerSec.csv failed.

At C: Users Administrator.MARCOSOFT Desktop TestSRTopology.ps1:3 char:1 + Test-SRTopology -SourceComputerName svr-store-1 -SourceVolumeNames e. + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo: ObjectNotFound: (:) [Test-SRTopology], Exception + FullyQualifiedErrorId: TestSRTopologyFailure,Microsoft.FileServices.SR.Powershell.TestSRTopologyCommand. Hi Marco, We need all command lines you input until these error messages come out. From the error it mentioned ' CSV Import Error: Line 1 has more fields than there are columns in the header line'. I cannot confirm if it is the root cause but 'CSV import' should be of of the steps it needed.

We can find 'import-csv' and it provided the following example about Header and Column. The second command saves a header in the $header variable. Unlike the default header, this header uses 'MoreData' instead of 'HasMoreData' and 'State' instead of 'JobStateInfo'. PS C: >$header = 'MoreData','StatusMessage','Location','Command','State','Finished','InstanceId','SessionId','Name','ChildJobs','Output','Error','Progress','Verbose','Debug','Warning','StateChanged' The next three commands delete the original header (the second line) from the Jobs.csv file.

In order for a server in your business to sync its time with that of a client computer, it needs to use what is known as Network Time Protocol (NTP). When your NTP.

# Delete header from file PS C: >$a = (get-content jobs.csv) PS C: >$a = $a[0], $a[2.($a.count - 1)] PS C: >$a >jobs. Evermotion Archmodels Vol 42. csv The sixth command uses the Import-Csv cmdlet to import the Jobs.csv file and convert the CSV strings into a CSV version of the job object. The command uses the Header parameter to submit the alternate header.

The results are stored in the $j variable. PS C: >$j = Import-Csv jobs.csv -header $header Please remember to mark the replies as answers if they help and un-mark them if they provide no help.

If you have feedback for TechNet Support, contact tnmff@microsoft.com. Test-SRTopology -SourceComputerName svr-store-1 -SourceVolumeNames e: -SourceLogVolumeName f: -DestinationComputerName svr-store-2 -DestinationVolumeNames e: -DestinationLogVolumeName f: -DurationInMinutes 15 -ResultPath c: temp where svr-store-1 and svr-store-2 are the 2 virtual servers, 'e' is the data disk on both servers and 'f' is log disk on both servers. I try with -verbose as Steven Graves suggested to see if the command returns more info. However, the replica works fine between the 2 servers:-) so the only 'problem' is the test command. -- Regards Marco Mangiante.