Posts

Showing posts from February, 2015

Runnig batch or vb scripts in SCCM 2012

Image
Create package using same steps as ‘software distribution’   Command line : cscript "filename.vbs" During deployment , select ‘run program from 'distribution point’   

PowerShell - Managing Remote sessions

Image
Enabling PowerShell Remoting On the computer we want to access remotely and execute PowerShell command remotely, we need to run following command: Enable-PSRemoting -Force   This command starts the WinRM service, sets it to start automatically with your system, and creates a firewall rule that allows incoming connections. The -Force part of the command tells PowerShell to perform these actions without prompting you for each step.   Executing PowerShell script  Invoke-command –filepath “path” – computername “computername” For E.g. invoke-command -filepath C:\Bin\ADScripts\PKI\retrieveExpiringCertificates.ps1 -computername HQCAS02 Reference: http://www.tomsitpro.com/articles/powershell-remote-management,2-781.html http://www.howtogeek.com/117192/how-to-run-powershell-commands-on-remote-computers/