Replace the use of wmic (deprecated) with a powershell call

This commit is contained in:
cmdr2 2025-01-04 13:25:53 +05:30
parent 8e9a9dda0f
commit dcb1f3351e
2 changed files with 4 additions and 3 deletions

View File

@ -4,7 +4,7 @@ echo "Opening Stable Diffusion UI - Developer Console.." & echo.
cd /d %~dp0 cd /d %~dp0
set PATH=C:\Windows\System32;%PATH% set PATH=C:\Windows\System32;C:\Windows\System32\WindowsPowerShell\v1.0;%PATH%
@rem set legacy and new installer's PATH, if they exist @rem set legacy and new installer's PATH, if they exist
if exist "installer" set PATH=%cd%\installer;%cd%\installer\Library\bin;%cd%\installer\Scripts;%cd%\installer\Library\usr\bin;%PATH% if exist "installer" set PATH=%cd%\installer;%cd%\installer\Library\bin;%cd%\installer\Scripts;%cd%\installer\Library\usr\bin;%PATH%
@ -26,6 +26,7 @@ call conda --version
echo. echo.
echo COMSPEC=%COMSPEC% echo COMSPEC=%COMSPEC%
echo. echo.
powershell -Command "(Get-WmiObject Win32_VideoController | Select-Object Name, AdapterRAM, DriverDate, DriverVersion)"
@rem activate the legacy environment (if present) and set PYTHONPATH @rem activate the legacy environment (if present) and set PYTHONPATH
if exist "installer_files\env" ( if exist "installer_files\env" (

View File

@ -3,7 +3,7 @@
cd /d %~dp0 cd /d %~dp0
echo Install dir: %~dp0 echo Install dir: %~dp0
set PATH=C:\Windows\System32;%PATH% set PATH=C:\Windows\System32;C:\Windows\System32\WindowsPowerShell\v1.0;%PATH%
set PYTHONHOME= set PYTHONHOME=
if exist "on_sd_start.bat" ( if exist "on_sd_start.bat" (
@ -39,7 +39,7 @@ call where conda
call conda --version call conda --version
echo . echo .
echo COMSPEC=%COMSPEC% echo COMSPEC=%COMSPEC%
wmic path win32_VideoController get name,AdapterRAM,DriverDate,DriverVersion powershell -Command "(Get-WmiObject Win32_VideoController | Select-Object Name, AdapterRAM, DriverDate, DriverVersion)"
@rem Download the rest of the installer and UI @rem Download the rest of the installer and UI
call scripts\on_env_start.bat call scripts\on_env_start.bat