How run Powershell at the first PC start or before the OS boot
I would like to start a powershell script1 (change the name of the PC):
1) before windows 10 boot ( preferable) or
2) at the first run (just once)
I prefer the first option but I couldn't find a way to do it.
About the second option I have tried using a bach file with the commands below in startup folder:
I located it in start
to execute the powershell file at the first start but it didn't work. If I run manually the powershell file works fine.
Thanks
1) before windows 10 boot ( preferable) or
2) at the first run (just once)
I prefer the first option but I couldn't find a way to do it.
About the second option I have tried using a bach file with the commands below in startup folder:
PowerShell -Command "Set-ExecutionPolicy Unrestricted" >> "%TEMP%\StartupLog.txt" 2>&1
PowerShell C:\Users\<user_name>\Desktop\script.ps1 >> "%TEMP%\StartupLog.txt" 2>&1
C:\Users\admin\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
Thanks
1 Comment
[ + ] Show comment
Answers (0)
Please log in to answer
Be the first to answer this question
powershell.exe -ExecutionPolicy Bypass -File PATH_TO_POWERSHELL.ps1 -WindowStyle Hidden -NoProfile - rrosal 6 years ago