Running a PS script in batch file, disable UAC?

Hi,
I am trying to run the following command from a batch file:
PowerShell -NoProfile -ExecutionPolicy Bypass -Command “& {Start-Process PowerShell -ArgumentList ‘-NoProfile -windowstyle hidden -ExecutionPolicy Bypass -File script.ps1’ -Verb RunAs}”;
This will be run during an automated server deployment. When I run it manually I get the UAC prompt. Obviously the UAC is not something I want to turn off, unless it’s part of the batch file and I can turn it back on. Can someone help me with this?
Thanks!

So, there’s not a way to stop UAC from doing what it does, short of turning it off. Because you’re trying to run a process that triggers UAC, I’m not sure you could turn it off as PART of that process. But on a server, would you normally have UAC enabled?