2
0
2024-12-10 08:15:02 -06:00

11 lines
304 B
Batchfile
Executable File

@echo off
rem Define the directory where your registry files are located
set REG_FILES_DIR=C:\Scripts\Printers\02-Printer-Properties
rem Loop through each .reg file in the directory
for %%f in (%REG_FILES_DIR%\*.reg) do (
reg import "%%f"
)
echo All registry files imported successfully.