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