@echo off
where powershell_ise.exe >nul 2>&1
if errorlevel 1 (
  echo PowerShell ISE nie jest zainstalowany na tym komputerze.
  echo Mozesz wlaczyc go w funkcjach opcjonalnych systemu Windows.
  pause
  exit /b 1
)
start "PowerShell ISE" powershell_ise.exe
exit /b
