Run PowerShell Scripts through Deployment Server

Run PowerShell Scripts through Deployment Server

PowerShell is the new powerful scripting language created by Microsoft. You can install it to Windows XP and above and it is included in Windows Server 2008.

Here is how to run a PowerShell Script through Deployment Server.

  1. Create a new job.
  2. Add a Copy File task
    • The source path points to MyScript.ps1 on the Deployment Server.
    • The destination path is .\MyScript.ps1
  3. Add a Run Script task as the following:
    powershell -command "& { .\MyScript.ps1; exit $lastexitcode }"
    set ret=%errorlevel%
    del .\MyScript.ps1
    exit %ret%
    
    
3.913045
Average: 3.9 (46 votes)

Powershell standard in Windows 2008

Powershell is not standard in Windows 2008 core server. Remember that if you wish to use it you need to install it yourself.

Regards
Erik
www.dvs4sbc.nl

Syndicate content