I'm looking for a powershell commandlet that changes the setting on "Make Start full screen" Anyone know of one?
Asked
Active
Viewed 1,044 times
-1
-
it's very unclear what you're asking. what should go fullscreen? the PowerShell Window? if so check http://stackoverflow.com/questions/5197278/how-to-go-fullscreen-in-powershell – SimonS Feb 16 '16 at 14:24
2 Answers
1
Your best bet is to reference this: https://technet.microsoft.com/en-us/library/mt431718(v=vs.85).aspx
and tailor it to your specific needs. It looks to be that since Windows 8/8.1 the Start Screen/Menu is configured in an XML format. That Technet article will explain how to export the layout, make the changes and then import it so that the changes are applied.

Michael Holder
- 7
- 4
1
If you just want to start powershell in full screen. Add the -WindowStyle maximized to your exe call. This is how I start it:
- "C:\Program Files\PowerShell\7\pwsh.exe" -WorkingDirectory ~ -WindowStyle maximized
- %SystemRoot%\system32\WindowsPowerShell\v1.0\powershell.exe -WindowStyle maximized

Petr Sapák
- 11
- 1