[Tex/LaTex] Remove page number from Appendix section header

appendices

I am generating an appendix in my report using the command

\documentclass[12pt]{report}
\begin{document}
\begin{appendices}
\include{appendix1}
\end{appendices}
\end{document}

This command itself is generating a section header page as shown in image. This page contains a page number. I don't want a page number on this section header page and rest pages should have page number as it ease. How to do this
enter image description here

Best Answer

Here's a solution with xpatch:

\documentclass[12pt]{report}

\usepackage[page]{appendix}
\usepackage{lipsum}
\usepackage{xpatch}

\makeatletter
\xpatchcmd{\@chap@pppage}{%
\thispagestyle{plain}}{%
\thispagestyle{empty}}{}{}
\makeatother

\begin{document}

\begin{appendices}
\chapter{}
\lipsum[1]
\end{appendices}

\end{document}