8 lines
138 B
Batchfile
8 lines
138 B
Batchfile
@echo off
|
|
setlocal EnableExtensions
|
|
|
|
if "%~1"=="" (
|
|
"%~dp0pptx-image-compress.exe" -h
|
|
) else (
|
|
"%~dp0pptx-image-compress.exe" %*
|
|
) |