@echo off @rem @rem --------------------------------------------------------------------------- @rem Company: Software- und Organisations-Service GmbH @rem Author : Andreas Püschel @rem Dated : 2006-05-21 @rem Purpose: Sample for a shell command triggered by Web Service requests. @rem This script simply echos values of environment variables @rem that correspond to the given command line parameters. @rem Delayed environment expansion has to be turned on by cmd.exe /V:ON @rem --------------------------------------------------------------------------- :start if "%~1"=="" goto end @echo environment variable %~1 = !%~1! shift goto start :end