I've installed PowerShell Version 1.0 on my Windows 2003 server. How do I run a PowerShell script during logon or logoff event? I tried this through
Local Computer policy>User Configuration>Windows Settings>Logon/Logoff Scripts
But it doesn't seem to work.
You need to call the
powershell
binary directly with the scriptname. The example below assumes the .PS1 file is stored within directory assigned to the GPO. You will need to change the variables to match your environment.Workaround could be to create a batch script that will execute the Powershell script, then set that in the policy.
(but jscott's answer is better)