Scripting Blog

A place to learn about PowerShell and share stories of automation

PowerTip: Restore Default PSSession Endpoints

Summary: Learn how to restore default PSSession endpoints.  How do I restore my default PSSession endpoints if I accidently unregistered them?  Use Enable-PSRemoting to automatically rebuild the remote endpoints on your system: Get-PSSessionConfiguration Enable-PSRemoting –Force #Now try it again Get-...

Use Delegated Administration and Proxy Functions

Summary: Boe Prox shows how to create a secure PSSession endpoint by using delegated administration and a proxy function.  Hey, Scripting Guy! There are some great things that I can do with a constrained Windows PowerShell endpoint. But I want to allow a user (who may not have the necessary rights) to run a query on a remote system. Is ...