You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@brooklyn.apache.org by bostko <gi...@git.apache.org> on 2016/06/27 14:13:46 UTC

[GitHub] brooklyn-server pull request #157: Windows helper script for using Invoke-Co...

Github user bostko commented on a diff in the pull request:

    https://github.com/apache/brooklyn-server/pull/157#discussion_r68583039
  
    --- Diff: software/base/src/main/resources/org/apache/brooklyn/software/winrm/utils/invoke-command-credssp.ps1 ---
    @@ -0,0 +1,112 @@
    +[#ftl]
    +#!ps1
    +#
    +# Licensed to the Apache Software Foundation (ASF) under one
    +# or more contributor license agreements.  See the NOTICE file
    +# distributed with this work for additional information
    +# regarding copyright ownership.  The ASF licenses this file
    +# to you under the Apache License, Version 2.0 (the
    +# "License"); you may not use this file except in compliance
    +# with the License.  You may obtain a copy of the License at
    +#
    +#  http://www.apache.org/licenses/LICENSE-2.0
    +#
    +# Unless required by applicable law or agreed to in writing,
    +# software distributed under the License is distributed on an
    +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    +# KIND, either express or implied.  See the License for the
    +# specific language governing permissions and limitations
    +# under the License.
    +#
    +Param([Parameter(Mandatory=$True)][String]$Command, [String[]] $ArgumentList, [switch] $LogOutputInFile, $ScriptBlockInCredSSP)
    +<#
    +.SYNOPSIS
    +Helper Script which executes commands through Invoke-Command -Authentication CredSSP
    +
    +.DESCRIPTION
    +By default, PowerShell sessions do not
    +use credSSP and therefore cannot bake a "second hop" to use other remote resources that
    +require their authentication token.
    +Microsoft: "CAUTION: Credential Security Support Provider (CredSSP) authentication, in which the user's credentials are passed to a remote computer to be authenticated, is designed for commands that require authentication on more than one resource, such as accessing a remote network share. This mechanism increases the security risk of the remote operation."
    +Passing parameters in powershell: https://technet.microsoft.com/en-us/magazine/jj554301.aspx
    +
    +.NOTES
    +The script may not work properly on a machine which has installed Active Directory.
    --- End diff --
    
    Indeed invoke-command doesn't work after Active Directory is installed.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastructure@apache.org or file a JIRA ticket
with INFRA.
---