Загрузка данных


@echo off
chcp 65001 >nul
title CRM Дымный Двор — автопечать

set "CRM_URL=https://chickenjokey.onrender.com/crm.html?cabinet=dymny-dvor"
set "PROFILE=%LOCALAPPDATA%\DymnyCrmChrome"

set "CHROME="
if exist "%ProgramFiles%\Google\Chrome\Application\chrome.exe" set "CHROME=%ProgramFiles%\Google\Chrome\Application\chrome.exe"
if not defined CHROME if exist "%ProgramFiles(x86)%\Google\Chrome\Application\chrome.exe" set "CHROME=%ProgramFiles(x86)%\Google\Chrome\Application\chrome.exe"
if not defined CHROME if exist "%LocalAppData%\Google\Chrome\Application\chrome.exe" set "CHROME=%LocalAppData%\Google\Chrome\Application\chrome.exe"

if not defined CHROME (
  echo Chrome не найден. Установите Google Chrome.
  pause
  exit /b 1
)

start "" "%CHROME%" --user-data-dir="%PROFILE%" --kiosk-printing --disable-session-crashed-bubble --no-first-run --new-window "%CRM_URL%"
exit /b 0