????

Your IP : 3.141.193.237


Current Path : C:/Windows/System32/
Upload File :
Current File : C:/Windows/System32/sconfig.cmd

echo off
cls

set PowerShell=%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe
set SConfigV2Command=Invoke-Sconfig

pushd %~dp0
if exist %PowerShell% (
    %PowerShell% -Command "%SConfigV2Command%"
) else (
    REM PowerShell was not found. The new SConfig requires PowerShell
    REM To run SConfig, please install Windows PowerShell feature
)
popd