hi, can you please let me know does Dataminer script supports PowerShell scripts?
purpose: I am trying to schedule a task that can copy the logging folder weekly to NFS through scripts
$cDate = Get-Date -format yyyy-MM-dd
$NewPath = "\\192.168.10.10\AMS_DTH_A\testams\logs\$cDate"
New-Item -Path $NewPath -ItemType Directory
Copy-Item -Path "C:\Skyline DataMiner\Logging\*" -Destination $NewPath -Recurse
If you have any template script please do share
Thanks
Hi :
Just like to know if i can run my powershell script from C# QAction code?
Also, my powershell prints the output on stdout or a file. If the QAction can run the powershell script how can i get the output into the dataminer element page?
THanks