Invoke-Command access to share for is not working for 1 machines out of 5
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
Honestly i don't even know where to start with this. I'm a little baffled and i think the issue has to do with the client machine, but i'm not sure what.
I am also NOT a powershell master in the least. Here's the deal.
Original goal:
Run invoke-command from Machine A to Machine B with specific credentials. The command running is a powershell command on Machine B that refers to file that lives on a share in Machine A.
note: I have this similarly working on Win 10 to Win 10 and Win 10 to 2019core. The issue shows up on a Win 10 to 2016 (Desktop experience), the file that is being referred lives on the win 10 machine.
I have attempted to use the raw command directly to the remote machine as well as copy a script to machine B to run locally.
worth noting: If, on Machine B you can run the above noted script and point the the same share on Machine A, all it works no problem.
$Username_srv = '.Administrator'
$Password_srv = '********'
$pass_srv = ConvertTo-SecureString -AsPlainText $Password_srv -Force
$Cred_srv = New-Object System.Management.Automation.PSCredential -ArgumentList $Username_srv, $pass_srv
Invoke-Command -ComputerName <MachineB> -Credential $Cred_srv -ScriptBlock{
powershell.exe C:HCK_execution.ps1 -PDEF "\<MACHINEA>PDEF_XMLCsDeviceControlDC_Win10_Pro_x64_PDEF_SINGLE_TEST.xml"
}
I have:
- Enabled Winrm and ensured trustedhosts was * (catchall)
- Added the user to the share host machine
- Changed permissions on the directories and added users and admin group
ERROR:
PDEF Locaiton: \<MachineA>PDEF_XMLCsDeviceControlDC_Win10_Pro_x64_PDEF_SINGLE_TEST.xml
Logging directory: C:UsersAdministratorDocumentsHCK Execution Engine2019-01-03T07-50-14-49
Information: Program: HCK Execution engine launched.
Information: Action:
Using project definition file: \<MachineA>PDEF_XMLCsDeviceControlDC_Win10_Pro_x64_PDEF_SINGLE_TEST.xml
Information: Parse:
Parse project definition file.
Load project definition file: \<MachineA>PDEF_XMLCsDeviceControlDC_Win10_Pro_x64_PDEF_SINGLE_TEST.xml
Error: Program: System.UnauthorizedAccessException: Access to the path '\<MachineA>PDEF_XMLCsDeviceControlDC_Win10_Pro_x64_PDEF_SINGLE_TEST.xml' is denied.
at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boo
lean checkHost)
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize)
at System.Xml.XmlDownloadManager.GetStream(Uri uri, ICredentials credentials, IWebProxy proxy, RequestCachePolicy cachePolicy)
at System.Xml.XmlUrlResolver.GetEntity(Uri absoluteUri, String role, Type ofObjectToReturn)
at System.Xml.XmlTextReaderImpl.OpenUrlDelegate(Object xmlResolver)
at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData)
at System.Threading.CompressedStack.Run(CompressedStack compressedStack, ContextCallback callback, Object state)
at System.Xml.XmlTextReaderImpl.OpenUrl()
at System.Xml.XmlTextReaderImpl.Read()
at System.Xml.XmlLoader.Load(XmlDocument doc, XmlReader reader, Boolean preserveWhitespace)
at System.Xml.XmlDocument.Load(XmlReader reader)
at System.Xml.XmlDocument.Load(String filename)
at Microsoft.Windows.Kits.Hardware.Certification.ProjectClient.LoadDefinitionFile(String projectDefinitionFile)
at Microsoft.Windows.Kits.Hardware.Certification.Parse.Execute()
at Microsoft.Windows.Kits.Hardware.Certification.Program.Main(String args)
Information: Program: HCK Execution engine completed.
Log saved to: C:UsersAdministratorDocumentsHCK Execution Engine2019-01-03T07-50-14-49hckexecutionengine.log
I really thought since I know copying the ps1 file over and running locally a call to the machine all works, that that would get me where i needed to go.
I know that double-hops aren't allowed in invoke-commands, but since this has been working on multiple other machines i figured as long as the machine can access the share there would be no need for a double hop in authentication.
This issue feels specific to the server machine and a config, i just can't figure it out.
Any help would be great. Honestly i'm not sure what's helpful to provide seeing as i'm not doing anything really fancy here, and i have this working on other machines with another share.
RUNNING DIRECT ON THE MACHINE, USING DEFAULTS
PS C:> .HCK_execution.ps1
PDEF Locaiton: \<MachineA>PDEF_XMLCsDeviceControlDC_Win10_Pro_x64_PDEF_SINGLE_TEST.xml
Logging directory: C:UsersAdministratorDocumentsHCK Execution Engine2019-01-03T08-13-26-03
Information: Program: HCK Execution engine launched.
Information: Action:
Using project definition file: \<MachineA>PDEF_XMLCsDeviceControlDC_Win10_Pro_x64_PDEF_SINGLE_TEST.xml
Thanks for your time and any advice.
Ren
powershell-v3.0
add a comment |
Honestly i don't even know where to start with this. I'm a little baffled and i think the issue has to do with the client machine, but i'm not sure what.
I am also NOT a powershell master in the least. Here's the deal.
Original goal:
Run invoke-command from Machine A to Machine B with specific credentials. The command running is a powershell command on Machine B that refers to file that lives on a share in Machine A.
note: I have this similarly working on Win 10 to Win 10 and Win 10 to 2019core. The issue shows up on a Win 10 to 2016 (Desktop experience), the file that is being referred lives on the win 10 machine.
I have attempted to use the raw command directly to the remote machine as well as copy a script to machine B to run locally.
worth noting: If, on Machine B you can run the above noted script and point the the same share on Machine A, all it works no problem.
$Username_srv = '.Administrator'
$Password_srv = '********'
$pass_srv = ConvertTo-SecureString -AsPlainText $Password_srv -Force
$Cred_srv = New-Object System.Management.Automation.PSCredential -ArgumentList $Username_srv, $pass_srv
Invoke-Command -ComputerName <MachineB> -Credential $Cred_srv -ScriptBlock{
powershell.exe C:HCK_execution.ps1 -PDEF "\<MACHINEA>PDEF_XMLCsDeviceControlDC_Win10_Pro_x64_PDEF_SINGLE_TEST.xml"
}
I have:
- Enabled Winrm and ensured trustedhosts was * (catchall)
- Added the user to the share host machine
- Changed permissions on the directories and added users and admin group
ERROR:
PDEF Locaiton: \<MachineA>PDEF_XMLCsDeviceControlDC_Win10_Pro_x64_PDEF_SINGLE_TEST.xml
Logging directory: C:UsersAdministratorDocumentsHCK Execution Engine2019-01-03T07-50-14-49
Information: Program: HCK Execution engine launched.
Information: Action:
Using project definition file: \<MachineA>PDEF_XMLCsDeviceControlDC_Win10_Pro_x64_PDEF_SINGLE_TEST.xml
Information: Parse:
Parse project definition file.
Load project definition file: \<MachineA>PDEF_XMLCsDeviceControlDC_Win10_Pro_x64_PDEF_SINGLE_TEST.xml
Error: Program: System.UnauthorizedAccessException: Access to the path '\<MachineA>PDEF_XMLCsDeviceControlDC_Win10_Pro_x64_PDEF_SINGLE_TEST.xml' is denied.
at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boo
lean checkHost)
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize)
at System.Xml.XmlDownloadManager.GetStream(Uri uri, ICredentials credentials, IWebProxy proxy, RequestCachePolicy cachePolicy)
at System.Xml.XmlUrlResolver.GetEntity(Uri absoluteUri, String role, Type ofObjectToReturn)
at System.Xml.XmlTextReaderImpl.OpenUrlDelegate(Object xmlResolver)
at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData)
at System.Threading.CompressedStack.Run(CompressedStack compressedStack, ContextCallback callback, Object state)
at System.Xml.XmlTextReaderImpl.OpenUrl()
at System.Xml.XmlTextReaderImpl.Read()
at System.Xml.XmlLoader.Load(XmlDocument doc, XmlReader reader, Boolean preserveWhitespace)
at System.Xml.XmlDocument.Load(XmlReader reader)
at System.Xml.XmlDocument.Load(String filename)
at Microsoft.Windows.Kits.Hardware.Certification.ProjectClient.LoadDefinitionFile(String projectDefinitionFile)
at Microsoft.Windows.Kits.Hardware.Certification.Parse.Execute()
at Microsoft.Windows.Kits.Hardware.Certification.Program.Main(String args)
Information: Program: HCK Execution engine completed.
Log saved to: C:UsersAdministratorDocumentsHCK Execution Engine2019-01-03T07-50-14-49hckexecutionengine.log
I really thought since I know copying the ps1 file over and running locally a call to the machine all works, that that would get me where i needed to go.
I know that double-hops aren't allowed in invoke-commands, but since this has been working on multiple other machines i figured as long as the machine can access the share there would be no need for a double hop in authentication.
This issue feels specific to the server machine and a config, i just can't figure it out.
Any help would be great. Honestly i'm not sure what's helpful to provide seeing as i'm not doing anything really fancy here, and i have this working on other machines with another share.
RUNNING DIRECT ON THE MACHINE, USING DEFAULTS
PS C:> .HCK_execution.ps1
PDEF Locaiton: \<MachineA>PDEF_XMLCsDeviceControlDC_Win10_Pro_x64_PDEF_SINGLE_TEST.xml
Logging directory: C:UsersAdministratorDocumentsHCK Execution Engine2019-01-03T08-13-26-03
Information: Program: HCK Execution engine launched.
Information: Action:
Using project definition file: \<MachineA>PDEF_XMLCsDeviceControlDC_Win10_Pro_x64_PDEF_SINGLE_TEST.xml
Thanks for your time and any advice.
Ren
powershell-v3.0
add a comment |
Honestly i don't even know where to start with this. I'm a little baffled and i think the issue has to do with the client machine, but i'm not sure what.
I am also NOT a powershell master in the least. Here's the deal.
Original goal:
Run invoke-command from Machine A to Machine B with specific credentials. The command running is a powershell command on Machine B that refers to file that lives on a share in Machine A.
note: I have this similarly working on Win 10 to Win 10 and Win 10 to 2019core. The issue shows up on a Win 10 to 2016 (Desktop experience), the file that is being referred lives on the win 10 machine.
I have attempted to use the raw command directly to the remote machine as well as copy a script to machine B to run locally.
worth noting: If, on Machine B you can run the above noted script and point the the same share on Machine A, all it works no problem.
$Username_srv = '.Administrator'
$Password_srv = '********'
$pass_srv = ConvertTo-SecureString -AsPlainText $Password_srv -Force
$Cred_srv = New-Object System.Management.Automation.PSCredential -ArgumentList $Username_srv, $pass_srv
Invoke-Command -ComputerName <MachineB> -Credential $Cred_srv -ScriptBlock{
powershell.exe C:HCK_execution.ps1 -PDEF "\<MACHINEA>PDEF_XMLCsDeviceControlDC_Win10_Pro_x64_PDEF_SINGLE_TEST.xml"
}
I have:
- Enabled Winrm and ensured trustedhosts was * (catchall)
- Added the user to the share host machine
- Changed permissions on the directories and added users and admin group
ERROR:
PDEF Locaiton: \<MachineA>PDEF_XMLCsDeviceControlDC_Win10_Pro_x64_PDEF_SINGLE_TEST.xml
Logging directory: C:UsersAdministratorDocumentsHCK Execution Engine2019-01-03T07-50-14-49
Information: Program: HCK Execution engine launched.
Information: Action:
Using project definition file: \<MachineA>PDEF_XMLCsDeviceControlDC_Win10_Pro_x64_PDEF_SINGLE_TEST.xml
Information: Parse:
Parse project definition file.
Load project definition file: \<MachineA>PDEF_XMLCsDeviceControlDC_Win10_Pro_x64_PDEF_SINGLE_TEST.xml
Error: Program: System.UnauthorizedAccessException: Access to the path '\<MachineA>PDEF_XMLCsDeviceControlDC_Win10_Pro_x64_PDEF_SINGLE_TEST.xml' is denied.
at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boo
lean checkHost)
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize)
at System.Xml.XmlDownloadManager.GetStream(Uri uri, ICredentials credentials, IWebProxy proxy, RequestCachePolicy cachePolicy)
at System.Xml.XmlUrlResolver.GetEntity(Uri absoluteUri, String role, Type ofObjectToReturn)
at System.Xml.XmlTextReaderImpl.OpenUrlDelegate(Object xmlResolver)
at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData)
at System.Threading.CompressedStack.Run(CompressedStack compressedStack, ContextCallback callback, Object state)
at System.Xml.XmlTextReaderImpl.OpenUrl()
at System.Xml.XmlTextReaderImpl.Read()
at System.Xml.XmlLoader.Load(XmlDocument doc, XmlReader reader, Boolean preserveWhitespace)
at System.Xml.XmlDocument.Load(XmlReader reader)
at System.Xml.XmlDocument.Load(String filename)
at Microsoft.Windows.Kits.Hardware.Certification.ProjectClient.LoadDefinitionFile(String projectDefinitionFile)
at Microsoft.Windows.Kits.Hardware.Certification.Parse.Execute()
at Microsoft.Windows.Kits.Hardware.Certification.Program.Main(String args)
Information: Program: HCK Execution engine completed.
Log saved to: C:UsersAdministratorDocumentsHCK Execution Engine2019-01-03T07-50-14-49hckexecutionengine.log
I really thought since I know copying the ps1 file over and running locally a call to the machine all works, that that would get me where i needed to go.
I know that double-hops aren't allowed in invoke-commands, but since this has been working on multiple other machines i figured as long as the machine can access the share there would be no need for a double hop in authentication.
This issue feels specific to the server machine and a config, i just can't figure it out.
Any help would be great. Honestly i'm not sure what's helpful to provide seeing as i'm not doing anything really fancy here, and i have this working on other machines with another share.
RUNNING DIRECT ON THE MACHINE, USING DEFAULTS
PS C:> .HCK_execution.ps1
PDEF Locaiton: \<MachineA>PDEF_XMLCsDeviceControlDC_Win10_Pro_x64_PDEF_SINGLE_TEST.xml
Logging directory: C:UsersAdministratorDocumentsHCK Execution Engine2019-01-03T08-13-26-03
Information: Program: HCK Execution engine launched.
Information: Action:
Using project definition file: \<MachineA>PDEF_XMLCsDeviceControlDC_Win10_Pro_x64_PDEF_SINGLE_TEST.xml
Thanks for your time and any advice.
Ren
powershell-v3.0
Honestly i don't even know where to start with this. I'm a little baffled and i think the issue has to do with the client machine, but i'm not sure what.
I am also NOT a powershell master in the least. Here's the deal.
Original goal:
Run invoke-command from Machine A to Machine B with specific credentials. The command running is a powershell command on Machine B that refers to file that lives on a share in Machine A.
note: I have this similarly working on Win 10 to Win 10 and Win 10 to 2019core. The issue shows up on a Win 10 to 2016 (Desktop experience), the file that is being referred lives on the win 10 machine.
I have attempted to use the raw command directly to the remote machine as well as copy a script to machine B to run locally.
worth noting: If, on Machine B you can run the above noted script and point the the same share on Machine A, all it works no problem.
$Username_srv = '.Administrator'
$Password_srv = '********'
$pass_srv = ConvertTo-SecureString -AsPlainText $Password_srv -Force
$Cred_srv = New-Object System.Management.Automation.PSCredential -ArgumentList $Username_srv, $pass_srv
Invoke-Command -ComputerName <MachineB> -Credential $Cred_srv -ScriptBlock{
powershell.exe C:HCK_execution.ps1 -PDEF "\<MACHINEA>PDEF_XMLCsDeviceControlDC_Win10_Pro_x64_PDEF_SINGLE_TEST.xml"
}
I have:
- Enabled Winrm and ensured trustedhosts was * (catchall)
- Added the user to the share host machine
- Changed permissions on the directories and added users and admin group
ERROR:
PDEF Locaiton: \<MachineA>PDEF_XMLCsDeviceControlDC_Win10_Pro_x64_PDEF_SINGLE_TEST.xml
Logging directory: C:UsersAdministratorDocumentsHCK Execution Engine2019-01-03T07-50-14-49
Information: Program: HCK Execution engine launched.
Information: Action:
Using project definition file: \<MachineA>PDEF_XMLCsDeviceControlDC_Win10_Pro_x64_PDEF_SINGLE_TEST.xml
Information: Parse:
Parse project definition file.
Load project definition file: \<MachineA>PDEF_XMLCsDeviceControlDC_Win10_Pro_x64_PDEF_SINGLE_TEST.xml
Error: Program: System.UnauthorizedAccessException: Access to the path '\<MachineA>PDEF_XMLCsDeviceControlDC_Win10_Pro_x64_PDEF_SINGLE_TEST.xml' is denied.
at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boo
lean checkHost)
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize)
at System.Xml.XmlDownloadManager.GetStream(Uri uri, ICredentials credentials, IWebProxy proxy, RequestCachePolicy cachePolicy)
at System.Xml.XmlUrlResolver.GetEntity(Uri absoluteUri, String role, Type ofObjectToReturn)
at System.Xml.XmlTextReaderImpl.OpenUrlDelegate(Object xmlResolver)
at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData)
at System.Threading.CompressedStack.Run(CompressedStack compressedStack, ContextCallback callback, Object state)
at System.Xml.XmlTextReaderImpl.OpenUrl()
at System.Xml.XmlTextReaderImpl.Read()
at System.Xml.XmlLoader.Load(XmlDocument doc, XmlReader reader, Boolean preserveWhitespace)
at System.Xml.XmlDocument.Load(XmlReader reader)
at System.Xml.XmlDocument.Load(String filename)
at Microsoft.Windows.Kits.Hardware.Certification.ProjectClient.LoadDefinitionFile(String projectDefinitionFile)
at Microsoft.Windows.Kits.Hardware.Certification.Parse.Execute()
at Microsoft.Windows.Kits.Hardware.Certification.Program.Main(String args)
Information: Program: HCK Execution engine completed.
Log saved to: C:UsersAdministratorDocumentsHCK Execution Engine2019-01-03T07-50-14-49hckexecutionengine.log
I really thought since I know copying the ps1 file over and running locally a call to the machine all works, that that would get me where i needed to go.
I know that double-hops aren't allowed in invoke-commands, but since this has been working on multiple other machines i figured as long as the machine can access the share there would be no need for a double hop in authentication.
This issue feels specific to the server machine and a config, i just can't figure it out.
Any help would be great. Honestly i'm not sure what's helpful to provide seeing as i'm not doing anything really fancy here, and i have this working on other machines with another share.
RUNNING DIRECT ON THE MACHINE, USING DEFAULTS
PS C:> .HCK_execution.ps1
PDEF Locaiton: \<MachineA>PDEF_XMLCsDeviceControlDC_Win10_Pro_x64_PDEF_SINGLE_TEST.xml
Logging directory: C:UsersAdministratorDocumentsHCK Execution Engine2019-01-03T08-13-26-03
Information: Program: HCK Execution engine launched.
Information: Action:
Using project definition file: \<MachineA>PDEF_XMLCsDeviceControlDC_Win10_Pro_x64_PDEF_SINGLE_TEST.xml
Thanks for your time and any advice.
Ren
powershell-v3.0
powershell-v3.0
edited Jan 3 at 16:16
RenMG
asked Jan 3 at 15:56


RenMGRenMG
3619
3619
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I ended up circumventing the process by hosting the files on the remote machine. CredSSP wasn't working and it seemed like it issue lived in double hop and the fact that the share lives on the machine invoking the command. I was tired of trying to make it work.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54025720%2finvoke-command-access-to-share-for-is-not-working-for-1-machines-out-of-5%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I ended up circumventing the process by hosting the files on the remote machine. CredSSP wasn't working and it seemed like it issue lived in double hop and the fact that the share lives on the machine invoking the command. I was tired of trying to make it work.
add a comment |
I ended up circumventing the process by hosting the files on the remote machine. CredSSP wasn't working and it seemed like it issue lived in double hop and the fact that the share lives on the machine invoking the command. I was tired of trying to make it work.
add a comment |
I ended up circumventing the process by hosting the files on the remote machine. CredSSP wasn't working and it seemed like it issue lived in double hop and the fact that the share lives on the machine invoking the command. I was tired of trying to make it work.
I ended up circumventing the process by hosting the files on the remote machine. CredSSP wasn't working and it seemed like it issue lived in double hop and the fact that the share lives on the machine invoking the command. I was tired of trying to make it work.
answered Jan 11 at 15:59


RenMGRenMG
3619
3619
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54025720%2finvoke-command-access-to-share-for-is-not-working-for-1-machines-out-of-5%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown