Kindle進階指令

view raw note.md hosted with ❤ by GitHub

批次檔傳遞參數至Powershell

@ECHO OFF
powershell -file "C:\FolderJPG90.ps1" %1
PAUSE
view raw CallPS.bat hosted with ❤ by GitHub
$WorkPath = $args[0]
Write-Host $args[0] -BackgroundColor Blue
view raw FolderJPG90.ps1 hosted with ❤ by GitHub