12 lines
No EOL
366 B
Batchfile
12 lines
No EOL
366 B
Batchfile
@ECHO OFF
|
|
rem Developed by Tanner Van Teeffelen
|
|
rem Copyright ACO Services Inc. 2026
|
|
|
|
rem Sets path equal to the location of the running script.
|
|
SET drivepath=%~dp0
|
|
|
|
rem Removes extra slash at the end of the drive path.
|
|
%drivepath:~0,-1%
|
|
|
|
rem Runs installer with the ExecutionPolicy set to bypass.
|
|
powershell.exe -executionpolicy bypass -file %drivepath%\RDPSign.ps1 |