File: NetworkMediaImporter.bat

package info (click to toggle)
pixelmed 20200416-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 26,320 kB
  • sloc: java: 138,613; xml: 109,896; makefile: 9,258; sh: 255
file content (11 lines) | stat: -rwxr-xr-x 557 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
@rem To always send to a particular DICOM Storage SCP the contents of a particular drive or folder, edit the following variables:

@set host=192.168.1.100
@set port=4006
@set calledaet=HELGRAY
@set callingaet=IMPORTER
@set driveorpath=H:\

@echo Reading from drive or path %driveorpath% and sending to %host% %port% %calledaet%
@java -Xms128m -Xmx512m -cp ".\pixelmed.jar;.\lib\additional\commons-compress-1.12.jar;.\lib\additional\commons-codec-1.3.jar" com.pixelmed.network.NetworkMediaImporter %host% %port% %calledaet% %callingaet% %driveorpath%
@pause