PoshCode Archive  Artifact [2ee46cc204]

Artifact 2ee46cc204436a24f09ba3d521e3e32b1529aeee51fbf46e91550f2dcb8973c2:

  • File Write-SessionLockdown.ps1 — part of check-in [6ad008911f] at 2018-06-10 13:39:25 on branch trunk — This file was uploaded by a PowerGUI Script Editor Add-on. (user: Anonymous size: 1946)

# encoding: ascii
# api: powershell
# title: Write-SessionLockdown.ps
# description: This file was uploaded by a PowerGUI Script Editor Add-on.
# version: 0.1
# type: function
# author: Anonymous
# license: CC0
# function: Write-SessionLockdown
# x-poshcode-id: 4312
# x-archived: 2013-07-25T10:49:35
# x-published: 2013-07-19T09:54:00
#
#
function Write-SessionLockdown
{
    
	<#
    .Synopsis
        Writes a script to lock down a session to a list of required commands
    .Description
        Writes a script to lock down a session to a list of required commands.  
        This script can be at the end of a constrained runspace definiton
    .Example
        Write-SessionLockdown -RequiredCommands 'Write-Host'
    #>
	
    param(
    # One or more required commands
    [Parameter(Mandatory=$true,Position=0,ValueFromPipelineByPropertyName=$true)]
    [string[]]
    $RequiredCommands
    )
    
    process {
$ofs = "','"
"`$requiredCommands = '$requiredCommands'
" + @'
$ExecutionContext.SessionState.Scripts.Clear()
$ExecutionContext.SessionState.Applications.Clear()
$commandsToProxyNames = @([Management.Automation.CommandMetaData]::GetRestrictedCommands("RemoteServer").Keys)
$requiredCommands += $commandsToProxyNames 
    
Get-Command |
    ForEach-Object {
        $cmd = $_
        if ($requiredCommands -notcontains $cmd.Name) {
            $Cmd.Visibility = 'Private'
        }
        if ($commandsToProxyNames -contains $cmd.Name) {
            $cmdMd = [Management.Automation.CommandMetaData]::GetRestrictedCommands("RemoteServer")[$cmd.Name]
            $proxy = [Management.Automation.ProxyCommand]::Create($cmdMd)
            . ([ScriptBLock]::Create(
"function $($cmd.Name) {
    $proxy
}
"            
))
            $cmd.Visibility = 'Private'
        }        
    }    

$ExecutionContext.SessionState.LanguageMode = 'NoLanguage'
'@
    
    }
}