Get-WmiObject returns with Access Denied error












0















I am trying to edit a registry value on a remote VM running Windows 7.
I am using the following code to edit it:



$password = "<password>" | ConvertTo-SecureString -asPlainText -Force
$username = "<username>"
$credential = New-Object System.Management.Automation.PSCredential($username,$password)

$hklm = 2147483650
$path = "SOFTWAREcratler"
$key = "HostAddress"

$wmi = Get-WmiObject -List "StdRegProv" -Namespace rootdefault -ComputerName <IPAddress> -Credential $credential
if($wmi)
{
$value = ($wmi.GetStringValue($hklm,$path,$key)).svalue
Write-Host "Registry Value: $value"
}
else
{
Write-Host "Failed to get registry value"
}


The registry key path and credential are all correct but still I am getting the following error message:



Get-WmiObject : Could not get objects from namespace rootdefault. Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))
At D:workspacescriptsUpdate.ps1:29 char:8
+ $wmi = Get-WmiObject -List "StdRegProv" -Namespace rootdefault -Comp ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (:) [Get-WmiObject], UnauthorizedAccessException
+ FullyQualifiedErrorId : INVALID_NAMESPACE_IDENTIFIER,Microsoft.PowerShell.Commands.GetWmiObjectCommand









share|improve this question




















  • 1





    The error is pretty straight forward. Why do you think you have access? Can you open other RPC connections to the remote computer?

    – vrdse
    Nov 27 '18 at 19:29











  • @vrdse I am pretty new to powershell. Can you provide a reference as to how to check my accessibility to the remote machine(which you said by using other RPC) ?

    – Monku
    Nov 27 '18 at 21:01











  • @Monku - try Test-Connection for simple connectivity. then use Test-WSMan to test for using windows remote management. those are the usual culprits. [grin]

    – Lee_Dailey
    Nov 27 '18 at 21:20











  • @Lee_Dailey I ran the command Test-Connection -Source <IpAddressOfMachineIAmOn> -ComputerName <IpAddressOfRemoteMachine> -Credential $credential It gives the error Test-Connection : User credentials cannot be used for local connections

    – Monku
    Nov 27 '18 at 21:34











  • @Lee_Dailey Get-WmiObject does not use WSMAN but RPC.

    – vrdse
    Nov 27 '18 at 21:45
















0















I am trying to edit a registry value on a remote VM running Windows 7.
I am using the following code to edit it:



$password = "<password>" | ConvertTo-SecureString -asPlainText -Force
$username = "<username>"
$credential = New-Object System.Management.Automation.PSCredential($username,$password)

$hklm = 2147483650
$path = "SOFTWAREcratler"
$key = "HostAddress"

$wmi = Get-WmiObject -List "StdRegProv" -Namespace rootdefault -ComputerName <IPAddress> -Credential $credential
if($wmi)
{
$value = ($wmi.GetStringValue($hklm,$path,$key)).svalue
Write-Host "Registry Value: $value"
}
else
{
Write-Host "Failed to get registry value"
}


The registry key path and credential are all correct but still I am getting the following error message:



Get-WmiObject : Could not get objects from namespace rootdefault. Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))
At D:workspacescriptsUpdate.ps1:29 char:8
+ $wmi = Get-WmiObject -List "StdRegProv" -Namespace rootdefault -Comp ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (:) [Get-WmiObject], UnauthorizedAccessException
+ FullyQualifiedErrorId : INVALID_NAMESPACE_IDENTIFIER,Microsoft.PowerShell.Commands.GetWmiObjectCommand









share|improve this question




















  • 1





    The error is pretty straight forward. Why do you think you have access? Can you open other RPC connections to the remote computer?

    – vrdse
    Nov 27 '18 at 19:29











  • @vrdse I am pretty new to powershell. Can you provide a reference as to how to check my accessibility to the remote machine(which you said by using other RPC) ?

    – Monku
    Nov 27 '18 at 21:01











  • @Monku - try Test-Connection for simple connectivity. then use Test-WSMan to test for using windows remote management. those are the usual culprits. [grin]

    – Lee_Dailey
    Nov 27 '18 at 21:20











  • @Lee_Dailey I ran the command Test-Connection -Source <IpAddressOfMachineIAmOn> -ComputerName <IpAddressOfRemoteMachine> -Credential $credential It gives the error Test-Connection : User credentials cannot be used for local connections

    – Monku
    Nov 27 '18 at 21:34











  • @Lee_Dailey Get-WmiObject does not use WSMAN but RPC.

    – vrdse
    Nov 27 '18 at 21:45














0












0








0








I am trying to edit a registry value on a remote VM running Windows 7.
I am using the following code to edit it:



$password = "<password>" | ConvertTo-SecureString -asPlainText -Force
$username = "<username>"
$credential = New-Object System.Management.Automation.PSCredential($username,$password)

$hklm = 2147483650
$path = "SOFTWAREcratler"
$key = "HostAddress"

$wmi = Get-WmiObject -List "StdRegProv" -Namespace rootdefault -ComputerName <IPAddress> -Credential $credential
if($wmi)
{
$value = ($wmi.GetStringValue($hklm,$path,$key)).svalue
Write-Host "Registry Value: $value"
}
else
{
Write-Host "Failed to get registry value"
}


The registry key path and credential are all correct but still I am getting the following error message:



Get-WmiObject : Could not get objects from namespace rootdefault. Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))
At D:workspacescriptsUpdate.ps1:29 char:8
+ $wmi = Get-WmiObject -List "StdRegProv" -Namespace rootdefault -Comp ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (:) [Get-WmiObject], UnauthorizedAccessException
+ FullyQualifiedErrorId : INVALID_NAMESPACE_IDENTIFIER,Microsoft.PowerShell.Commands.GetWmiObjectCommand









share|improve this question
















I am trying to edit a registry value on a remote VM running Windows 7.
I am using the following code to edit it:



$password = "<password>" | ConvertTo-SecureString -asPlainText -Force
$username = "<username>"
$credential = New-Object System.Management.Automation.PSCredential($username,$password)

$hklm = 2147483650
$path = "SOFTWAREcratler"
$key = "HostAddress"

$wmi = Get-WmiObject -List "StdRegProv" -Namespace rootdefault -ComputerName <IPAddress> -Credential $credential
if($wmi)
{
$value = ($wmi.GetStringValue($hklm,$path,$key)).svalue
Write-Host "Registry Value: $value"
}
else
{
Write-Host "Failed to get registry value"
}


The registry key path and credential are all correct but still I am getting the following error message:



Get-WmiObject : Could not get objects from namespace rootdefault. Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))
At D:workspacescriptsUpdate.ps1:29 char:8
+ $wmi = Get-WmiObject -List "StdRegProv" -Namespace rootdefault -Comp ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (:) [Get-WmiObject], UnauthorizedAccessException
+ FullyQualifiedErrorId : INVALID_NAMESPACE_IDENTIFIER,Microsoft.PowerShell.Commands.GetWmiObjectCommand






powershell






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 27 '18 at 18:38







Monku

















asked Nov 27 '18 at 18:31









MonkuMonku

74811224




74811224








  • 1





    The error is pretty straight forward. Why do you think you have access? Can you open other RPC connections to the remote computer?

    – vrdse
    Nov 27 '18 at 19:29











  • @vrdse I am pretty new to powershell. Can you provide a reference as to how to check my accessibility to the remote machine(which you said by using other RPC) ?

    – Monku
    Nov 27 '18 at 21:01











  • @Monku - try Test-Connection for simple connectivity. then use Test-WSMan to test for using windows remote management. those are the usual culprits. [grin]

    – Lee_Dailey
    Nov 27 '18 at 21:20











  • @Lee_Dailey I ran the command Test-Connection -Source <IpAddressOfMachineIAmOn> -ComputerName <IpAddressOfRemoteMachine> -Credential $credential It gives the error Test-Connection : User credentials cannot be used for local connections

    – Monku
    Nov 27 '18 at 21:34











  • @Lee_Dailey Get-WmiObject does not use WSMAN but RPC.

    – vrdse
    Nov 27 '18 at 21:45














  • 1





    The error is pretty straight forward. Why do you think you have access? Can you open other RPC connections to the remote computer?

    – vrdse
    Nov 27 '18 at 19:29











  • @vrdse I am pretty new to powershell. Can you provide a reference as to how to check my accessibility to the remote machine(which you said by using other RPC) ?

    – Monku
    Nov 27 '18 at 21:01











  • @Monku - try Test-Connection for simple connectivity. then use Test-WSMan to test for using windows remote management. those are the usual culprits. [grin]

    – Lee_Dailey
    Nov 27 '18 at 21:20











  • @Lee_Dailey I ran the command Test-Connection -Source <IpAddressOfMachineIAmOn> -ComputerName <IpAddressOfRemoteMachine> -Credential $credential It gives the error Test-Connection : User credentials cannot be used for local connections

    – Monku
    Nov 27 '18 at 21:34











  • @Lee_Dailey Get-WmiObject does not use WSMAN but RPC.

    – vrdse
    Nov 27 '18 at 21:45








1




1





The error is pretty straight forward. Why do you think you have access? Can you open other RPC connections to the remote computer?

– vrdse
Nov 27 '18 at 19:29





The error is pretty straight forward. Why do you think you have access? Can you open other RPC connections to the remote computer?

– vrdse
Nov 27 '18 at 19:29













@vrdse I am pretty new to powershell. Can you provide a reference as to how to check my accessibility to the remote machine(which you said by using other RPC) ?

– Monku
Nov 27 '18 at 21:01





@vrdse I am pretty new to powershell. Can you provide a reference as to how to check my accessibility to the remote machine(which you said by using other RPC) ?

– Monku
Nov 27 '18 at 21:01













@Monku - try Test-Connection for simple connectivity. then use Test-WSMan to test for using windows remote management. those are the usual culprits. [grin]

– Lee_Dailey
Nov 27 '18 at 21:20





@Monku - try Test-Connection for simple connectivity. then use Test-WSMan to test for using windows remote management. those are the usual culprits. [grin]

– Lee_Dailey
Nov 27 '18 at 21:20













@Lee_Dailey I ran the command Test-Connection -Source <IpAddressOfMachineIAmOn> -ComputerName <IpAddressOfRemoteMachine> -Credential $credential It gives the error Test-Connection : User credentials cannot be used for local connections

– Monku
Nov 27 '18 at 21:34





@Lee_Dailey I ran the command Test-Connection -Source <IpAddressOfMachineIAmOn> -ComputerName <IpAddressOfRemoteMachine> -Credential $credential It gives the error Test-Connection : User credentials cannot be used for local connections

– Monku
Nov 27 '18 at 21:34













@Lee_Dailey Get-WmiObject does not use WSMAN but RPC.

– vrdse
Nov 27 '18 at 21:45





@Lee_Dailey Get-WmiObject does not use WSMAN but RPC.

– vrdse
Nov 27 '18 at 21:45












0






active

oldest

votes











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
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53506034%2fget-wmiobject-returns-with-access-denied-error%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53506034%2fget-wmiobject-returns-with-access-denied-error%23new-answer', 'question_page');
}
);

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







Popular posts from this blog

Contact image not getting when fetch all contact list from iPhone by CNContact

Insert data from modal to MySQL (multiple modal on website)

count number of partitions of a set with n elements into k subsets