Skip to content

Commit

Permalink
Create setup_win.bat
Browse files Browse the repository at this point in the history
  • Loading branch information
24rr authored Dec 15, 2022
1 parent 644be65 commit 3aa6d1f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions deploy/auto-setup/setup_win.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
@echo off

rem Create a new group for PowerDNS-Admin
net localgroup powerdnsadmin /add

rem Create a user for PowerDNS-Admin
net user powerdnsadmin /add /passwordchg:no /homedir:nul /active:yes /expires:never /passwordreq:no /s

rem Make the new user and group the owners of the PowerDNS-Admin files
icacls "C:\path\to\powerdns-admin" /setowner "powerdnsadmin"

rem Start the PowerDNS-Admin service
net start powerdns-admin

rem Enable the PowerDNS-Admin service to start automatically at boot
sc config powerdns-admin start= auto

0 comments on commit 3aa6d1f

Please sign in to comment.