Hello there,
LGPO.exe is a new command-line utility to automate the management of local group policy.
All the group policy editor does is set registry keys. If you can identify what keys are being set for the policy you want, you can use reg.exe to set those keys.
reg.exe add HKCU\Software\path\to\regkey\ /v valuename /d newvalue
If you do this in a batch, you will have to run the batch as administrator to touch the C:\windows\system32 folder.
Similar discussion here
https://learn.microsoft.com/en-us/answers/questions/940542/how-can-create-a-batch-file-to-local-group-policy.html
----------------------------------------------------------------------------------------------------------------------------
--If the reply is helpful, please Upvote and Accept it as an answer--