Hi,
I am running the below script through .bat file. During the execution, it is prompting for the password and after entering the password it is asking do you want replace the existing file . Password is always same and for the next question answer is always
"Y". So I want to include in this batch file it self as both the values are same and this will avoid manual entry .Is there a way to do it ? I am ok this to achieve either through .bat file or through Powershell. Please suggest.
@echo off
gpg --output Test.rpm --sign Test.rpm
Thanks