File: NetworkMediaImporter.bat

package info (click to toggle)
pixelmed 20150917%2Bgit20151209.36f3174%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 25,900 kB
  • sloc: java: 110,939; xml: 88,803; makefile: 6,255; sh: 241
file content (11 lines) | stat: -rwxr-xr-x 556 bytes parent folder | download | duplicates (2)
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.9.jar;.\lib\additional\commons-codec-1.3.jar" com.pixelmed.network.NetworkMediaImporter %host% %port% %calledaet% %callingaet% %driveorpath%
@pause