a.) You don't need do bother with PS x86 or x64, simply follow the instruction, you only have to use the command in task creation no need to create any script file or execute with PowerShell x86 or x64 directly, it will use the PowerShell executable located
in the directory specified by the command listed in the corresponding post
b.) (Get-WmiObject -Namespace root/WMI -Class WmiMonitorBrightnessMethods).WmiSetBrightness(1,75)
The second parameter of WmiSetBrightness specifies the percent value
Ok, got it.
So in Task Scheduler the command would be:
(Get-WmiObject -Namespace root/WMI -Class WmiMonitorBrightnessMethods).WmiSetBrightness(1,75)
OR:
C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe "(Get-WmiObject -Namespace root/WMI -Class WmiMonitorBrightnessMethods).WmiSetBrightness(1,75)"
Also since the other user suggested to create a scheduled task with the option: Select "Run whether user is logged on or not" I'm pretty much sure that Windows will ask for a password, I do not use a password with this pc, local account, no password, so
what password should I enter??
Thank you for your time.