Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 80C94200B26 for ; Mon, 27 Jun 2016 16:13:49 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 7F666160A5B; Mon, 27 Jun 2016 14:13:49 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id CA5D1160A54 for ; Mon, 27 Jun 2016 16:13:48 +0200 (CEST) Received: (qmail 14132 invoked by uid 500); 27 Jun 2016 14:13:47 -0000 Mailing-List: contact dev-help@brooklyn.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@brooklyn.apache.org Delivered-To: mailing list dev@brooklyn.apache.org Received: (qmail 14114 invoked by uid 99); 27 Jun 2016 14:13:47 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Jun 2016 14:13:47 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id CE815DFDC3; Mon, 27 Jun 2016 14:13:46 +0000 (UTC) From: bostko To: dev@brooklyn.apache.org Reply-To: dev@brooklyn.apache.org References: In-Reply-To: Subject: [GitHub] brooklyn-server pull request #157: Windows helper script for using Invoke-Co... Content-Type: text/plain Message-Id: <20160627141346.CE815DFDC3@git1-us-west.apache.org> Date: Mon, 27 Jun 2016 14:13:46 +0000 (UTC) archived-at: Mon, 27 Jun 2016 14:13:49 -0000 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. ---