Well, first you need to pull the GUID from the output powercfg. This can be done using the command for:
for /f "tokens=2 delims=:(" %%x in ('powercfg -getactivescheme') do echo %%x
This will simply output the GUID, you can also save it in a variable:
for /f "tokens=2 delims=:(" %%x in ('powercfg -getactivescheme') do set guid=%%x
, ( , :
set guid=%guid: =%
, GUID, :
powercfg -duplicatescheme %guid% <new GUID>
GUID. , .
NB: ( for) , . %x %%x for.