This repository has been archived on 2023-05-21. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
SysTools/DeployTools/Enable_Deploy-FirstBoot.cmd
2021-07-15 15:28:03 +02:00

22 lines
825 B
Batchfile

@echo off
REM ###############################################################
REM # @description: #
REM # Used for enableing "Deploy-FirstBoot.ps1" on next boot #
REM # #
REM # @project: IMGSystTools #
REM # @author: Bram Prieshof #
REM ###############################################################
NET SESSION >nul 2>&1
IF %ERRORLEVEL% EQU 0 (
COPY "C:\SysTools\DeployTools\INK_KickStart_Deploy-FirstBoot.lnk" "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp\FirstBoot.lnk"
ECHO Enabled FirstBoot Deploy script
PAUSE
) ELSE (
ECHO Please run this script as administrator
PAUSE
)