12 lines
204 B
Batchfile
12 lines
204 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
set SCRIPT_DIR=%~dp0
|
|
set PORT=%~1
|
|
|
|
if "%PORT%"=="" set PORT=8010
|
|
|
|
powershell -NoProfile -ExecutionPolicy Bypass -File "%SCRIPT_DIR%remove_windows_portproxy.ps1" -Port %PORT%
|
|
|
|
endlocal
|